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

# Get Wallet

> Retrieve detailed information about a specific cryptocurrency wallet

## Path Parameters

<ParamField path="account_id" type="string" required>
  The account's external ID (starts with `acc_`)
</ParamField>

<ParamField path="wallet_id" type="string" required>
  The wallet's external ID (starts with `wal_`)
</ParamField>

## Response

<ResponseField name="id" type="string">
  Wallet identifier (starts with `wal_`)
</ResponseField>

<ResponseField name="object" type="string">
  Always returns `"wallet"`
</ResponseField>

<ResponseField name="account_id" type="string">
  Parent account ID
</ResponseField>

<ResponseField name="currency" type="string">
  Cryptocurrency code (e.g., USDC, USDT)
</ResponseField>

<ResponseField name="network" type="string">
  Blockchain network (e.g., `ethereum`, `solana`)
</ResponseField>

<ResponseField name="address" type="string">
  On-chain wallet address
</ResponseField>

<ResponseField name="label" type="string">
  User-friendly label
</ResponseField>

<ResponseField name="status" type="string">
  Wallet status: `active`, `suspended`, or `inactive`
</ResponseField>

<ResponseField name="created" type="string">
  ISO 8601 timestamp when created
</ResponseField>

<ResponseField name="updated" type="string">
  ISO 8601 timestamp when last updated
</ResponseField>

## Response Example

```json theme={null}
{
  "id": "wal_1234567890abcdef",
  "object": "wallet",
  "account_id": "acc_1234567890abcdef",
  "currency": "USDC",
  "network": "ethereum",
  "address": "0x1234567890abcdef1234567890abcdef12345678",
  "label": "Treasury USDC Wallet",
  "status": "active",
  "created": "2024-01-15T10:00:00Z",
  "updated": "2024-01-15T10:00:00Z"
}
```
