Sign In Request Access
Integrations

Pull Aark data into any workflow.

REST API, webhooks, CSV export, and parquet bulk download. Aark data goes where your risk model lives.

API Reference Quickstart Guide
Integration Methods

Four ways to access the data.

REST API
JSON API

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.

Webhooks
Event Webhooks

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.

Export
CSV Export

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.

Bulk Export
Parquet Bulk Download

Full historical dataset as Apache Parquet for use in pandas / DuckDB / BigQuery. Ideal for backtesting or training risk models. Available on Desk plan.

Notifications
Slack Integration

Connect Aark alerts to a Slack channel. Funding rate alerts, cascade risk notifications, and oracle anomaly flags delivered as structured Slack messages. Desk plan.

Protocol Coverage
On-Chain Protocol Sources

Aark aggregates data from four decentralized perpetuals protocols via direct archive-node reads. No named partnership; data is read from public on-chain state.

Quick Start

One API call to the funding rate feed.

bash
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"
}
Full API Reference

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.