π Decentralized AI Intelligence
Apollo AI integrates x402 protocol for trustless, pay-per-use AI services. No accounts, no subscriptionsβjust instant crypto intelligence.
Pay-Per-Use AI
Only pay for what you use. $1.50 USDC per comprehensive analysis via Base network.
Trustless Payments
No signup required. Payments verified on-chain with proof-of-payment protocol.
Instant Settlement
Real-time payment verification on Base L2. Get results in seconds.
Decentralized Discovery
Apollo AI is discoverable via Coinbase CDP x402 Bazaar marketplace.
How to Use Apollo AI CDP Facilitator
Connect Your Wallet
Click "Connect Wallet" to connect your Base-compatible wallet. Make sure you have at least $1.50 USDC on Base network.
Enter Your Analysis Request
Type your crypto analysis question. Be specific for best results.
- "Analyze Bitcoin price trends"
- "Ethereum sentiment analysis"
- "SOL whale movements"
Submit & Pay via x402
Click "Request Analysis" to initiate secure on-chain payment. Approve $1.50 USDC on Base network.
Receive Analysis
Get comprehensive market intelligence with multi-model consensus, whale tracking, and actionable signals.
Developer API Documentation
Apollo AI 3.0 is accessible via JSON/API. Perfect for integrating into applications, AI agents, or automation workflows.
Quick Start
βΊ
POST /invoke
Send your analysis request with payment proof to receive AI-powered crypto intelligence.
X-Payment header
prompt
API Endpoints
βΊ
/invoke
Main endpoint - Submit analysis with payment proof
/info
Service status & payment config
/.well-known/x402
x402 protocol - For AI agent discovery only
Request Format
βΊ
JSON Body
{
"prompt": "Analyze Bitcoin price trends and provide trading signals"
}
Payment Proof Header
βΊ
Include the X-Payment header with base64-encoded payment proof:
X-Payment: base64(JSON.stringify({
"tx": "0x...",
"from": "0x...",
"to": "0x5ee9C5161468F3622f27466D256E507EFD2AaaC8",
"amount": "1500000",
"network": "base"
}))
Payment Configuration
$1.50 USDC
Base (8453)
0x8335...2913
0x5ee9...AaaC8
Code Examples
βΊ
curl -X POST https://x402.apolloterminal.xyz/invoke \
-H "Content-Type: application/json" \
-H "X-Payment: $(echo '{
"tx": "0xYourTransactionHash",
"from": "0xYourAddress",
"to": "0x5ee9C5161468F3622f27466D256E507EFD2AaaC8",
"amount": "1500000",
"network": "base"
}' | base64)" \
-d '{
"prompt": "Analyze Ethereum market trends"
}'
const paymentProof = {
tx: "0xYourTransactionHash",
from: "0xYourAddress",
to: "0x5ee9C5161468F3622f27466D256E507EFD2AaaC8",
amount: "1500000",
network: "base"
};
const response = await fetch('https://x402.apolloterminal.xyz/invoke', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-Payment': btoa(JSON.stringify(paymentProof))
},
body: JSON.stringify({
prompt: 'Analyze Solana ecosystem developments'
})
});
const result = await response.json();
console.log(result);
import requests
import json
import base64
payment_proof = {
"tx": "0xYourTransactionHash",
"from": "0xYourAddress",
"to": "0x5ee9C5161468F3622f27466D256E507EFD2AaaC8",
"amount": "1500000",
"network": "base"
}
headers = {
"Content-Type": "application/json",
"X-Payment": base64.b64encode(
json.dumps(payment_proof).encode()
).decode()
}
data = {
"prompt": "Analyze Bitcoin dominance trends"
}
response = requests.post(
'https://x402.apolloterminal.xyz/invoke',
headers=headers,
json=data
)
print(response.json())
Response Format
βΊ
{
"analysis": "Multi-agent consensus analysis...",
"models": ["gpt-4o", "claude-3.5-sonnet", "grok-2", ...],
"onchain": {
"token_metrics": {...},
"whale_movements": [...],
"dex_activity": {...}
},
"timestamp": "2025-10-31T12:00:00Z"
}
Request Analysis ($1.50 USDC)
π‘ Pro Tip: Include a contract address (0x...) to get AI analysis + FREE safety scan!