Transactions

List account transactions

get
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
idstringRequired

Id of the target account

Query parameters
cursorstringOptional

Optional cursor to get next pages (based on the next key on query response)

Responses
200

Successful response

application/json
get
/accounts/{id}/transactions
GET /rest/accounts/{id}/transactions HTTP/1.1
Host: 
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "next": "text",
  "results": [
    {
      "id": "text",
      "hash": "text",
      "block": {
        "height": "text",
        "time": "text"
      },
      "status": "SUCCESSFUL",
      "confirmations": "text",
      "amount": "text",
      "fee": "text",
      "senders": [
        "text"
      ],
      "recipients": [
        "text"
      ],
      "type": "BITCOIN_LIKE_SEND",
      "note": {
        "title": "text",
        "content": "text"
      }
    }
  ]
}