Look up funding round data for any crypto token via x402-paid POST endpoint.
What it does
This x402-gated endpoint at bridge.eruditepay.com provides crypto data intelligence, specifically funding round information for tokens. You send a POST request with a token address or symbol in the JSON body, and receive structured funding round data in return. Payment is required per-call via the x402 protocol.
The endpoint accepts payment on two networks: Base (eip155:8453) using USDC at 10,000 base units ($0.01 per call) and Tron (tron:728126428) using USDT at 10,000 base units ($0.01 per call). The x402 facilitator is Coinbase CDP for the Base network option. The provider is Erudite Intelligence LLC, a FinCEN MSB-registered entity.
Documentation is sparse — the endpoint's output schema only provides a generic example (`{"success": true, "data": {}}`) without detailing the actual structure of funding round data returned. There is no OpenAPI spec, and the docs link at docs.eruditepay.com was not crawled. The input schema is straightforward: a JSON body with a `token` field containing a token address or symbol (e.g., `0x0000000000000000000000000000000000000000`). The endpoint is live and returning a valid x402 v2 challenge.
Capabilities
Use cases
- —Retrieve funding round history for a specific token by address or symbol
- —Enrich crypto portfolio dashboards with fundraising context
- —Agent-driven due diligence on token investment history
- —Automated screening of token legitimacy based on funding data
Fit
Best for
- —AI agents needing on-demand crypto funding intelligence
- —Crypto research tools requiring programmatic access to fundraising data
- —Automated due diligence pipelines for token analysis
Not for
- —Real-time price feeds or trading signals
- —Non-crypto data lookups
- —Users who need detailed API documentation before integrating
Quick start
curl -X POST https://bridge.eruditepay.com/v1/token/funding-rounds \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402_payment_header>" \
-d '{"token": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}'Example
Request
{
"token": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
}Response
{
"data": {},
"success": true
}Endpoint
Quality
The endpoint is live with a valid x402 v2 challenge and clear pricing ($0.01/call). However, documentation is very thin: the output example is a stub with an empty data object, there is no OpenAPI spec, and the docs URL returns a 404. The actual structure of funding round data is unknown.
Warnings
- —Output schema example is a stub — actual response structure for funding round data is undocumented
- —docs.eruditepay.com was not reachable during crawl; /docs returns endpoint_not_found
- —No OpenAPI specification available
- —The Tron network identifier 'tron:728126428' is non-standard (typical is tron:mainnet)
Citations
- —Endpoint returns x402 v2 challenge with USDC on Base (10000 base units) and USDT on Tron (10000 base units)https://bridge.eruditepay.com/v1/token/funding-rounds
- —Provider is Erudite Intelligence LLC, FinCEN MSB registered with BSA ID 31000324258137https://bridge.eruditepay.com
- —x402 facilitator for Base network is Coinbase CDPhttps://bridge.eruditepay.com/v1/token/funding-rounds
- —Input schema accepts a token field described as 'Token address or symbol'https://bridge.eruditepay.com/v1/token/funding-rounds
- —USDC uses 6 decimals, so 10000 base units = $0.01https://bridge.eruditepay.com