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

# Get Prediction Wallet Status

> Check if a wallet has a deployed Safe trading account and get its USDC.e + pUSD balances.

<Warning>**Alpha** — This endpoint is part of the Prediction Markets API, currently in early access. May change without notice.</Warning>

### Query Parameters

<ParamField query="wallet" type="string" required>
  The wallet address (EOA) to check.
</ParamField>

### Response

<ResponseField name="data" type="object">
  Account status information.

  <Expandable title="Status">
    <ResponseField name="deployed" type="boolean">Whether the Safe trading account has been deployed.</ResponseField>
    <ResponseField name="safeAddress" type="string">The Safe trading account address (derived from the EOA).</ResponseField>
    <ResponseField name="usdceBalance" type="number">USDC.e balance held by the Safe — the deposit/withdraw rail.</ResponseField>
    <ResponseField name="pusdBalance" type="number">pUSD balance held by the Safe — the only collateral the CLOB will accept post-2026-04-29 migration.</ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="hostname" type="string">Server node identifier.</ResponseField>
<ResponseField name="took" type="number">Request processing time in milliseconds.</ResponseField>

### Usage Example

```bash theme={null}
curl -X GET "https://api.mobula.io/api/2/wallet/pm/status?wallet=0xYourWalletAddress"
```

### Example Response

```json theme={null}
{
  "data": {
    "deployed": true,
    "safeAddress": "0x1234567890abcdef1234567890abcdef12345678",
    "usdceBalance": 50.0,
    "pusdBalance": 200.5
  },
  "hostname": "node-xyz",
  "took": 42
}
```


## OpenAPI

````yaml GET /2/wallet/pm/status
openapi: 3.0.0
info:
  version: 1.0.0
  title: Mobula Prediction Markets API
  description: >-
    Documentation of the Mobula Prediction Markets API.


    The PM API is currently served from a dedicated host:
    `pm-api-prod-eu.mobula.io`.

    All endpoints below require an API key (same key as the main Mobula API).


    Parameter names below are the **canonical names enforced by the API

    controllers** (Zod-validated). Following the wrong name (e.g. `?market=...`

    instead of `?platform=...&marketId=...`) returns `HTTP 400`.
servers:
  - url: https://pm-api-prod-eu.mobula.io/api/
    description: PM Production API (requires API key)
security: []
tags:
  - name: V2 - PM Market
    description: Prediction market data — details, prices, order book, trades, OHLCV
  - name: V2 - PM Discovery
    description: Search, trending, categories, live markets
  - name: V2 - PM Wallet
    description: Wallet prediction-market positions, balances, PnL, activity, status
paths:
  /2/wallet/pm/status:
    get:
      tags:
        - V2 - PM Wallet
      summary: Get Prediction Wallet Status
      description: >
        Check whether a wallet has a deployed Safe trading account, and return
        the Safe's

        USDC.e and pUSD balances.
      parameters:
        - $ref: '#/components/parameters/Wallet'
      responses:
        '200':
          description: Wallet status
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      deployed:
                        type: boolean
                      safeAddress:
                        type: string
                      usdceBalance:
                        type: number
                      pusdBalance:
                        type: number
components:
  parameters:
    Wallet:
      name: wallet
      in: query
      required: true
      description: >-
        User EOA wallet address. The API resolves the matching Safe trading
        account internally.
      schema:
        type: string
        example: '0x0000000000000000000000000000000000000001'

````