Pending
Get the list of pending transactions by address, sorted by priority, in decreasing order, truncated at the end at MAX. If MAX = 0, returns all pending transactions.
Authorizations
Path parameters
addressstringRequiredPattern:
An account public key
[A-Z0-9]{58}
Query parameters
maxintegerOptional
Truncated number of transactions to display. If max=0, returns all pending txns.
formatstring · enumOptionalPossible values:
Configures whether the response object is JSON or MessagePack encoded. If not provided, defaults to JSON.
Responses
200
A potentially truncated list of transactions currently in the node's transaction pool. You can compute whether or not the list is truncated if the number of elements in the **top-transactions** array is fewer than **total-transactions**.
400
Max must be a non-negative integer
401
Invalid API Token
500
Internal Error
503
Service Temporarily Unavailable
default
Unknown Error
get
GET /v2/accounts/{address}/transactions/pending HTTP/1.1
Host: algo.nownodes.io
X-Algo-API-Token: YOUR_API_KEY
Accept: */*
{
"top-transactions": [
{}
],
"total-transactions": 1
}
Last updated