Skip to main content
GET
/
api
/
v1
/
trader
/
{address}
cURL
curl -sS \
  -H 'Authorization: Bearer $OXI_SK' \
  'https://api.0xinsider.com/api/v1/trader/{address}'
{
  "object": "traders",
  "data": {},
  "meta": {
    "request_id": "req_example",
    "cached": false
  }
}
Full profile for a single wallet: grade, realized P&L, win rate, strategy classification, category strengths, and current open positions. The path takes a raw wallet address (strip the trd_ prefix) or a known trader username. Opt into heavy fields with repeated expand query params (expand=strategy&expand=categories). The legacy expand[] form still works.
curl -H "Authorization: Bearer $OXINSIDER_API_KEY" \
  "https://api.0xinsider.com/api/v1/trader/0x863134d00841b2e200492805a01e1e2f5defaa53?expand=strategy&expand=categories"
Use this when you have an address (from the leaderboard or a whale trade) and want the full story. For multiple traders in one call, see Batch Get Traders.

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.

Headers

If-None-Match
string

Conditional GET validator from a previous ETag. Matching values return 304 Not Modified with an empty body.

Path Parameters

address
string
required

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

Query Parameters

expand[]
enum<string>[]

Backward-compatible alias for expand. Repeatable: strategy, categories, quant_metrics, trust.

Available options:
strategy,
categories,
quant_metrics,
trust
expand
enum<string>[]

Include heavy fields and trust metadata. Repeatable: strategy, categories, quant_metrics, trust.

Available options:
strategy,
categories,
quant_metrics,
trust

Response

Trader profile

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