Look up pending Base mempool transactions by hash via x402 micropayment
What it does
This endpoint, operated by Erudite Intelligence LLC, returns pending mempool data for the Base blockchain (eip155:8453). You submit a transaction hash via POST and receive intelligence about its pending status. The endpoint is gated by the x402 protocol (v2) and accepts payment in USDC on Base (0.01 USDC per call) or USDT on Tron (0.01 USDT per call). Settlement is facilitated through the EruditePay x402 Bridge, which supports 20 blockchains.
The request body takes a JSON object with a single field: `hash`, a transaction hash string. The response returns a JSON object with a `success` boolean and a `data` object containing the mempool details. The endpoint description in the x402 challenge is simply "Crypto data intelligence," so the exact fields returned in the `data` object are not fully documented. The provider is FinCEN MSB registered (BSA ID 31000324258137) and operates non-custodially.
Documentation is sparse — the /docs path returns a 404, and the Bazaar schema extension provides only a minimal example with an empty `data` object. The endpoint is live and returning a proper 402 challenge, but without richer documentation or example responses, the precise scope of mempool data returned remains unclear.
Capabilities
Use cases
- —Check whether a specific Base transaction is still pending in the mempool
- —Monitor transaction confirmation status for payment verification workflows
- —Feed mempool data into trading or MEV strategies
- —Integrate pending-transaction awareness into wallet or dApp UIs
- —Automate alerts when a submitted transaction appears in the mempool
Fit
Best for
- —Developers building on Base who need real-time mempool visibility
- —Agents or bots that need to verify transaction propagation before acting
- —Applications that track payment status end-to-end
Not for
- —Querying confirmed/finalized transactions (this is mempool/pending only)
- —Non-Base chains — this specific endpoint is scoped to Base (eip155:8453)
- —Users who need free or unauthenticated blockchain data (this requires x402 payment)
Quick start
curl -X POST https://bridge.eruditepay.com/v1/base/mempool/pending \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402_payment_header>" \
-d '{"hash": "0xabc123..."}'Example
Request
{
"hash": "0x0000000000000000000000000000000000000000000000000000000000000000"
}Response
{
"data": {},
"success": true
}Endpoint
Quality
The endpoint is live and returns a valid x402 v2 challenge with clear pricing and a Bazaar schema extension. However, documentation is effectively absent (/docs returns 404), the example response contains an empty data object, and the actual fields returned for a real pending transaction are unknown. The description 'Crypto data intelligence' is vague.
Warnings
- —No dedicated documentation available — /docs returns 404
- —Example response in Bazaar schema shows empty data object; actual response fields are undocumented
- —Endpoint description is generic ('Crypto data intelligence') and does not detail what mempool fields are returned
- —Provider landing page is primarily about the x402 facilitator bridge, not this specific data endpoint
Citations
- —Endpoint accepts USDC on Base (amount 10000 = $0.01) and USDT on Tron (amount 10000 = $0.01)https://bridge.eruditepay.com/v1/base/mempool/pending
- —Provider is Erudite Intelligence LLC, FinCEN MSB registered with BSA ID 31000324258137https://bridge.eruditepay.com
- —EruditePay Bridge supports 20 blockchains and charges 0.5% per settlementhttps://bridge.eruditepay.com
- —x402 facilitator is Coinbase CDP at https://api.cdp.coinbase.com/platform/v2/x402https://bridge.eruditepay.com/v1/base/mempool/pending