Market Data
API key with the ix_ prefix. You can generate an API Key by navigating to Settings -> API Key in the web app. Pass it in the X-API-KEY header on every request.
Array of stack IDs (max 1000).
Array of stack stats in the same order as the input.
Current stack price. Present only when found=true.
Invalid input (missing or empty stack_ids, exceeds 1000).
Internal server error.
POST /api/bulk_stack_stats.php HTTP/1.1
Host: api.indexify.finance
X-API-KEY: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 17
{
"stack_ids": [
1
]
}[
{
"stack_id": 1,
"found": true,
"price": 1,
"stats": {
"change4H": 1,
"change1D": 1,
"change1W": 1,
"change1M": 1,
"changeAll": 1
}
}
]API key with the ix_ prefix. You can generate an API Key by navigating to Settings -> API Key in the web app. Pass it in the X-API-KEY header on every request.
Array of token addresses (max 1000).
Array of token stats in the same order as the input.
Current token price. Present only when found=true.
Invalid input (missing or empty addresses, exceeds 1000).
Internal server error.
POST /api/bulk_token_stats.php HTTP/1.1
Host: api.indexify.finance
X-API-KEY: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 22
{
"addresses": [
"text"
]
}[
{
"address": "text",
"found": true,
"price": 1,
"stats": {
"change4H": 1,
"change1D": 1,
"change1W": 1,
"change1M": 1,
"changeAll": 1
}
}
]Last updated

