πŸš€ Decentralized AI Intelligence

Apollo AI integrates x402 protocol for trustless, pay-per-use AI services. No accounts, no subscriptionsβ€”just instant crypto intelligence.

$1.50 USDC on Base Network
πŸ’°

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

1

Connect Your Wallet

Click "Connect Wallet" to connect your Base-compatible wallet. Make sure you have at least $1.50 USDC on Base network.

2

Enter Your Analysis Request

Type your crypto analysis question. Be specific for best results.

  • "Analyze Bitcoin price trends"
  • "Ethereum sentiment analysis"
  • "SOL whale movements"
3

Submit & Pay via x402

Click "Request Analysis" to initiate secure on-chain payment. Approve $1.50 USDC on Base network.

4

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.

βœ“ $1.50 USDC payment on Base network
βœ“ Payment proof in X-Payment header
βœ“ JSON body with your prompt
πŸ“‘ API Endpoints
β€Ί
POST /invoke

Main endpoint - Submit analysis with payment proof

GET /info

Service status & payment config

GET /.well-known/x402

x402 protocol - For AI agent discovery only

πŸ“ Request Format
β€Ί
JSON Body
application/json
{
  "prompt": "Analyze Bitcoin price trends and provide trading signals"
}
πŸ’³ Payment Proof Header
β€Ί

Include the X-Payment header with base64-encoded payment proof:

Header Format
X-Payment: base64(JSON.stringify({
  "tx": "0x...",
  "from": "0x...",
  "to": "0x5ee9C5161468F3622f27466D256E507EFD2AaaC8",
  "amount": "1500000",
  "network": "base"
}))
Payment Configuration
Amount $1.50 USDC
Network Base (8453)
USDC Contract 0x8335...2913
Treasury 0x5ee9...AaaC8
πŸ’» Code Examples
β€Ί
Bash
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"
  }'
JavaScript
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);
Python
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
β€Ί
JSON Response
{
  "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!

πŸ’‘ Include a Base chain contract address (0x...) to automatically get AI analysis + contract safety scan!