Skip to main content
GET
/
api
/
v1
/
reports
/
daily
cURL
curl -sS \
  -H 'Authorization: Bearer $OXI_SK' \
  'https://api.0xinsider.com/api/v1/reports/daily'
{
  "object": "list",
  "data": [],
  "has_more": false,
  "next_cursor": null,
  "total": 0,
  "meta": {
    "request_id": "req_example",
    "cached": false
  }
}
The daily recap for a given date: top traders, biggest whale trades, smart-money rotations, pre-baked. Power morning-email digests, Slack briefs, or “what happened yesterday?” panels without rerunning every query.
curl -H "Authorization: Bearer $OXINSIDER_API_KEY" \
  "https://api.0xinsider.com/api/v1/reports/daily?date=2026-05-08"
For longer windows, use Weekly or Monthly. Snapshots carry trust metadata, so partial or unavailable sections are explicit.

Authorizations

Authorization
string
header
required

API key: Authorization: Bearer oxi_sk_live_... for live data (requires an active Insider subscription), or oxi_sk_test_... for sandbox/test mode (free account, deterministic fixture data, no live rows). Both key classes use the same paths; the prefix selects live vs sandbox.

Query Parameters

date
string
required

UTC report date in YYYY-MM-DD format.

Pattern: ^\d{4}-\d{2}-\d{2}$

Response

Daily report snapshot

object
string
required
Allowed value: "report_snapshot"
data
object
required
meta
object
required