• Features
  • Pricing
Get Started

OverviewList CollectionsCreate CollectionGet CollectionUpdate CollectionDelete Collection

Collections

GET /v1/collections

List collections with pagination and free-text search.

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

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.
qstring""Free-text search term.

Example

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

Success Response

200 OK

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

Error Responses

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

Collections

Reference for listing, creating, retrieving, updating, and deleting collections.

POST /v1/collections

Create a new collection by sending a JSON request body.

On this page

AuthenticationQuery ParametersExampleSuccess ResponseError Responses