---
title: "List Crypto Deposit Addresses"
method: GET
path: "/v1/customers/{customer_id}/all_deposit_instructions"
tags: ["Deposit Instructions"]
---

# List Crypto Deposit Addresses

`GET /v1/customers/{customer_id}/all_deposit_instructions`

List all  crypto deposit instructions for a customer with pagination.

**EVM Network:** The `EVM` network is a virtual network representing all EVM-compatible chains. A single EVM deposit address can receive deposits from any of the following chains: `Ethereum`, `Polygon`, `BNB Chain`, `Avalanche`, `Base`, and `Arbitrum`. In the response, default EVM wallets are displayed with `network: "EVM"`.

**Pagination:** Use `page` (1-based) and `size` (1-100, default 10) query parameters.

## Path parameters

- `customer_id` string, required

## Query parameters

- `page` integer
- `size` integer

## Response `200`

Successfully retrieved crypto deposit instructions list

- AllDepositInstructionsResponse — Paginated response for listing all deposit instructions.
  - `data` DepositInstructionResponse[], required
    - `deposit_instruction_id` string, required — Unique wallet identifier assigned by the custody provider
    - `network` string, required — Network name accepted by deposit-wallet creation surfaces. Unlike [`Network`], this type intentionally accepts the virtual `EVM` network group used by Web/OpenAPI deposit-address creation.
    - `address` string, required — On-chain deposit address.
    - `is_default` boolean, required — Whether this is the default deposit wallet for the network. Each customer has exactly one default wallet per network, created automatically during onboarding; additional wallets are non-default.
    - `nickname` string, required — Human-readable label. Empty string when not set.
    - `status` 'PENDING' | 'READY' | 'FAILED', required
    - `created_at` string, required
  - `total` integer, required — Total number of deposit instructions (before pagination).
  - `page` integer, required — Current page number (1-based).
  - `size` integer, required — Page size.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `404` — Customer vault not found
- `405` — Method Not Allowed
- `500` — Internal Server Error

---

[API](https://skmtc.net/1money/apis/1money-openapi.md) · [All operations](https://skmtc.net/1money/apis/1money-openapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/1money/1money-openapi/revisions/aa2718d28cb5/schema)
