---
title: "List Deposit Addresses"
method: POST
path: "/v1/wallet/deposit_address/list"
tags: ["Wallet"]
---

# List Deposit Addresses

`POST /v1/wallet/deposit_address/list`

Returns the list of deposit addresses for the account. For supported assets and deposit steps, see [Funding your account](/funding-your-account).

## Request body

- DepositAddressListRequest
  - `coins` string[], required — List of token symbols to retrieve deposit addresses for
  - `network` 'avalanche' | 'ethereum' | 'solana' — Filter by network; omit to list all networks
  - `depositDestination` AccountWalletKey
    - `id` string, required — The account ID
    - `wallet` 'main' | 'margin', required — The wallet type

## Response `200`

List of deposit addresses

- object
  - `success` boolean, required — Whether the request was successful
  - `error` string — Error message, present only on failure
  - `error_code` string — Semantic error code. See each endpoint's error responses for the specific codes it can return.
  - `deprecated` string — Deprecation notice, if applicable
  - `result` DepositAddress[]
    - `coin` string, required — Token symbol
    - `network` 'avalanche' | 'ethereum' | 'solana', required — Blockchain network
    - `address` string, required — Deposit address
    - `depositDestination` AccountWalletKey, required
      - `id` string, required — The account ID
      - `wallet` 'main' | 'margin', required — The wallet type

## Other responses

- `400` — Bad request. The request was malformed or failed validation.
- `401` — Authentication required. Provide a valid JWT or API key.
- `403` — Access denied. The authenticated account does not have permission.
- `429` — Rate limit exceeded. Slow down request frequency.
- `500` — Internal server error.

---

[API](https://skmtc.net/ondoperps/apis/ondo-perps-rest-api.md) · [All operations](https://skmtc.net/ondoperps/apis/ondo-perps-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ondoperps/ondo-perps-rest-api/versions/39df6b2fa672/schema)
