List categories
curl --request GET \
--url https://api.agg.market/categories \
--header 'x-app-id: <api-key>'{
"data": [
{
"id": "<string>",
"name": "<string>",
"displayName": "<string>",
"parentId": "<string>",
"eventCount": 123,
"volume24hr": 123,
"volume": 123
}
],
"nextCursor": "<string>",
"hasMore": true
}Discovery
List categories
Returns categories filtered by parentId. Omit parentId for top-level categories.
GET
/
categories
List categories
curl --request GET \
--url https://api.agg.market/categories \
--header 'x-app-id: <api-key>'{
"data": [
{
"id": "<string>",
"name": "<string>",
"displayName": "<string>",
"parentId": "<string>",
"eventCount": 123,
"volume24hr": 123,
"volume": 123
}
],
"nextCursor": "<string>",
"hasMore": true
}Authorizations
Your application ID. Required for all app-tier and user-tier routes.
⌘I