> ## Documentation Index
> Fetch the complete documentation index at: https://docs.polynode.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Wallet Overview

> One call: resolve any Polymarket address, report the wallet type + signer, perps registration, and (if registered) the live enriched portfolio.

Accepts a Polymarket profile (proxy) address **or** the underlying account address — [resolution is automatic](/perps/wallet-mapping). The response combines the mapping, registration status, and (for registered accounts) the live portfolio:

| Field         | Meaning                                                                            |
| ------------- | ---------------------------------------------------------------------------------- |
| `input`       | The address you passed, normalized                                                 |
| `pm_address`  | The Polymarket proxy address (null for plain-EOA users)                            |
| `signer`      | The perps account address                                                          |
| `wallet_type` | `eoa`, `deposit`, `safe`, or `proxy` — see [wallet mapping](/perps/wallet-mapping) |
| `registered`  | Whether this account has activated perps                                           |
| `positions`   | `[]` for accounts with nothing open                                                |

Unregistered wallets return `registered: false` with `equity: null`, `positions: []`, and `timestamp: null` — a 200, not an error, so bulk scans stay simple.


## OpenAPI

````yaml GET /v3/perps/wallets/{address}
openapi: 3.1.0
info:
  title: PolyNode API
  description: >-
    Real-time Polymarket data API with decoded mempool settlements, OHLCV
    candles, and full Polygon JSON-RPC proxy.
  contact:
    name: PolyNode
    url: https://polynode.dev
  license:
    name: ''
  version: 2.0.0
servers:
  - url: https://api.polynode.dev
    description: Production
security:
  - api_key: []
paths:
  /v3/perps/wallets/{address}:
    get:
      tags:
        - Perps
      summary: Wallet overview
      description: >-
        One call: resolve any Polymarket address, report the wallet type +
        signer, perps registration, and (if registered) the live enriched
        portfolio.
      operationId: perps_wallet
      parameters:
        - name: address
          in: path
          required: true
          description: >-
            Polymarket proxy wallet **or** signer EOA (`0x...`). Resolution is
            automatic.
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              example: {}
components:
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: x-api-key

````