Skip to main content
GET /api/v1/wallet Returns the current state of your Parsec-managed wallet, including the session signer status and linked exchanges.

Parameters

No parameters required.

Response

wallet
object | null
Primary EOA wallet (backward-compatible). null if no wallet exists.
wallets
object[]
All wallets (EOA + Safe) associated with this account. Each element has the same shape as the wallet field above.
session_signer
object | null
Active session signer for order signing. null if no signer exists.
linked_exchanges
object[]
Exchanges with stored credentials.
curl "https://api.parsecapi.com/api/v1/wallet" \
  -H "X-API-Key: YOUR_API_KEY"
{
  "wallet": {
    "eoa_address": "0x1234567890abcdef1234567890abcdef12345678",
    "privy_wallet_id": "wallet_abc123",
    "wallet_type": "eoa",
    "chain_id": 137,
    "created_at": "2026-01-15T12:00:00Z"
  },
  "wallets": [
    {
      "eoa_address": "0x1234567890abcdef1234567890abcdef12345678",
      "privy_wallet_id": "wallet_abc123",
      "wallet_type": "eoa",
      "chain_id": 137,
      "created_at": "2026-01-15T12:00:00Z"
    }
  ],
  "session_signer": {
    "active": true,
    "expires_at": "2026-02-15T12:00:00Z",
    "signer_id": "signer_xyz"
  },
  "linked_exchanges": [
    {
      "exchange": "polymarket",
      "has_credentials": true
    }
  ]
}