Skip to content

Live: Get Node Transaction Pool

GET /api/v1/live/node/transaction-pool
Get a free API key →
curl

No parameters.

Media: application/json

Schema
{
"type": "object",
"required": [
"pool"
],
"properties": {
"pool": {
"type": "array",
"items": {
"type": "object",
"required": [
"encodedExtrinsic",
"hash"
],
"properties": {
"encodedExtrinsic": {
"type": "string"
},
"hash": {
"type": "string"
},
"partialFee": {
"type": "string",
"nullable": true
},
"priority": {
"type": "string",
"nullable": true
},
"tip": {
"type": "string",
"nullable": true
}
}
}
}
}
}
Examples
{
"Result": {
"value": "{}"
}
}

All Taostats API requests require an Authorization header containing your API key. See Getting Started.