LionX for AI Agents
Every LionX tool is an autonomous-agent-ready API. Your agent sends a request, receives a 402, pays USDC on Base in milliseconds, and gets intelligence back. No accounts. No API keys. No humans in the loop.
How x402 works on LionX
Available endpoints
Base URL: https://lionx.ccย ยทย Service manifest: /.well-known/x402.json
POST /api/mlb-picksPOST /api/nba-picksPOST /api/queryPOST /api/queryPOST /api/queryPOST /api/whale-interrogatorPrices are set in the x402 service manifest and may change. Always read the 402 response header for the authoritative amount.
Quick start
import { withPaymentInterceptor } from 'x402-axios'
import axios from 'axios'
// Wrap axios โ payment is handled automatically
const client = withPaymentInterceptor(axios.create(), {
wallet: yourCDPWallet, // Coinbase Developer Platform wallet
})
// Call any LionX endpoint โ agent pays $0.10 USDC if a 402 is returned
const { data } = await client.post('https://lionx.cc/api/mlb-picks', {
tool: 'MLB_PICKS',
})
console.log(data.picks)
// โพ BET 1: New York Mets ML (-115) โ 1.5u
// โพ BET 2: Under 8.5 Padres/Dodgers (-110) โ 1uNeed an x402 client library? github.com/coinbase/x402 ยท CDP wallets: docs.cdp.coinbase.com
Service manifest
Agent orchestration platforms can auto-discover LionX tools by fetching GET https://lionx.cc/.well-known/x402.json
{
"name": "LionX AI Intelligence API",
"description": "Sports picks, crypto wallet analysis, and on-chain audits powered by AI",
"version": "1.0.0",
"baseUrl": "https://lionx.cc",
"x402": true,
"network": "base",
"paymentAsset": "USDC",
"endpoints": [
{ "path": "/api/mlb-picks", "method": "POST", "priceUSDC": "0.10", "description": "Daily MLB conviction picks" },
{ "path": "/api/nba-picks", "method": "POST", "priceUSDC": "0.10", "description": "Daily NBA conviction picks" },
{ "path": "/api/query", "method": "POST", "priceUSDC": "varies", "description": "Wallet analysis, contract audit, market intel" },
{ "path": "/api/whale-interrogator", "method": "POST", "priceUSDC": "0.07", "description": "AI Chain Interrogator โ natural language Tron on-chain queries" }
]
}The LDA token model is still live for direct users. Connect TronLink, acquire LDA, and use all five tools on the tools page โ same intelligence, token-gated flow.