Cliquify Developer
  1. Brand Kit
  • Overview
    • Getting started
  • Authentication
    • Overview
    • Token lifecycle
    • OAuth scopes
    • Get an access token
      POST
    • Introspect a token
      POST
    • Revoke a token
      POST
  • API Reference
    • Overview
    • Tags
      • List tags
    • Templates
      • List templates
    • Assets
      • List assets
    • Folders
      • List folder
    • Brand Kit
      • List brand kit
        GET
  1. Brand Kit

List brand kit

Developing
GET
https://oauth.thecliquify.co/api/brand-kits

Request

Query Params

Header Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://oauth.thecliquify.co/api/brand-kits?search=kit&per_page=25&page=1' \
--header 'Authorization: Bearer YOUR_ACCESS_TOKEN'
Response Response Example
{
  "success": true,
  "data": {
    "current_page": 1,
    "data": [
      {
        "id": "5d41402abc4b2a76b9719d911017c592",
        "name": "Marketing Kit"
      },
      {
        "id": "7d793037a0760186574b0282f2f435e7",
        "name": "Social Media Kit"
      }
    ],
    "first_page_url": "https://your-domain.com/api/brand-kits?page=1",
    "from": 1,
    "last_page": 2,
    "last_page_url": "https://your-domain.com/api/brand-kits?page=2",
    "next_page_url": "https://your-domain.com/api/brand-kits?page=2",
    "path": "https://your-domain.com/api/brand-kits",
    "per_page": 25,
    "prev_page_url": null,
    "to": 2,
    "total": 30
  }
}
Modified at 2026-04-09 12:19:32
Previous
List folder
Built with