[Decprecated] Get Receiving Addresses of an Account

[DEPRECATED] Get receiving addresses of an account

get

Deprecated - For UTXO-based accounts. Returns a list of the next 3 available fresh addresses for an account. A fresh address is a newly generated address that has not received any previous transactions. It is recommended for privacy and security to use a fresh address for every transaction. On non UTXO-based accounts, this endpoint will return the single public address in use for the account.

Authorizations
Path parameters
account_idintegerRequired

The account's ID

Responses
200
New address generated
application/json
get
GET /accounts/{account_id}/addresses HTTP/1.1
Host: 
X-Ledger-API-Key: YOUR_API_KEY
Accept: */*
{
  "addresses": [
    {
      "address": "text",
      "derivation_path": "text"
    }
  ]
}

Last updated