Skip to main content
GET
/
wallet
/
addresses
addresses - Get account crypto addresses
curl --request GET \
  --url https://api.ripio.com/wallet/addresses/ \
  --header 'authorization: <authorization>' \
  --header 'signature: <signature>' \
  --header 'timestamp: <timestamp>'
{
  "error_code": null,
  "message": null,
  "data": [
    {
      "address": "0xabc123...",
      "memo_id": null,
      "version": 1,
      "network": {
        "id": 1,
        "code": "ethereum",
        "name": "Ethereum",
        "status_tag": null,
        "deliver_time": "~15 min",
        "enabled": true,
        "use_memo": false
      }
    }
  ]
}

Headers

authorization
string
required

The API key as a string.

signature
string
required

See the Generating Signature section for more details.

timestamp
number
required

A timestamp in milliseconds. See the Timestamp Security section for more details.

timstamp-tolerance
number

An additional, non-required parameter, that you can send to specify the number of milliseconds after the timestamp for the request to be valid. See the Timestamp Security section for more details.

Query Parameters

network__code
string

Filter by network code (e.g. ethereum, bitcoin, tron).

address
string

Filter by exact address value.

Response

Account addresses retrieved successfully.

error_code
string
required
Example:

null

message
string
required
Example:

null

data
object[]
required