Predictions
How to retrieve and use betting predictions from PredictorBets
curl -X GET "https://api.predictorbets.com/predictions?limit=10" \
-H "Authorization: Bearer YOUR_API_KEY"
import requests
response = requests.get(
'https://api.predictorbets.com/predictions',
params={'limit': 10},
headers={'Authorization': 'Bearer YOUR_API_KEY'}
)
print(response.json())
[
{
"id": "pred_12345",
"match": "Lakers vs Warriors",
"prediction": "Lakers -4.5",
"confidence": 0.78,
"odds": 1.85,
"sport": "basketball",
"timestamp": "2024-01-15T10:30:00Z"
}
]
{
"error": "Invalid API key",
"code": 401
}
Our predictions API provides access to machine learning-powered betting insights across multiple sports. Each prediction includes confidence scores, odds analysis, and historical performance data.
Retrieving Predictions
Use the predictions endpoint to get current betting recommendations.
Filter predictions by specific match ID.
Filter by sport type (football, basketball, etc.).
Number of predictions to return (max 100).
Unique identifier for the prediction.
The recommended bet (e.g., "Over 150.5 points").
Confidence score between 0 and 1.
Filtering Options
Narrow down predictions based on your preferences.
Filter predictions by specific sports like NFL, NBA, MLB.
Only show high-confidence predictions above a certain threshold.
Find value bets with favorable odds.
Choose Sport
Select your preferred sport from the available options.
Set Filters
Apply confidence and odds filters.
Retrieve
Get your customized predictions list.
Best Practices
Maximize the value from our prediction data.
Last updated 1 week ago