- 1. Overview
- 2. Authentication
- 2.1 Introduction
- 2.2 Creating the Bearer Token
- 3. Requests & Responses
- 4. Getting Started
- 4.1 Pagination
- 4.2 Rate Limiting
- 4.3 Idempotency
- 4.4 External ID and Metadata
- 5. API
- Health
- Accounts
- Transfer
- Transactions
- Conversions
- Payouts
- Card Account
- Cards
- Digital Custody
- Countries
- Positions
- Occupations
- 6. Screenshot Illustration(api+image)
5.29 Get Deposit Addresses
GET
https://access.sandbox.orzcash.com/v1/digital-custody/deposit-addresses
Request
Query Params
asset
string
required
Example:
USDC
network
string
required
Example:
ETH
accountId
array[string]
required
Example:
[""]
pageSize
number
required
pageToken
string
optional
Example:
aWVHZWV5OVgK
Body Params application/json
asset
string
required
network
string
required
accountId
string
required
pageSize
string
required
pageToken
string
required
Example
{
"asset": "string",
"network": "string",
"accountId": "string",
"pageSize": "string",
"pageToken": "string"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://access.sandbox.orzcash.com/v1/digital-custody/deposit-addresses?asset=USDC&network=ETH&accountId=&pageSize&pageToken=aWVHZWV5OVgK' \
--header 'Content-Type: application/json' \
--data-raw '{
"asset": "string",
"network": "string",
"accountId": "string",
"pageSize": "string",
"pageToken": "string"
}'
Responses
🟢200success
application/json
Body
nextPageToken
string
required
addresses
string
required
Example
{
"nextPageToken": "string",
"addresses": [
{
"id": "c936a1ff-1d3c-45e1-af1f-ed497685a305",
"address": "0x000000000dfde7deaf24138722987c9b6991e2d4",
"asset": "USDC",
"chain": "ETH",
"addressTag": "string",
"created": "2022-12-21T07:21:09.879Z",
"xid": "string",
"xmetadata": {}
}
]
}
Modified at 2023-01-03 11:02:46