List Currencies

List currencies

get

Returns the list of currencies supported on the Ledger Vault.

Authorizations
Responses
200
Currency list
application/json
get
GET /currencies HTTP/1.1
Host: 
X-Ledger-API-Key: YOUR_API_KEY
Accept: */*
200

Currency list

{
  "currencies": [
    {
      "family": "bitcoin",
      "name": "bitcoin",
      "num_confirmation_needed": 1,
      "type": "CRYPTO",
      "units": [
        {
          "code": "tBTC",
          "magnitude": 8
        }
      ]
    }
  ]
}

Last updated