Acede aos picks do OdinPicks via REST API. Integra no teu bot, app ou dashboard. JSON, autenticado por API key.
GET https://www.odinpicks.com/api/v1/picks
Authorization: Bearer op_live_abc123...
{
"data": [
{
"id": "af2df3ac-...",
"sport": "Football",
"league": "J-League",
"home_team": "Cerezo Osaka",
"away_team": "Hiroshima Sanfrecce FC",
"pick_label": "Cerezo Osaka (H2H)",
"odds": 3.88,
"bookmaker": "Pinnacle",
"ev_score": 0.164,
"kelly_size": 0.0049,
"confidence": 3,
"analysis": "Cerezo Osaka at 3.88...",
"pick_category": "single",
"commence_time": "2026-02-22T06:00:00Z",
"is_free": true
}
],
"meta": {
"count": 7,
"date": "2026-02-21",
"usage": { "used": 1, "daily_limit": 100 }
}
}curl -H "Authorization: Bearer op_live_abc123..." \ https://www.odinpicks.com/api/v1/picks
import requests
headers = {"Authorization": "Bearer op_live_abc123..."}
r = requests.get("https://www.odinpicks.com/api/v1/picks", headers=headers)
picks = r.json()["data"]
for p in picks:
print(f"{p['sport']} | {p['pick_label']} @{p['odds']} | EV: {p['ev_score']:.1%}")