Recent crypto funding data via x402-paid POST endpoint on Base (USDC) or Tron (USDT).
What it does
This endpoint at bridge.eruditepay.com provides crypto market intelligence — specifically recent funding data for tokens. It accepts a POST request with a JSON body containing a token address or symbol, and returns structured JSON with funding information. The endpoint is gated behind the x402 payment protocol (version 2) and costs $0.01 per call, payable in USDC on Base (EIP-155:8453) or USDT on Tron.
The provider, Erudite Intelligence LLC, primarily operates as an x402 payment facilitator (the "EruditePay Bridge") supporting 20 blockchains for verify/settle operations. This particular endpoint appears to be a data intelligence product offered alongside their facilitator infrastructure. The x402 challenge is live and well-formed, confirming the endpoint is operational.
Documentation for this specific data endpoint is sparse. The bazaar schema in the x402 challenge describes the input (a token address string) and output (a JSON object with `success` boolean and `data` object), but no detailed field descriptions or example responses with populated data are available. The provider's landing page focuses on the facilitator service rather than this market data endpoint. External docs at docs.eruditepay.com were referenced but not crawled, and the /docs path on the bridge domain returns a 404.
Capabilities
Use cases
- —Querying recent funding activity for a specific token or project
- —Building dashboards that track crypto venture funding in real time
- —Enriching trading bots with funding round signals
- —Monitoring token ecosystem health via funding metrics
Fit
Best for
- —AI agents needing on-demand crypto funding data via micropayments
- —Developers building crypto market intelligence tools
- —Automated trading systems that factor in funding signals
Not for
- —Users needing free or bulk historical funding data (per-call cost adds up)
- —Non-crypto market data needs
- —Detailed investor/round breakdowns (output schema is unclear on depth of data)
Quick start
curl -X POST https://bridge.eruditepay.com/v1/market/recent-funding \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402-payment-header>" \
-d '{"token": "0x0000000000000000000000000000000000000000"}'Example
Request
{
"token": "0x0000000000000000000000000000000000000000"
}Response
{
"data": {},
"success": true
}Endpoint
Quality
The x402 challenge is live and well-formed with a bazaar schema, confirming the endpoint works and accepts payment. However, documentation is extremely thin — no detailed output schema, no populated example response, and the provider's docs site was not reachable. The actual data returned in the `data` field is unknown.
Warnings
- —No detailed documentation available for this endpoint; /docs returns 404 on the bridge domain
- —The example output in the bazaar schema shows an empty data object — actual response structure is unknown
- —docs.eruditepay.com was referenced but not crawled; may contain additional information
Citations
- —Endpoint costs 10000 base units of USDC (6 decimals = $0.01) on Base or USDT on Tronhttps://bridge.eruditepay.com/v1/market/recent-funding
- —Provider is Erudite Intelligence LLC, a FinCEN MSB registered entity (BSA ID 31000324258137)https://bridge.eruditepay.com
- —EruditePay Bridge supports 20 blockchains as an x402 facilitatorhttps://bridge.eruditepay.com
- —Input schema accepts a token address or symbol string in a POST JSON bodyhttps://bridge.eruditepay.com/v1/market/recent-funding