Resolve wallet
Wallet P&L
Resolve Wallet
Instantly resolve any Polymarket wallet address, EOA, or username.
GET
Resolve wallet
Look up the full identity for any Polymarket user: preferred trading wallet, EOA (externally owned account), username, and wallet type. Accepts any of the three identifiers as input and returns all fields.
Supports both Polymarket’s original Safe proxy wallets and the newer deposit wallets. The response format is unchanged:
safe is kept for backward compatibility, but it means the preferred Polymarket trading wallet.
If the controlling EOA has a deployed deposit wallet,
safe returns that deposit wallet and type is "deposit_wallet" — even when you query the EOA, username, or older Safe wallet. If no deposit wallet is deployed, safe falls back to the existing Safe/proxy wallet.One of:
- Wallet address — Polymarket trading wallet: Safe proxy, deposit wallet, or proxy wallet (
0x..., 42 chars) - EOA address — externally owned account (
0x..., 42 chars) - Username — Polymarket display name (case-insensitive)
By wallet address (Safe, no deposit wallet)
Look up a Polymarket Safe proxy wallet to get the controlling EOA and username. If that EOA also has a deployed deposit wallet, the response returns the deposit wallet insafe instead.
By wallet address (deposit wallet)
Look up a Polymarket deposit wallet to get the controlling EOA. Deposit wallets are a newer wallet type introduced by Polymarket for new accounts.By EOA address
Look up an EOA to find its preferred Polymarket trading wallet and username. Deposit wallets are prioritized when deployed.By wallet address (magic-link proxy)
Resolve a Polymarket magic-link wallet — the wallet type used by accounts created with email or social login. The endpoint returns the controlling EOA, recovered automatically.By username
Look up a Polymarket username to find the preferred trading wallet. Case-insensitive.Response fields
Preferred Polymarket trading wallet address. The field name is kept for backward compatibility. If the controlling EOA has a deployed deposit wallet, this is the deposit wallet. Otherwise it is the existing Safe/proxy wallet.
Externally owned account that controls the trading wallet. This is the signer address. May be
null for some magic-link wallets where the EOA cannot be determined.Polymarket display name.
null if the user has no profile set.Wallet type for the address returned in
safe. One of:"safe"— Gnosis Safe proxy wallet (most existing Polymarket accounts)"deposit_wallet"— deposit wallet (newer Polymarket accounts)"proxy"— magic-link wallet (accounts created via email or social login)
Error responses
404 — Not foundCoverage
The resolver supports every Polymarket wallet type on Polygon, including Safe proxy wallets and the newer deposit wallets. Cached lookups are sub-millisecond. Uncached lookups resolve on-chain in real time, then prefer a deployed deposit wallet when one exists for the resolved EOA.Use cases
- Database enrichment — bulk-resolve trading wallets to EOAs for analytics pipelines
- Profile lookups — show usernames alongside wallet addresses in your UI
- Cross-referencing — match on-chain activity (EOA) to the preferred Polymarket trading wallet
- Whale tracking — identify the EOA behind a trading wallet to track activity across protocols
- Wallet type detection — use the
typefield to determine how a user’s account is set up
Authorizations
Path Parameters
Wallet address, EOA address, or Polymarket username (case-insensitive)
Response
Resolved wallet identity
Preferred Polymarket trading wallet. Field name is kept for backward compatibility; deposit wallet is returned when deployed, otherwise Safe/proxy.
Externally owned account (signer)
Polymarket display name, or null
Wallet type for the address returned in safe
Available options:
safe, deposit_wallet, proxy 
