Pending

Get a list of unconfirmed transactions currently in the transaction pool by address.

get

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
addressstringRequired

An account public key

Pattern: [A-Z0-9]{58}
Query parameters
maxintegerOptional

Truncated number of transactions to display. If max=0, returns all pending txns.

formatstring · enumOptional

Configures whether the response object is JSON or MessagePack encoded. If not provided, defaults to JSON.

Possible values:
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**.
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