Skip to content

Categories

Categories help organize media by brand, topic, or type.

List categories

GET /api/v1/categories

Returns all categories in your workspace.

Example

bash
curl -H "Authorization: Bearer findclix_..." \
  "https://findclix.com/api/v1/categories"

Response

json
{
  "success": true,
  "data": [
    {
      "id": "xyz-789",
      "name": "Nike",
      "created_at": "2026-01-01T00:00:00.000Z",
      "media_count": 5,
      "logo_url": null
    }
  ]
}

Interactive reference

List categories

GET
/categories

Playground

Authorization

Samples


Get category

GET /api/v1/categories/:id

Returns a single category by ID.

Example

bash
curl -H "Authorization: Bearer findclix_..." \
  "https://findclix.com/api/v1/categories/xyz-789"

Response

json
{
  "success": true,
  "data": {
    "id": "xyz-789",
    "name": "Nike",
    "created_at": "2026-01-01T00:00:00.000Z",
      "media_count": 5,
      "logo_url": null
  }
}

Interactive reference

Get category

GET
/categories/{id}

Playground

Authorization
Variables
Key
Value

Samples