Skip to main content
GET
/
polymarket
/
wallet
/
pnl
/
{wallet_address}
Get Wallet PnL
curl --request GET \
  --url https://api.domeapi.io/v1/polymarket/wallet/pnl/{wallet_address}
{
  "granularity": "day",
  "start_time": 1726857600,
  "end_time": 1758316829,
  "wallet_address": "0x7c3db723f1d4d8cb9c550095203b686cb11e5c6b",
  "pnl_over_time": [
    {
      "timestamp": 1726857600,
      "pnl_to_date": 2001
    }
  ]
}

Path Parameters

wallet_address
string
required
Example:

"0x1234567890abcdef1234567890abcdef12345678"

Query Parameters

granularity
enum<string>
required
Available options:
day,
week,
month,
year,
all
Example:

"day"

start_time
integer

Defaults to first day of first trade if not provided.

Example:

1726857600

end_time
integer

Defaults to the current date if not provided.

Example:

1758316829

Response

PnL response

granularity
string
Example:

"day"

start_time
integer
Example:

1726857600

end_time
integer
Example:

1758316829

wallet_address
string
Example:

"0x7c3db723f1d4d8cb9c550095203b686cb11e5c6b"

pnl_over_time
object[]