For the complete documentation index, see llms.txt. This page is also available as Markdown.

Market Data

Bulk stack price stats

post

Returns current prices and percentage change stats for up to 1000 stacks. No authentication required.

Authorizations
X-API-KEYstringRequired

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.

Body
stack_idsinteger[] · max: 1000Required

Array of stack IDs (max 1000).

Responses
200

Array of stack stats in the same order as the input.

application/json
stack_idintegerOptional
foundbooleanOptional
pricenumber · nullableOptional

Current stack price. Present only when found=true.

post/api/bulk_stack_stats.php
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
    }
  }
]

Bulk token price stats

post

Returns current prices and percentage change stats for up to 1000 tokens by address. No authentication required.

Authorizations
X-API-KEYstringRequired

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.

Body
addressesstring[] · max: 1000Required

Array of token addresses (max 1000).

Responses
200

Array of token stats in the same order as the input.

application/json
addressstringOptional
foundbooleanOptional
pricenumber · nullableOptional

Current token price. Present only when found=true.

post/api/bulk_token_stats.php
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