Retrieve trending social mentions for any crypto token via x402 micropayment.
What it does
The trending-mentions endpoint at bridge.eruditepay.com returns crypto data intelligence about trending social mentions for a given token. It accepts a POST request with a JSON body containing a token address or symbol and returns structured JSON data about that token's trending mentions.
Payment is handled via the x402 protocol. The endpoint accepts two payment options: USDC on Base (eip155:8453) at 0.01 USDC per call, or USDT on Tron (tron:728126428) at 0.01 USDT per call. The facilitator is Coinbase CDP for the Base option. The provider is Erudite Intelligence LLC, a FinCEN MSB-registered entity.
Documentation is sparse — the endpoint's crawled landing page describes EruditePay as an x402 payment facilitator/bridge rather than documenting this specific data endpoint. The Bazaar extension in the 402 challenge provides a basic schema showing the expected input (a token address string) and a minimal output example (`{"success": true, "data": {}}`), but no detailed field descriptions for the response payload are available. The actual structure and richness of the returned trending-mentions data is unknown from the available material.
Capabilities
Use cases
- —Monitor which crypto tokens are gaining social traction in real time
- —Feed trending token data into trading bots or alert systems
- —Enrich a portfolio dashboard with social mention signals
- —Research token popularity before making investment decisions
Fit
Best for
- —Crypto traders needing social signal data on tokens
- —AI agents that incorporate social sentiment into trading strategies
- —Dashboard builders adding trending-mention widgets
Not for
- —Non-crypto social media monitoring
- —Historical social data analysis (no evidence of historical query support)
- —Free-tier or high-volume bulk scraping (each call costs 0.01 USD)
Quick start
curl -X POST https://bridge.eruditepay.com/v1/token/trending-mentions \
-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 (402 challenge captured) with a basic Bazaar schema, but documentation is essentially absent — the crawled site describes the facilitator bridge, not this data endpoint. The response example is a stub with an empty data object, so the actual output structure is unknown.
Warnings
- —No dedicated documentation found for this endpoint; /docs returns 404.
- —Response schema is a stub — the example output shows an empty data object, so actual fields are unknown.
- —The provider site primarily describes an x402 facilitator/bridge service, not a crypto data intelligence API; the data source and methodology behind trending mentions is undocumented.
Citations
- —The endpoint returns HTTP 402 with x402 v2 challenge and accepts USDC on Base and USDT on Tronhttps://bridge.eruditepay.com/v1/token/trending-mentions
- —USDC on Base amount is 10000 base units (0.01 USDC) and USDT on Tron amount is 10000 base units (0.01 USDT)https://bridge.eruditepay.com/v1/token/trending-mentions
- —Provider is Erudite Intelligence LLC, FinCEN MSB registered with BSA ID 31000324258137https://bridge.eruditepay.com
- —The Bazaar schema specifies input body with a 'token' field described as 'Token address or symbol'https://bridge.eruditepay.com/v1/token/trending-mentions