Pull Aark data into any workflow.
REST API, webhooks, CSV export, and parquet bulk download. Aark data goes where your risk model lives.
Four ways to access the data.
Authenticated REST API returning JSON. Endpoints for /funding-rates, /liquidation-map, and /mark-price. Rate limits by plan: 5/min Explorer, 60/min Trader, unlimited Desk.
HTTP POST to your endpoint when a threshold is crossed. Configure triggers: funding rate crosses ±0.01%, liquidation cascade risk score above threshold, or oracle lag spike. Trader plan and above.
Download any data range as CSV from the dashboard. Select pair, time range, and data columns. Available weekly on Explorer, on-demand on Trader and Desk.
Full historical dataset as Apache Parquet for use in pandas / DuckDB / BigQuery. Ideal for backtesting or training risk models. Available on Desk plan.
Connect Aark alerts to a Slack channel. Funding rate alerts, cascade risk notifications, and oracle anomaly flags delivered as structured Slack messages. Desk plan.
Aark aggregates data from four decentralized perpetuals protocols via direct archive-node reads. No named partnership; data is read from public on-chain state.
One API call to the funding rate feed.
curl -X GET https://aarkdigital.org/api/v1/funding-rates \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"pair": "BTC-PERP", "window": "8h"}'
# Response:
{
"pair": "BTC-PERP",
"funding_rate": 0.000142,
"interval": "8h",
"annualized": 0.0619,
"signal": "LONG_BIAS",
"oracle_lag_ms": 118,
"timestamp": "2026-05-29T14:32:01Z"
}
First API call in under five minutes.
Request access, receive your API key by email, and pull a live funding rate response from /api/v1/funding-rates. The quickstart guide covers authentication, pagination, and webhook setup.