---
title: "Get Wallet"
method: GET
path: "/polymarket/wallet"
---

# Get Wallet

`GET /polymarket/wallet`

Fetches wallet information by providing either an EOA (Externally Owned Account) address, a proxy wallet address, or a user handle. Returns the associated EOA, proxy, wallet type, handle, pseudonym, and profile image. Optionally returns trading metrics when `with_metrics=true`.

## Query parameters

- `eoa` string
- `proxy` string
- `handle` string
- `with_metrics` 'true' | 'false'
- `start_time` integer
- `end_time` integer

## Response `200`

Wallet information response

- object
  - `eoa` string, required — The EOA (Externally Owned Account) wallet address
  - `proxy` string, required — The proxy wallet address
  - `wallet_type` string, required — The type of wallet
  - `handle` string, nullable — User handle/username
  - `pseudonym` string, nullable — User pseudonym/display name
  - `image` string, nullable — User profile image URL
  - `wallet_metrics` object — Trading metrics for this wallet (only present when with_metrics=true)
    - `total_volume` number — Total trading volume in USD
    - `total_trades` number — Total number of trades (orders where this wallet was the maker)
    - `total_markets` number — Total number of unique markets traded in
    - `highest_volume_day` object — The day with the highest number of shares traded
      - `date` string, date, required — Date in YYYY-MM-DD format
      - `volume` number, required — Total shares traded on that day (normalized, divided by 1,000,000)
      - `trades` number, required — Number of trades executed on that day
    - `merges` number — Total number of token merges performed by this wallet
    - `splits` number — Total number of token splits performed by this wallet
    - `conversions` number — Total number of token conversions performed by this wallet
    - `redemptions` number — Total number of token redemptions performed by this wallet

## Other responses

- `400` — Bad Request - Invalid or missing parameters
- `404` — Not Found - Wallet not found

---

[API](https://skmtc.net/domeapi/apis/dome-api.md) · [All operations](https://skmtc.net/domeapi/apis/dome-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/domeapi/dome-api/versions/7c5d22727cce/schema)
