Cliquify Developer
  1. other
  • Overview
    • Getting started
  • other
    • Integrations
    • Appendix
      • OAuth Scopes
      • Error Responses
    • Templates
      • Get Tags
      • Get Templates
    • User
      • Get Authenticated User
    • Authentication
      • Overview
      • Generate Access Token
      • Introspect Access Token
      • Revoke Token
    • Get Brand Assets
      GET
  • Authentication
    • Overview
    • Token lifecycle
    • OAuth scopes
    • Get an access token
      POST
    • Introspect a token
      POST
    • Revoke a token
      POST
  1. other

Get Brand Assets

Developing
GET
{{baseUrl}}api/assets
Retrieve all brand kit assets belonging to the authenticated user’s enterprise. Returns images, videos, and related metadata.

Request

Header Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET '{{baseUrl}}api/assets' \
--header 'Authorization: Bearer YOUR_ACCESS_TOKEN'
Response Response Example
{
  "success": true,
  "data": [
    {
      "id": 441,
      "width": 2880,
      "height": 1800,
      "file_type": "image",
      "file_ext": "jpg",
      "duration": null,
      "description": null,
      "org_image": "https://cdn.thecliquify.co/e/1/images/bki0sbtr-model-y.jpg",
      "image": "https://ik.imagekit.io/cliqdev/e/1/images/bki0sbtr-model-y.jpg",
      "user_labels": "example",
      "ai_labels": "example",
      "ai_generate_caption": "example",
      "video_url": null,
      "size": 410531
    }
  ]
}
Modified at 2026-04-09 06:59:03
Previous
Revoke Token
Next
Overview
Built with