Skip to main content
GET
/
trade
/
wallets
/
{currency_code}
/
{network}
Wallets - Get User Wallet
curl --request GET \
  --url https://api.ripio.com/trade/wallets/{currency_code}/{network} \
  --header 'authorization: <authorization>' \
  --header 'signature: <signature>' \
  --header 'timestamp: <timestamp>'
{
  "data": {
    "address": "<string>",
    "currency_code": "BTC",
    "tag": "<string>",
    "memo": "<string>",
    "network": "<string>"
  },
  "error_code": null,
  "message": null
}

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.

Path Parameters

currency_code
string
required

Currency code

Example:

"BTC"

network
string
required

Network

Example:

"bitcoin"

Response

200 - application/json

Ok

data
object
required
error_code
number
required
Example:

null

message
string
required
Example:

null