GET
/
users
/
{address}
/
vaults
/
{vault_id}
/
historical
Historical User performance
curl --request GET \
  --url https://0d.finance/api/v1/users/{address}/vaults/{vault_id}/historical
{
  "metric": "all_time_pnl",
  "timeframe": "30d",
  "points": [
    {
      "t": "2025-09-24T00:00:00Z",
      "v": "987000"
    },
    {
      "t": "2025-09-25T00:00:00Z",
      "v": "990500"
    }
  ]
}

Path Parameters

address
string
required

User wallet address

Minimum length: 1
vault_id
string
required

Stable vault identifier

Minimum length: 1

Query Parameters

metric
enum<string>
required

User performance metric to return

Available options:
all_time_pnl,
unrealized_pnl,
realized_pnl
timeframe
enum<string>
default:all
Available options:
7d,
30d,
1y,
all
currency
enum<string>
default:USD
Available options:
USD,
USDC

Response

Historical User performance

The response is of type object.