List all boards

Get all the boards

GET
/boards
AuthorizationBearer <token>

JWT Bearer token authentication

In: header

Query Parameters

created?string

Borders are sorted by date creation.

Default"desc"
limit?string
Default"10"
page?string
Default"1"

Header Parameters

Content-Type?string
Default"application/json"

Get all the boards

Empty Object

Response Body

curl -X GET "http://localhost:8000/api/v1/boards?created=desc&limit=10&page=1" \  -H "Content-Type: application/json" \  -H "Content-Type: application/json" \  -d '{}'
{
  "boards": [
    {
      "boardId": "11c14790-b4d3-4689-942c-55548cfdd8a6",
      "name": "🔗 Integrations",
      "color": "4A90E2",
      "url": "integrations-dsgksdIUYO",
      "createdAt": "2025-09-23T13:28:01.611Z",
      "post_count": "42"
    }
  ]
}
Empty
{
  "message": "Something went wrong!",
  "code": "SERVER_ERROR"
}