Retrieve token inflation rate data via x402-paid crypto intelligence endpoint.
What it does
This x402-enabled endpoint at bridge.eruditepay.com returns inflation rate data for a given cryptocurrency token. It accepts a POST request with a JSON body containing a token address or symbol, and returns structured JSON with the inflation rate information. The endpoint is operated by Erudite Intelligence LLC and is described as "Crypto data intelligence" in its x402 challenge.
Payment is required per-call via the x402 protocol. The endpoint accepts two payment options: USDC on Base (eip155:8453) at 10,000 base units ($0.01 USD) per request, or USDT on Tron at 10,000 base units ($0.01 USD) per request. Payment is facilitated through the EruditePay x402 Bridge, which supports 20 blockchains and settles via Coinbase CDP or directly on-chain.
Documentation is sparse — the endpoint's output schema only shows a generic `{"success": true, "data": {}}` example without detailing the actual inflation rate fields returned. There is no dedicated API documentation page (the /docs path returns a 404). The endpoint is confirmed live, returning a proper 402 challenge on POST requests.
Capabilities
Use cases
- —Querying the current inflation rate of a specific cryptocurrency token by address
- —Comparing inflation rates across different tokens for investment analysis
- —Feeding token inflation data into automated trading or portfolio management agents
- —Monitoring token supply dynamics for DeFi protocol analysis
Fit
Best for
- —AI agents needing on-demand crypto token inflation metrics
- —Automated crypto research pipelines requiring per-call paid data
- —Developers building token analytics dashboards with x402 micropayments
Not for
- —Users needing free or bulk historical inflation data without per-call costs
- —Non-crypto use cases or traditional fiat inflation rate lookups
- —Users who cannot pay with USDC on Base or USDT on Tron
Quick start
curl -X POST https://bridge.eruditepay.com/v1/token/inflation-rate \
-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 confirmed live with a valid x402 402 challenge and a basic input/output schema, but documentation is effectively absent — no dedicated docs page, no detailed output schema, and the example response is a stub with an empty data object. The actual fields returned for inflation rate data are unknown.
Warnings
- —No dedicated API documentation available (/docs returns 404)
- —Output schema example is a stub with empty data object — actual response fields are unknown
- —Only a single example token address (zero address) is provided, unclear what tokens are supported
- —No OpenAPI spec available
Citations
- —Endpoint is operated by Erudite Intelligence LLChttps://bridge.eruditepay.com
- —Payment accepts USDC on Base (eip155:8453) at 10,000 base units and USDT on Tron at 10,000 base unitshttps://bridge.eruditepay.com/v1/token/inflation-rate
- —EruditePay Bridge supports 20 blockchains and is a FinCEN MSB registered entityhttps://bridge.eruditepay.com
- —Endpoint description is 'Crypto data intelligence'https://bridge.eruditepay.com/v1/token/inflation-rate