List Deposit Addresses
GET/v1/wallet/deposit-addresses
List your deposit addresses of available coins.
Requires authentication.
Request
Query Parameters
asset string
Asset ID.
network string
Network ID.
cursor string
A reference to the server indicating the next set of objects to be returned. It is sent back in every response were the number of objects returned is bigger than the limit.
limit integer
Possible values: non-empty
and <= 200 characters
, >= 1
and <= 200
Default value: 20
Max number of objects to be returned as result of request.
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
- Address list
Schema
- Array [
- ]
result object[]
id string
Deposit address unique ID.
address string
Your asset's deposit address.
asset string
Asset ID.
network string
Network ID.
destination_tag string
Specific complementary data required in some Networks.
memo string
Specific complementary data required in some Networks.
created_at created_at (integer)
Timestamp of when this object was created.
{
"result": [
{
"id": "412578523698005",
"address": "0x83a127952d266A6eA306c40Ac62A4a70668FE3BE",
"asset": "USDT",
"network": "ETHEREUM",
"destination_tag": "string",
"memo": "A78910",
"created_at": 1675810392753862
}
]
}
{
"result": [
{
"id": "412578523698005",
"address": "0x83a127952d266A6eA306c40Ac62A4a70668FE3BE",
"asset": "USDT",
"network": "ETHEREUM",
"destination_tag": "",
"memo": "A78910",
"created_at": 1675804212789654
},
{
"id": "458631258977260",
"address": "0x95aDSdsadsadsadsadsadsadsadsdasdsa",
"asset": "USDT",
"network": "SOLANA",
"destination_tag": "",
"memo": "B65410",
"created_at": 1675804212123456
}
]
}
Loading...