API reference
Public API/Baskets

List baskets

GET/baskets

All system baskets with current price and 24h change.

120 requests / minute per key (read tier). Returns the {success, message, data} + meta envelope.

Authorizations

Authorizationstringheaderrequired

Bearer token - an ito_* key (from Settings) holding the baskets:read scope.

Query parameters

pageint

Page number (default 1)

per_pageint

Items per page (default 20, max 100)

Request
curl "https://itomarkets.com/api/v1/baskets" \  -H "Authorization: Bearer $ITO_API_KEY"
ResponseJSON
{  "success": true,  "message": "Success",  "data": [    {      "basket_id": "ai-frontier",      "name": "AI Frontier",      "stats": {        "current_price": 42.5,        "change_1d": 1.8,        "underlyers_count": 12      }    }  ],  "meta": {    "page": 1,    "per_page": 20,    "total": 38,    "pages": 2  }}