---
title: "Get wallet by ID"
method: GET
path: "/v1/wallets/{walletId}"
tags: ["Wallets"]
---

# Get wallet by ID

`GET /v1/wallets/{walletId}`

Returns wallet metadata, custody provider, public key, and by default the current SOL balance for a specific wallet ID. Set includeBalance=false for metadata-only reads that must not call Solana RPC or pricing services. This endpoint requires authenticated access.

## Path parameters

- `walletId` string, required — Provider wallet ID — the `walletId` field returned by GET /v1/wallets.

## Query parameters

- `includeBalance` 'true' | 'false' — Whether to resolve the current SOL balance. Defaults to true; false returns metadata without balance RPC or pricing calls.

## Headers

- `x-project-id` string — Selects the active project for this request. Required for session/dashboard callers. Ignored when authenticating with an API key, whose scope is fixed to the key's project.

## Response `200`

Wallet details

- object — Standard success response envelope.
  - `data` object, required — Wallet details by ID response payload.
    - `wallet` object, required — Wallet details with provider and optional SOL balance.
      - `id` string, required — Wallet record ID.
      - `custodyConfigId` string, required — Owning custody configuration ID.
      - `provider` 'local' | 'fireblocks' | 'privy' | 'coinbase_cdp' | 'para' | 'turnkey' | 'dfns' | 'ibm_haven' | 'anchorage', required — Wallet custody provider.
      - `isDefaultProvider` boolean — Whether this wallet belongs to the current default provider config.
      - `walletId` string, required — Provider wallet ID.
      - `publicKey` string, required — Base58-encoded Solana address.
      - `label` string, nullable, required — Optional wallet label.
      - `purpose` 'root' | 'mint_authority' | 'freeze_authority' | 'fee_payer' | 'transfer' | 'null', nullable, required — Optional wallet purpose.
      - `status` 'active' | 'inactive', required — Wallet status.
      - `createdAt` string, date-time, required — ISO 8601 timestamp.
      - `balance` object — Current SOL balance for the wallet public key. Omitted when includeBalance=false.
        - `token` 'SOL', required — Balance token symbol.
        - `mint` string, required — Native SOL mint address.
        - `amount` string, required — Raw lamports balance as a string.
        - `uiAmount` string, required — Human-readable SOL balance.
        - `decimals` 9, required — Token decimals for SOL.
  - `meta` object, required — Response metadata.
    - `requestId` string, required — Request identifier for tracing.
    - `timestamp` string, date-time, required — ISO 8601 timestamp.

## Other responses

- `401` — Error
- `403` — Error
- `404` — Error
- `500` — Error

---

[API](https://skmtc.dev/solana/apis/solana-developer-platform-api.md) · [All operations](https://skmtc.dev/solana/apis/solana-developer-platform-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/solana/solana-developer-platform-api/revisions/db8964b39622/schema)
