GET
/
api
/
addresses
curl --request GET \
  --url https://app.sandbox.rio.trade/api/addresses \
  --header 'x-api-key: <api-key>'
[
  {
    "createdAt": "2024-07-25T19:57:09.812Z",
    "userId": "66562bc04fe8bf83c577c178",
    "crypto": "USDC",
    "address": "0x32Be343B94f860124dC4fEe278FDCBD38C102D88",
    "approved": true,
    "lastChecked": "2024-05-28T19:58:39.617Z",
    "label": "Crypto Address",
    "advancedVerificationStatus": "initiated",
    "id": "6656376f778ff28dd1c41c50"
  }
]

Authorizations

x-api-key
string
header
required

Query Parameters

userId
string

Id of the user for which you want to get the list of crypto addresses.

Example:

"66290ac8bd3903485989f82e"

address
string

If the address is known, it can be used to obtain it.

Example:

"0x32Be343B94f860124dC4fEe278FDCBD38C102D88"

page
integer

Used to specify the current page you want to get in the paging results.

limit
integer

Used to specify the maximum number of records to be returned on a single page.

Response

200
application/json
OK
createdAt
string

The date and time when the address was created.

Example:

"2024-07-25T19:57:09.812Z"

userId
string

Id of the user.

Example:

"66562bc04fe8bf83c577c178"

crypto
enum<string>

Crypto currency.

Available options:
USDC,
USDC_POLYGON_NXTB,
SOL_USDC_PTHX,
USDT_POLYGON,
USDT_ERC20,
TRX_USDT_S2UZ
address
string

Crypto address.

Example:

"0x32Be343B94f860124dC4fEe278FDCBD38C102D88"

approved
boolean

Indicates if the address has been approved.

Example:

true

lastChecked
string

The date and time when the address was last verified.

Example:

"2024-05-28T19:58:39.617Z"

label
string

Label of the address.

Example:

"Crypto Address"

advancedVerificationStatus
enum<string>

Advanced verification status.

Available options:
initiated,
sent,
passed,
cancelled
id
string

Id of the address.

Example:

"6656376f778ff28dd1c41c50"