AI-processed betting intelligence delivered via API. Fixtures, analysis, picks, and oracle data. Pay per request with x402 micropayments — from $0.01 per call.
Real responses from the live API. No signup required for the discovery endpoint.
Everything a sharp bettor or AI agent needs, nothing it doesn't.
Every data point runs through AI models that analyze form, head-to-head records, injuries, and market movements to generate actionable picks.
Pay per request with USDC on Base. No subscriptions, no API keys for basic usage. Your wallet is your account. Powered by Coinbase's x402 protocol.
Soccer, NBA, Tennis, Boxing, MMA, and Esports. Each with tailored analysis models, league-specific data, and sport-appropriate metrics.
Every pick comes with a confidence score, expected value calculation, and detailed reasoning. Know exactly why a pick was made and how strong the edge is.
Fixtures, odds, and predictions refresh throughout the day. Get the latest data right up to game time with sub-200ms response times.
Built for AI agents and automated systems. Clean JSON responses, x402 discovery metadata, CORS enabled. Integrate in minutes, not days.
Each endpoint solves a specific problem. Pay only for what you use.
Today's fixtures with AI predictions and form data. Perfect for building pre-match dashboards or feeding your own models.
Deep match analysis with head-to-head records, injury reports, and market assessments. The full picture on any fixture.
Value betting picks with confidence ratings, edge calculations, and track record. Actionable intelligence, not just data.
Prediction market odds with implied probabilities and EV calculations. Compare market odds against model probabilities.
Start free. Scale when you're ready. No contracts, cancel anytime.
Perfect for testing and light usage. No signup required.
For serious bettors and AI agents who need consistent access.
Unlimited access with webhooks and priority support.
Get picks in your app in under a minute. Works with any language.
# Free endpoint — no auth needed curl https://picksapi.com/ # Health check curl https://picksapi.com/health # x402 discovery metadata curl https://picksapi.com/.well-known/x402.json # Paid endpoint — returns 402 with payment instructions curl https://picksapi.com/v1/picks?sport=nba # After signing payment with your wallet: curl -H "X-Payment: <signed-payment>" \ https://picksapi.com/v1/picks?sport=nba
import requests # Free — get API info and endpoints response = requests.get("https://picksapi.com/") api_info = response.json() print(api_info["endpoints"]) # Paid endpoint — will return 402 with payment details picks = requests.get( "https://picksapi.com/v1/picks", params={"sport": "soccer"} ) if picks.status_code == 402: # Parse x402 payment instructions payment_info = picks.json() print("Payment required:", payment_info)
// Free — fetch API info const res = await fetch("https://picksapi.com/"); const api = await res.json(); console.log(api.endpoints); // Paid endpoint — 402 response with payment instructions const picks = await fetch( "https://picksapi.com/v1/picks?sport=nba" ); if (picks.status === 402) { const payment = await picks.json(); console.log("Sign payment with wallet:", payment); }
// Using the official x402 SDK — handles payments automatically import { wrapFetch } from "@x402/fetch"; // Wrap fetch with your wallet — payments are automatic const paidFetch = wrapFetch(fetch, wallet); // Just fetch like normal — x402 handles the rest const picks = await paidFetch( "https://picksapi.com/v1/picks?sport=soccer" ); const data = await picks.json(); console.log(data.picks); // → AI-processed picks with confidence scores and EV // Install: npm install @x402/fetch // Docs: https://docs.cdp.coinbase.com/x402/welcome
The HTTP 402 payment standard by Coinbase. Pay-per-request with USDC on Base chain. No API keys needed.
AI models process fixtures, form, injuries, and market data daily. Not just raw data — actionable intelligence.
SSL encrypted, rate limited, CORS enabled. Built for reliability with sub-200ms response times.
No signup. No credit card. Just hit the endpoint.