v1

latestOpenAPI 3.0.32026-08-067332206.6 KB
collections

List collections

List the collections accessible to the user.

Unauthorized requests return an empty list.

You can use the returned slug parameter (in conjunction with the slug of the parent Brandfolder) to form a link to the desired Collection like so:

https://brandfolder.com/{brandfolder_slug}/{collection_slug}
get/collections

Headers

Accept'application/json' required

Response

A list of collections accessible to the user.

Example response

{
  "data": [
    {
      "id": "oqgkkd-fr5iv4-hh142d",
      "attributes": {
        "name": "My collection",
        "tagline": "My collection tag line",
        "slug": "my-collection"
      }
    }
  ],
  "meta": {
    "current_page": 1,
    "total_pages": 1,
    "total_count": 1
  }
}