Crypto market overview for any token via x402 micropayment on Base (USDC) or Tron (USDT).
What it does
The `/v1/multi/market-overview` endpoint on EruditePay's x402 Bridge provides crypto data intelligence. You send a POST request with a token address or symbol and receive a JSON market overview for that token. The endpoint is gated behind the x402 payment protocol (version 2) and accepts payment in USDC on Base (eip155:8453) or USDT on Tron (tron:728126428), each priced at $0.01 per call (10,000 base units with 6 decimals).
The endpoint is operated by Erudite Intelligence LLC, a FinCEN-registered MSB (BSA ID 31000324258137). Payment facilitation is handled via the Coinbase CDP x402 facilitator for the Base chain option. The response format is JSON with a `success` boolean and a `data` object, though the exact fields within `data` are not documented in the available materials.
Documentation is sparse — the provider's `/docs` path returns a 404, and no OpenAPI spec is available. The input schema specifies a `token` field (string: token address or symbol) in a JSON POST body. The output example shows only `{"success": true, "data": {}}` without detailing the market data fields returned. Prospective users should test with a known token to understand the response structure before building integrations.
Capabilities
Use cases
- —Retrieve market overview data for a specific cryptocurrency token by address or symbol
- —Build trading bots that fetch token market context before executing trades
- —Power dashboards or agents that need on-demand crypto market snapshots
- —Integrate pay-per-call crypto intelligence into AI agent workflows
Fit
Best for
- —AI agents needing on-demand crypto market data with micropayments
- —Developers who want pay-per-call token intelligence without API key subscriptions
- —Applications that already support x402 payment protocol
Not for
- —High-frequency trading requiring sub-second latency and bulk data (per-call payment adds overhead)
- —Users who need detailed documentation or guaranteed response schema before integrating
- —Free-tier or no-cost crypto data needs (every call costs $0.01)
Quick start
curl -X POST https://bridge.eruditepay.com/v1/multi/market-overview \
-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 endpoint is live (402 challenge captured) with clear pricing and a basic input schema, but documentation is effectively absent — /docs returns 404, no OpenAPI spec exists, and the output example is an empty placeholder. The actual market data fields returned are unknown.
Warnings
- —No OpenAPI or detailed documentation available; /docs returns 404
- —Output example from the bazaar schema shows an empty data object — actual response fields are undocumented
- —The Tron network identifier 'tron:728126428' is non-standard (Tron mainnet is typically referenced differently)
- —Cannot verify what market data fields are included in the response without making a paid call
Citations
- —Endpoint accepts USDC on Base (eip155:8453) at 10000 base units ($0.01) per callhttps://bridge.eruditepay.com/v1/multi/market-overview
- —Endpoint accepts USDT on Tron at 10000 base units ($0.01) per callhttps://bridge.eruditepay.com/v1/multi/market-overview
- —Operated by Erudite Intelligence LLC, FinCEN MSB registered (BSA ID 31000324258137)https://bridge.eruditepay.com
- —Payment facilitation via Coinbase CDP x402 facilitatorhttps://bridge.eruditepay.com/v1/multi/market-overview
- —Input schema requires a 'token' field described as 'Token address or symbol'https://bridge.eruditepay.com/v1/multi/market-overview