Skip to main content
GET
/
api
/
wallets
List Wallet
curl --request GET \
  --url http://127.0.0.1:8083/api/wallets \
  --header 'X-API-Key: <api-key>' \
  --header 'X-API-Secret: <api-key>'
[
  {
    "wallet_address": "0x1234567890abcdef",
    "network": "ETH",
    "currency": "USDT",
    "created_at": "2023-11-07T05:31:56Z"
  }
]

Authorizations

X-API-Key
string
header
required

Includes an API key in the HTTP headers to authenticate the client.

X-API-Secret
string
header
required

Includes an API secret in the HTTP headers to authenticate the client.

Response

Operation Successful

wallet_address
string

Blockchain wallet address

Example:

"0x1234567890abcdef"

network
enum<string>

Blockchain network

Available options:
ETH,
TRX
Example:

"ETH"

currency
enum<string>

Currency asset code

Available options:
USDT,
USDC,
USD
Example:

"USDT"

created_at
string<date-time>

Wallet created time