Skip to main content
GET
/
markets
/
categories
/
count
Get active market count per category
curl --request GET \
  --url https://api.limitless.exchange/markets/categories/count
{
  "category": {
    "1": 10,
    "2": 5,
    "3": 8
  },
  "totalCount": 23
}

Response

Object containing category counts and total count

category
object
required

Number of active markets per category

Example:
{ "1": 10, "2": 5, "3": 8 }
totalCount
number
required

Total number of active markets

Example:

23