Pending block - transactions not yet mined, via eth_getBlockByNumber("pending")
Pending block - transactions not yet mined, via eth_getBlockByNumber("pending")
10000 (raw units)
price
197
calls / 30d
195
unique payers
2026-09-18
updated
Provider
api.onesource.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x52E29e0d2Aa49bfBfC548C0A9F2196F4aa51f3ea",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 3600
},
{
"scheme": "batch-settlement",
"network": "eip155:8453",
"payTo": "0x52E29e0d2Aa49bfBfC548C0A9F2196F4aa51f3ea",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 3600
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"network": "ethereum"
},
"type": "http"
},
"output": {
"example": {
"data": {
"result": {
"gasLimit": "0x1c9c380",
"gasUsed": "0xa7d8c0",
"number": "0x133da1f",
"timestamp": "0x6567c8ec",
"transactions": [
{
"from": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045",
"gas": "0x5208",
"hash": "0xad7e04119ecd85857728205f5b12e95f0bab8e99f9c2f60be5dc79cfc6a8df1f",
"nonce": "0x4d2",
"to": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"value": "0x0"
}
]
}
},
"meta": {
"cost_usdc": "0.001",
"endpoint": "/api/chain/pending",
"payment_chain": "base",
"payment_token": "USDC",
"request_id": "00000000abcdef01"
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"network": {
"default": "ethereum",
"enum": [
"ethereum",
"sepolia",
"robinhood"
],
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"data": {
"description": "Endpoint-specific response payload",
"properties": {
"result": {
"properties": {
"gasLimit": {
"type": "string"
},
"gasUsed": {
"type": "string"
},
"number": {
"type": "string"
},
"timestamp": {
"type": "string"
},
"transactions": {
"items": {
"properties": {
"from": {
"type": "string"
},
"gas": {
"type": "string"
},
"hash": {
"type": "string"
},
"nonce": {
"type": "string"
},
"to": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": [
"object",
"null"
]
}
},
"type": "object"
},
"error": {
"properties": {
"code": {
"type": "integer"
},
"message": {
"type": "string"
}
},
"type": [
"object",
"null"
]
},
"meta": {
"properties": {
"cost_usdc": {
"type": "string"
},
"endpoint": {
"type": "string"
},
"payment_chain": {
"type": "string"
},
"payment_token": {
"type": "string"
},
"request_id": {
"type": "string"
}
},
"required": [
"endpoint",
"request_id"
],
"type": "object"
}
},
"required": [
"data",
"meta"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.onesource.io/api/chain/pending" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.onesource.io/api/chain/pending");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.onesource.io/api/chain/pending")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/61.json, and this resource appears in /discovery/resources and /discovery/search.