Get buy/sell ratio data for any token on Base via x402-paid crypto intelligence endpoint.
What it does
This endpoint, hosted by Erudite Intelligence LLC on their EruditePay x402 Bridge infrastructure, returns buy-sell ratio data for a given token on the Base network. You POST a JSON body containing a token address (e.g. an ERC-20 contract address) and receive a JSON response with the computed ratio data. The endpoint is gated by the x402 payment protocol (v2), requiring per-call payment before data is served.
Pricing is $0.01 per request (10,000 base units of USDC on Base, which has 6 decimals, or equivalently 10,000 base units of USDT on Tron). Payment can be settled via USDC on Base (eip155:8453) through the Coinbase CDP facilitator, or via Tether USD on Tron (tron:728126428). The maximum payment timeout is 300 seconds.
The response schema is minimal — the example output shows `{"success": true, "data": {}}` — so the exact shape of the returned ratio data is not fully documented. No OpenAPI spec or detailed documentation page was found (the /docs path returns a 404). The provider is described as offering "Crypto data intelligence" and is operated by Erudite Intelligence LLC, a FinCEN MSB-registered entity. The endpoint is live and returning a proper 402 challenge.
Capabilities
Use cases
- —Analyze buy vs. sell pressure for a specific token on Base to inform trading decisions
- —Build automated trading bots that factor in real-time buy/sell ratios
- —Monitor token sentiment by tracking shifts in buy-sell ratios over time
- —Integrate on-chain trading intelligence into portfolio dashboards
Fit
Best for
- —Crypto traders needing per-token buy/sell pressure data
- —DeFi analytics platforms integrating on-chain intelligence
- —Automated agents that pay per-call for real-time crypto metrics
Not for
- —Users needing free or bulk historical data downloads
- —Non-crypto or traditional finance analytics without blockchain tokens
- —Users who cannot make x402 crypto micropayments
Quick start
curl -X POST https://bridge.eruditepay.com/v1/base/token/buy-sell-ratio \
-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 and returns a valid x402 challenge with clear pricing and payment options. However, documentation is essentially absent — no OpenAPI spec, no detailed docs page, and the example response output is an empty object, leaving the actual data shape unknown.
Warnings
- —No OpenAPI or detailed API documentation found; /docs returns 404.
- —The example output in the bazaar schema shows an empty data object — actual response structure is unknown.
- —Only the input schema (token address) is documented; output fields are not specified.
Citations
- —The endpoint is operated by Erudite Intelligence LLC, described as 'Crypto data intelligence'.https://bridge.eruditepay.com
- —Payment accepts USDC on Base (eip155:8453) at 10,000 base units ($0.01) or USDT on Tron at 10,000 base units ($0.01).https://bridge.eruditepay.com/v1/base/token/buy-sell-ratio
- —Erudite Intelligence LLC is FinCEN MSB registered with BSA ID 31000324258137.https://bridge.eruditepay.com
- —The x402 facilitator used for Base payments is Coinbase CDP (https://api.cdp.coinbase.com/platform/v2/x402).https://bridge.eruditepay.com/v1/base/token/buy-sell-ratio