• Features
  • Pricing
Get Started

List CategoriesCreate CategoryGet CategoryUpdate CategoryDelete CategoryReorder Categories

GET /v1/categories

List categories with pagination.

GET /v1/categories returns a paginated list of categories.

Authentication

Send an organization API key in x-api-key or Authorization: Bearer <key>.

Query Parameters

NameTypeDefaultDescription
pageinteger1Page number to return.
limitinteger20Number of results per page. Maximum: 100.

Example

curl "https://api.blueputto.com/v1/categories?page=1&limit=20" \
  -H "x-api-key: YOUR_API_KEY"

Success Response

200 OK

{
  "data": [{}],
  "meta": {
    "page": 1,
    "limit": 20,
    "totalObjects": 1,
    "totalPages": 1,
    "hasNextPage": false,
    "hasPrevPage": false
  }
}

Error Responses

  • 400 Bad Request
  • 401 Unauthorized
  • 429 Too Many Requests

DELETE /v1/folders/{folderId}

Delete a folder.

GET /v1/categories

List categories with pagination.

On this page

AuthenticationQuery ParametersExampleSuccess ResponseError Responses