Skip to main content
GET
/
api
/
v1
/
trader
/
{address}
/
export
cURL
curl -sS \
  -H 'Authorization: Bearer $OXI_SK' \
  'https://api.0xinsider.com/api/v1/trader/{address}/export'
{
  "object": "traders",
  "data": {},
  "meta": {
    "request_id": "req_example",
    "cached": false
  }
}
One-shot export of everything 0xinsider knows about a trader: profile, positions, recent trades, category breakdown. Built for offline analysis or feeding into an LLM prompt.
curl -H "Authorization: Bearer $OXINSIDER_API_KEY" \
  "https://api.0xinsider.com/api/v1/trader/0x863134d00841b2e200492805a01e1e2f5defaa53/export"
Each section carries trust metadata, so you can tell which fields are live provider-backed and which are cached or partial.

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.

Path Parameters

address
string
required

Trader wallet address (0x...), known trader username-style lookup, or trd_-prefixed trader ID emitted by this API.

Response

Trader export snapshot metadata

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