Raw Zora Launchpad token deployment data on Base via Bitquery, paid per-call with USDC, SOL, or Lightning.
What it does
This endpoint returns the latest token deployments on the Zora Launchpad (Base chain only) along with deployer intelligence. It is a "raw" variant, meaning it returns structured data without AI-generated analysis text. The endpoint is part of the Einstein AI x402 API suite, which wraps Bitquery blockchain data queries behind x402 micropayment gates.
The endpoint accepts POST requests with optional `limit` (1–25, default 15) and `timeperiod` (1h/4h/12h/24h/7d/30d, default 24h) parameters. Payment is required via the x402 protocol at $0.60 per call (600,000 atomic units of USDC with 6 decimals). Three payment rails are supported: USDC on Base (EIP-155:8453), USDC on Solana, and Bitcoin via Lightning Network (786 sats, ~$0.60 equivalent). The payment recipient on Base is 0xc9368b30BD620164FD1a05a5d99dcaf8Ae754775. No API key is needed; authentication is handled entirely through the X-PAYMENT header.
The endpoint was confirmed live, returning a proper x402 payment challenge (HTTP 402) with version 1 headers and three accepted payment schemes. The parent API provides a full OpenAPI 3.0.3 specification with detailed schemas. Note that the non-raw sibling endpoint at `/x402/bitquery/zora-launches` costs $0.75 and includes AI-generated analysis alongside the data. The `/api` route on the origin returned a 522 (host timeout) during crawl, but the x402 endpoint itself responded correctly.
Capabilities
Use cases
- —Monitor new Zora Launchpad token deployments in near real-time on Base
- —Screen deployer wallets for repeat launchers or suspicious patterns
- —Feed token launch data into automated trading or alerting pipelines
- —Aggregate launchpad activity across time windows for market research
- —Build dashboards tracking Zora ecosystem growth
Fit
Best for
- —AI agents needing structured Zora launch data without narrative analysis
- —Automated trading bots monitoring new Base token deployments
- —Researchers tracking deployer behavior on Zora Launchpad
Not for
- —Querying Zora launches on chains other than Base
- —Getting AI-interpreted analysis (use the non-raw /zora-launches endpoint instead)
- —Historical data beyond 30 days
Quick start
curl -X POST https://emc2ai.io/x402/bitquery/zora-launches/raw \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <base64-signed-usdc-authorization>" \
-d '{"limit": 10, "timeperiod": "24h"}'Example
Request
{
"limit": 10,
"timeperiod": "24h"
}Response
{
"result": {
"tokens": [
{
"name": "ExampleToken",
"symbol": "EXT",
"deployer": "0xdef...456",
"deployedAt": "2025-06-01T12:00:00Z",
"tokenAddress": "0xabc...123"
}
]
},
"status": "completed",
"payment": {
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "600000",
"scheme": "exact",
"txHash": "0x789...abc",
"network": "base",
"x402Version": 1
}
}Endpoint
Quality
Full OpenAPI 3.0.3 spec with schemas, live 402 challenge with three payment options, and clear pricing. Docked because the response body schema is generic (no detailed field-level output schema for Zora launch data specifically), the example response is inferred from the generic BitqueryResponse schema rather than actual sample data, and the /api route returned a 522 timeout.
Warnings
- —The /api route on emc2ai.io returned HTTP 522 (origin timeout) during crawl, suggesting intermittent host issues.
- —The exact response fields for Zora launch data are not documented beyond the generic BitqueryResponse schema; the example response is inferred.
- —This is the raw variant; the OpenAPI spec documents the non-raw /zora-launches at $0.75 but the raw /zora-launches/raw endpoint at $0.60 is only fully described in the 402 challenge.
Citations
- —Endpoint returns HTTP 402 with x402 payment challenge, confirming it is livehttps://emc2ai.io/x402/bitquery/zora-launches/raw
- —Price is 600,000 atomic USDC (= $0.60) on Base, with Solana USDC and Lightning (786 sats) also acceptedhttps://emc2ai.io/x402/bitquery/zora-launches/raw
- —OpenAPI spec describes Zora launches as tracking new token launches on Zora platform with creation data, Base only, limit 1-25, timeperiod optionshttps://emc2ai.io
- —Non-raw sibling endpoint /x402/bitquery/zora-launches is priced at $0.75 per the OpenAPI spechttps://emc2ai.io
- —Payment recipient on Base is 0xc9368b30BD620164FD1a05a5d99dcaf8Ae754775https://emc2ai.io/x402/bitquery/zora-launches/raw
- —The /api route returned a 522 host timeout error during crawlhttps://emc2ai.io/api
- —Einstein AI accepts payments on Base USDC, Solana USDC, and BTC via Lightning Networkhttps://emc2ai.io/docs