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": [
      {
        "category": "<string>",
        "grade": "<string>",
        "rank": 123,
        "markets": 123,
        "pnl": 123
      }
    ],
    "quant_metrics": {
      "sharpe_ratio": 123,
      "sortino_ratio": 123,
      "max_drawdown": 123,
      "profit_factor": 123,
      "kelly_fraction": 123,
      "sharpe_percentile": 123
    },
    "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
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.0xinsider.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key: Authorization: Bearer oxi_sk_live_...

Path Parameters

address
string
required

Ethereum wallet address (0x...) or known trader username

Query Parameters

expand[]
enum<string>[]

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

Available options:
strategy,
categories,
quant_metrics
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