This week's lines and the injury report, two calls.
Game odds and injury reports are separate endpoints with the same team ids, so a Sunday board can join them. The JSON below is the field shape. The live call returns the current price.
On the Stripe page, enter STARTER30 for 30% off the first month. Tryout at $9 is there if you only want to see the JSON.
Call
curl -s "https://api.clearsportsapi.com/api/v1/nfl/game-odds" \
-H "Authorization: Bearer YOUR_API_KEY"
curl -s "https://api.clearsportsapi.com/api/v1/nfl/injury-stats?team_id=nfl_phi" \
-H "Authorization: Bearer YOUR_API_KEY"Shape
{
"away_team_abbreviation": "AWAY",
"home_team_abbreviation": "HOME",
"sportsbook_slug": "the-book",
"away_moneyline_american": 0,
"home_moneyline_american": 0,
"home_team_spread": 0,
"total_points": 0
}Lines
GET /api/v1/nfl/game-odds returns moneyline, spread, and total. Each row names the sportsbook.
Injuries on the same team id
GET /api/v1/nfl/injury-stats?team_id=nfl_phi returns report_date, season, week, and source_url for that club.
Sunday volume
Polling every NFL game and every injury report on Sunday needs Starter. 100,000 credits. STARTER30 is 30% off the first month.
FAQ
Are odds and injuries in one response?
No. game-odds and injury-stats are two calls. Join them on the team.
Is this historical odds?
No. game-odds is the current board for games that have not finished. There is no odds archive.
What does Tryout cover?
Tryout is $9 for 1,000 calls, enough to see the JSON. A Sunday of odds plus injuries needs Starter.