Aggregated early opportunity signals for BSC chain via Bitquery, paid per-request with USDC on Base, Solana, or Lightning.
What it does
This endpoint returns aggregated early opportunity (alpha) signals for the Binance Smart Chain (BSC). It is part of the Einstein AI x402 API suite, which wraps Bitquery on-chain data behind x402 micropayment gates. The "/raw" suffix indicates this endpoint returns raw data without AI-generated analysis layered on top.
The endpoint accepts POST requests with optional parameters: chain (defaults to BSC for this endpoint), limit (1–500, default 10), and timeperiod (1h, 4h, 24h, 7d, 30d). It costs $0.60 per request, payable in USDC on Base (contract 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913), USDC on Solana, or 786 sats via Lightning Network. Payment is made via the x402 protocol's X-PAYMENT header — no API keys are required. The endpoint is live and returns a standard 402 payment challenge when called without payment.
Einstein AI offers over 20 x402 endpoints covering market data, whale intelligence, launchpad tracking (Pump.fun, Zora), security audits (rug pull scanner, MEV detection), DeFi arbitrage scanning, and AI-powered analysis. This particular endpoint is focused specifically on BSC alpha signals — newly deployed tokens, volume spikes, and early trading patterns on BSC. The broader API supports chains including Base, Ethereum, BSC, Arbitrum, Polygon, Optimism, zkSync, and Solana, with prices ranging from $0.25 to $1.15 per call depending on the endpoint.
Capabilities
Use cases
- —Automated trading agents scanning BSC for early token opportunities before they trend
- —Portfolio management bots monitoring BSC for volume spikes and new pair deployments
- —Research agents aggregating cross-chain alpha signals starting with BSC data
- —Alert systems that trigger when new high-potential tokens appear on BSC
Fit
Best for
- —AI agents needing programmatic BSC market intelligence without API key management
- —Developers building trading bots that pay per-request for on-chain data
- —Multi-agent systems that discover and consume x402 services dynamically
Not for
- —Users needing free or unlimited-volume blockchain data access
- —Historical backtesting requiring bulk data downloads
- —Non-BSC chain analysis (use sibling endpoints for other chains)
Quick start
curl -X POST https://emc2ai.io/x402/bitquery/earlysignals/raw \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <base64-signed-USDC-authorization>" \
-d '{"chain": "bsc", "limit": 10, "timeperiod": "24h"}'Example
Request
{
"chain": "bsc",
"limit": 10,
"timeperiod": "24h"
}Response
{
"result": {
"signals": [
{
"name": "ExampleToken",
"swaps": 87,
"token": "0xabc...123",
"symbol": "EXT",
"createdAt": "2025-01-15T10:30:00Z",
"volumeUsd": 52340.5,
"priceChange": 142.3
}
]
},
"status": "completed",
"payment": {
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "600000",
"scheme": "exact",
"txHash": "0xdef...789",
"network": "base",
"x402Version": 1
}
}Endpoint
Quality
The endpoint is live (402 challenge confirmed) with a full OpenAPI spec, clear pricing ($0.60 USDC), multi-network payment options, and well-defined input schema. However, this specific endpoint (/earlysignals/raw) is not explicitly listed in the OpenAPI paths (the closest is /bscalpha at $0.75), and the response schema for the raw variant is only partially described in the outputSchema. No actual response examples from a paid call are available.
Warnings
- —The /earlysignals/raw path is not explicitly listed in the OpenAPI spec; the closest match is /bscalpha at $0.75 — this endpoint may be an unlisted variant or alias
- —The /api route returned a 522 (host error) during crawl, suggesting some backend instability
- —Response schema is inferred from the outputSchema in the 402 challenge; actual response structure may differ
- —Example response JSON is inferred, not captured from a real successful call
Citations
- —Endpoint returns 402 with x402Version 1 challenge accepting USDC on Base (600000 atomic = $0.60), USDC on Solana, and 786 sats on Lightninghttps://emc2ai.io/x402/bitquery/earlysignals/raw
- —Einstein AI x402 API accepts USDC on Base and Solana networks, prices range $0.25–$1.00https://emc2ai.io/docs
- —OpenAPI spec lists /x402/bitquery/bscalpha as BSC Alpha Signals endpoint at $0.75 with BitqueryTimeRequest schemahttps://emc2ai.io
- —Input schema accepts chain, limit (max 500), and timeperiod parameters per the outputSchema in the 402 challengehttps://emc2ai.io/x402/bitquery/earlysignals/raw
- —Payment address on Base is 0xc9368b30BD620164FD1a05a5d99dcaf8Ae754775, USDC asset 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913https://emc2ai.io/x402/bitquery/earlysignals/raw