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

# Get Wallet

> GET /v1/wallets/:walletId — Get a specific wallet by ID

<Note>
  **Endpoint:** `GET https://api.rebelfi.io/v1/wallets/:walletId`
</Note>

Retrieve a specific wallet by its ID.

### Path Parameters

| Parameter  | Type     | Required | Description |
| ---------- | -------- | -------- | ----------- |
| `walletId` | `number` | Yes      | Wallet ID   |

### Example Request

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET "https://api.rebelfi.io/v1/wallets/42" \
    -H "x-api-key: your_api_key"
  ```

  ```typescript SDK theme={null}
  const wallet = await client.wallets.get(42);
  ```
</CodeGroup>

### Example Response

```json theme={null}
{
  "walletId": 42,
  "walletAddress": "So11...abc",
  "blockchain": "solana",
  "userId": "user-123",
  "orgMetadata": { "plan": "premium" },
  "createdAt": "2024-01-15T10:30:00.000Z"
}
```

### Errors

| Code               | Description                        |
| ------------------ | ---------------------------------- |
| `WALLET_NOT_FOUND` | Wallet with given ID doesn't exist |
