API reference
Get basket
GET/baskets/{basket_id}
Details and composition stats for one basket.
120 requests / minute per key (read tier). Returns the {success, message, data} envelope.
Authorizations
Authorizationstringheaderrequired
Bearer token - an ito_* key (from Settings) holding the baskets:read scope.
Path parameters
basket_idstringrequired
Basket identifier, e.g. ai-frontier
Request
curl "https://itomarkets.com/api/v1/baskets/ai-frontier" \ -H "Authorization: Bearer $ITO_API_KEY"ResponseJSON
{ "success": true, "message": "Success", "data": { "basket_id": "ai-frontier", "name": "AI Frontier", "stats": { "current_price": 42.5, "underlyers_count": 12 } }}