GET
/categories
curl \
--request GET 'https://app.getfoundation.com/api/external/v1/categories' \
--header "X-API-Key: $API_KEY"
Response examples (200)
{
"pagination": {
"current": 42,
"previous": 42,
"next": 42,
"limit": 42,
"total_pages": 42,
"total_count": 42
},
"data": [
{
"id": "9aa62446-c3b0-42f5-8027-3648daed9d73",
"title": "Toys",
"parent_id": "string",
"handle": "toys"
}
]
}
Response examples (401)
{
"error": "string",
"details": "string"
}
Response examples (404)
{
"error": "string",
"details": "string"
}