Skip to main content
GET
/
wallet
/
account
accounts - Get Account
curl --request GET \
  --url https://api.ripio.com/wallet/account/ \
  --header 'authorization: <authorization>' \
  --header 'signature: <signature>' \
  --header 'timestamp: <timestamp>'
{
  "error_code": null,
  "message": null,
  "data": {
    "id": 12345,
    "user_id": 67890,
    "username": "[email protected]",
    "first_name": "Juan",
    "last_name": "Perez",
    "country": "AR",
    "currency": "ARS",
    "validation_level": 3,
    "status": "ACT",
    "phone": "+5491112345678",
    "phone_validated": true,
    "is_staff": false,
    "is_otc_account": false,
    "is_corporate_account": false,
    "rp_tag": "juanperez",
    "reference_currency": "USD",
    "deposit_currency": "ARS",
    "kyc_id": null,
    "kyc_status": null,
    "user_tags": [
      "early_adopter"
    ],
    "features": {}
  }
}

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.

Response

Account profile retrieved successfully.

error_code
string
required
Example:

null

message
string
required
Example:

null

data
object
required