Returns the list of currencies supported on the Ledger Vault.
GET /currencies HTTP/1.1 Host: X-Ledger-API-Key: YOUR_API_KEY Accept: */*
Currency list
{ "currencies": [ { "family": "bitcoin", "name": "bitcoin", "num_confirmation_needed": 1, "type": "CRYPTO", "units": [ { "code": "tBTC", "magnitude": 8 } ] } ] }
Returns the requested currency.
The currency name.
GET /currencies/{currency_name} HTTP/1.1 Host: X-Ledger-API-Key: YOUR_API_KEY Accept: */*
Currency object
{ "family": "bitcoin", "name": "bitcoin", "num_confirmation_needed": 1, "type": "CRYPTO", "units": [ { "code": "tBTC", "magnitude": 8 } ] }
Returns a boolean indicating the validity of the address.
Address to validate.
GET /currencies/{currency_name}/{address} HTTP/1.1 Host: X-Ledger-API-Key: YOUR_API_KEY Accept: */*
Address validation result
{ "is_valid": true }