Skip to main content
GET
/
api
/
v1
/
trader
/
{address}
Get trader intelligence
curl --request GET \
  --url https://api.0xinsider.com/api/v1/trader/{address} \
  --header 'Authorization: Bearer <token>'
{
  "object": "<string>",
  "data": {
    "id": "<string>",
    "address": "<string>",
    "pnl": {
      "total": 123,
      "realized": 123,
      "unrealized": 123,
      "last_7d": 123,
      "last_30d": 123
    },
    "stats": {
      "markets_traded": 123,
      "win_rate": 123,
      "daily_win_rate": 123,
      "total_volume": 123
    },
    "username": "<string>",
    "grade": "S",
    "score": 123,
    "rank": 123,
    "strategy": {
      "strategy_type": "<string>",
      "description": "<string>",
      "confidence": 123
    },
    "category_strengths": "<unknown>",
    "quant_metrics": "<unknown>",
    "last_active": "2023-11-07T05:31:56Z",
    "synced_at": "2023-11-07T05:31:56Z",
    "sync_status": "<string>"
  },
  "meta": {
    "request_id": "<string>",
    "cached": true,
    "cache_age_s": 123
  }
}

Authorizations

Authorization
string
header
required

API key: Authorization: Bearer oxi_sk_test_...

Path Parameters

address
string
required

Ethereum wallet address (0x...)

Query Parameters

expand[]
enum<string>

Include heavy fields. Repeatable: strategy, categories, quant_metrics.

Available options:
strategy,
categories,
quant_metrics

Response

Trader profile

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