Skip to main content
GET
/
transaction
/
pool
Get transactions pool
curl --request GET \
  --url https://api.example.com/transaction/pool
const options = {method: 'GET'};

fetch('https://api.example.com/transaction/pool', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
import requests

url = "https://api.example.com/transaction/pool"

response = requests.get(url)

print(response.text)
false
{}

Query Parameters

by-sender
string

Filter by sender address

shard-id
string

Filter by shard ID

fields
string

Comma-separated fields to include (or *)

last-nonce
boolean

Get latest nonce for sender

nonce-gaps
boolean

Get nonce gaps for sender

Response

Successful response

The response is of type object.