Betting
Betting Lines
Retrieve comprehensive betting lines for specific games including all market types.
GET
Betting Lines
Overview
Returns detailed betting lines for specified games, including multiple market types such as Full Time Result (1X2), Correct Score, and more. Each line includes current odds, original odds, trend indicators, and outcome information for concluded markets.Query Parameters
Comma-separated list of game IDs to retrieve betting lines for.
Application type identifier. Auto-resolved.
Language identifier. Auto-resolved.
Timezone for date/time values (auto-resolved, or specify e.g.,
America/New_York).All
startTime fields in game data use ISO 8601 format with a dynamic timezone offset based on the resolved or specified timezone.User’s country for localization. Auto-resolved.
Response Structure
Array of betting line objects.
Array of bookmaker information.
Available sports definitions.
Country information for competitors.
Competition details.
Full game details for requested games.
Common Line Types
| ID | Name | Short Name | Description |
|---|---|---|---|
| 1 | Full Time Result | 1X2 | Match winner (Home/Draw/Away) |
| 126 | Correct Score | - | Exact final score prediction |
Odds Trend Values
| Value | Meaning | Description |
|---|---|---|
| 1 | Drifting | Odds have increased (less likely) |
| 2 | Stable | Odds unchanged |
| 3 | Shortening | Odds have decreased (more likely) |
Example Request
Example Response
Use Cases
Display All Markets for a Game
Retrieve all available betting markets for a single game to display comprehensive odds.Track Odds Movement
Comparerate with originalRate and use trend to show odds movement direction.
Show Settled Markets
Filter byisConcluded: true and highlight winning options using isWon: true.
Correct Score Grid
Build a score prediction grid using lines withlineTypeId: 126, grouping by internalOption.
Complete Workflow: EPL Odds Data for CLV Analysis
This section demonstrates the full workflow for fetching EPL matches and calculating Closing Line Value (CLV).Step 1: Get EPL Match IDs
First, use/games/results to get concluded EPL matches with their game IDs:
Step 2: Fetch Betting Lines for Those Matches
Use the game IDs to get detailed betting lines:Step 3: Calculate CLV for Your Model
Understanding the CLV Results
CLV Interpretation:
- Positive CLV: Your model identified value - you predicted higher probability than the market implied at close
- Negative CLV: The market closed with higher implied probability than your model
- Consistent positive CLV over time (100+ bets) indicates a potentially profitable betting model
| CLV | Interpretation | Action |
|---|---|---|
| > +3% | Strong value found | High confidence bet |
| +1% to +3% | Moderate value | Standard bet |
| -1% to +1% | No significant edge | Consider passing |
| < -1% | Market had better odds | Review model |
Key Fields for CLV Analysis
| Field | Description | Use Case |
|---|---|---|
rate.decimal | Closing odds (for concluded games) | Compare to your model odds |
originalRate.decimal | Opening odds when market opened | Track market movement |
trend | Direction of odds movement (1=up, 2=stable, 3=down) | Identify steam moves |
isConcluded | Whether game has finished | Filter for historical analysis |
isWon | Whether this selection won | Validate model accuracy |
Related Endpoints
- /standings - Get team IDs for a competition
- /games/results - Get concluded match IDs with basic odds
- /games/fixtures - Get upcoming match IDs
- /bets/trends - Track odds movements over time
- Best Practices - Endpoint selection guide
Notes
- Multiple games can be queried in a single request using comma-separated IDs
- The endpoint has built-in caching with automatic TTL management
- For pre-match odds preview, consider using the Bets Teaser endpoint
- Concluded markets include
outcomeOptionNumto identify the winning selection - For CLV analysis, always use concluded games where
raterepresents closing odds - The API does not provide explicit timestamps for when odds changed - use
trendfor direction
Last modified on April 12, 2026
Betting Lines