Skip to main content
GET
/
api
/
v1
/
reports
/
weekly
cURL
curl -sS \
  -H 'Authorization: Bearer $OXI_SK' \
  'https://api.0xinsider.com/api/v1/reports/weekly'
{
  "object": "list",
  "data": [],
  "has_more": false,
  "next_cursor": null,
  "total": 0,
  "meta": {
    "request_id": "req_example",
    "cached": false
  }
}
The weekly recap snapshot: top movers, sustained-flow markets, leaderboard shifts, pre-baked for the requested week. Same shape as the daily report, rolled up over seven days.
curl -H "Authorization: Bearer $OXINSIDER_API_KEY" \
  "https://api.0xinsider.com/api/v1/reports/weekly?week_of=2026-05-04"
week_of accepts any date inside the target week.

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

from
string

UTC source-range start in YYYY-MM-DD format; required with to.

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

UTC source-range end in YYYY-MM-DD format; required with from.

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

ISO week selector in YYYY-WW format; alternative to from/to.

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

Response

Weekly report snapshot

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