User

The endpoints for user data etc.

Get User

GET https://api.vaultoro.com/v1/me

This endpoint allows you get information about yourself!

Headers

NameTypeDescription

VTOKEN

string

Your API token to authenticate requests.

{
    "data": {
        "countryHandle": "DE",
        "createdAt": 1594306991,
        "defaults": {
            "currency": "EURCENT",
            "pair": "GOLDBTC"
        },
        "email": "bob@no-address.com",
        "flags": {
            "optInNewsletter": true,
            "verified": true
        },
        "identity": {
            "address": "1 Long Road",
            "city": "London",
            "firstName": "Bob",
            "lastName": "Marley",
            "zipCode": "90210"
        },
        "languageHandle": "EN"
    }
}

Last updated