API Health check
Arkham Intel API (1.0.0)
Arkham Intelligence official API documentation
The Arkham API provides direct query access to Ultra, our proprietary AI-powered algorithmic address matching engine, enabling sophisticated users to customize data flows and integrate them into their existing systems.
Through the API, users can write custom queries to access a list of Arkham labels, as well as transaction logs and historical balance data for addresses and entities.
Institutions that onboard to the Arkham Exchange automatically qualify for access to this API.
The deprecated API documentation is available here in multiple languages; however, please note that it is no longer being updated.
All API requests MUST include a valid API-Key header. Requests without this header will be rejected with an unauthorized response.
To authenticate with Arkham's API, simply provide a valid API-Key in the header of your request. To apply for API access to our platform, visit: https://info.arkm.com/api-platform.
For the Basic API tier, most endpoints allow up to 20 requests per second with a small additional burst allowance for occasional spikes beyond that threshold.
Some resource-intensive endpoints have lower rate limits of 1 request per second:
- /transfers
- /swaps
- /counterparties/address/{address}
- /counterparties/entity/{entity}
- /token/top_flow/{id}
- /token/top_flow/{chain}/{address}
- /token/volume/{id}
- /token/volume/{chain}/{address}
- /transfers/histogram
Note: These heavy endpoints are computationally intensive and query large amounts of data, hence the stricter rate limits to ensure platform stability.
If you are consistently hitting the default rate limit we have set for our API you can apply for a rate limit increase here.
All data on our platform—including your private labels—is stored securely, using state-of-the-art encryption both at rest and in transit, along with strict access controls to ensure your information remains confidential. For further details on our security and privacy measures, please refer to our Privacy Policy.
Request
Returns an aggregated histogram of transfers over time (count and USD values) based on the same filter parameters used in /transfers.
⚠️ This endpoint requires API tier authentication (not just API key)
Rate Limit: This endpoint has a stricter rate limit of 1 request per second.
Additional parameter:
- granularity: "1h" or "1d" (if the range exceeds 30 days, "1h" is invalid).
Filter parameters (same as /transfers, minus pagination/sorting):
- base: Filter by specific entity or address. For example, "0x123abc" or "binance".
- chains: Specify a comma-separated list of chains (e.g. "ethereum,bsc").
- flow: Direction of the transfer. Valid values are "in", "out", "self", or "all".
- timeLast: Filter from a recent duration (e.g. "24h", "7d", "30d", etc.).
- timeGte/timeLte: Filter from/to a specific timestamp in milliseconds.
- valueGte/valueLte: Numeric filters on the raw token amount.
- usdGte/usdLte: Numeric filters on the historical USD value of the transfer.
- from: Comma-separated list of addresses, entities, or deposit services for the 'from' side.
- to: Comma-separated list of addresses, entities, or deposit services for the 'to' side.
- tokens: Comma-separated list of token addresses or token IDs. E.g. "ethereum", "usd-coin", or "0x...tokenAddress".
- counterparties: Comma-separated list of addresses or entities to treat strictly as counterparties (only base <-> counterparty transfers).
Granularity of histogram buckets. Valid values: "1h" or "1d". For time ranges over 30 days, only "1d" is valid.
Transfer direction: "in" for incoming, "out" for outgoing, "self" for self-transfers, or "all".
Comma-separated list of addresses, entities, or deposit services for the 'from' side. You can also use special syntax like "type:smart_money" or "deposit:binance".
Comma-separated list of token addresses or token IDs. E.g. "ethereum", "usd-coin", or "0x...tokenAddress".
- Mock serverhttps://docs.intel.arkm.com/_mock/openapi/transfers/histogram
- Production serverhttps://api.arkm.com/transfers/histogram
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.intel.arkm.com/_mock/openapi/transfers/histogram?base=string&granularity=1h&chains=string&flow=in&timeLast=string&timeGte=string&timeLte=string&valueGte=0&valueLte=0&usdGte=0&usdLte=0&from=string&to=string&tokens=string&counterparties=string' \
-H 'API-Key: YOUR_API_KEY_HERE'[ { "time": "2025-03-31T00:00:00Z", "count": 17, "usd": 983 } ]
Request
Retrieves a list of swaps (DEX trades) based on various query filters.
Rate Limit: This endpoint has a stricter rate limit of 1 request per second.
Filter parameters:
- base: Filter by specific entity or address involved in the swap.
- chains: Specify a comma-separated list of chains (e.g. "ethereum,bsc").
- flow: Direction of the swap relative to base address. Valid values are "in" (receiving token1), "out" (sending token0), or "all".
- from: Filter by sender addresses or entities.
- to: Filter by receiver addresses or entities.
- tokens: Comma-separated list of token addresses or token IDs that appear in either token0 or token1.
- timeLast: Filter swaps from a recent duration (e.g. "24h", "7d").
- timeGte/timeLte: Filter from/to a specific timestamp in milliseconds.
- usdGte/usdLte: Numeric filters on the historical USD value of the swap.
- sortKey: Field by which to sort the results. Options include "time" or "usd".
- sortDir: Sorting direction. Use "asc" for ascending or "desc" for descending.
- limit: Maximum number of results to return (default is 50).
- offset: Pagination offset (default is 0).
- Mock serverhttps://docs.intel.arkm.com/_mock/openapi/swaps
- Production serverhttps://api.arkm.com/swaps
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.intel.arkm.com/_mock/openapi/swaps?base=string&chains=string&flow=in&from=string&to=string&tokens=string&timeLast=string&timeGte=string&timeLte=string&usdGte=0&usdLte=0&sortKey=time&sortDir=asc&limit=50&offset=0' \
-H 'API-Key: YOUR_API_KEY_HERE'{ "swaps": [ { … } ], "count": 10 }
Token exchange movements
Provides an endpoint for analyzing token activity across centralized and decentralized exchanges. This includes ranking tokens by volume, inflows, outflows, netflows, and other metrics over customizable time intervals, with support for filtering by chain, market cap, and specific tokens.
Intelligence
Provides AI-powered intelligence endpoints for analyzing blockchain addresses, entities, contracts, and tokens. These endpoints return enriched insights such as tagging data, entity associations, predicted addresses, contract metadata, and token information across multiple chains.