GET
/
api
/
addresses
/
{id}
Get address
curl --request GET \
  --url https://app.sandbox.rio.trade/api/addresses/{id} \
  --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

Path Parameters

id
string
required

Id of the crypto address to be obtained.

Response

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"