Categories
Categories help organize media by brand, topic, or type.
List categories
GET /api/v1/categoriesReturns 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
Get category
GET /api/v1/categories/:idReturns 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
}
}