Statistics API
Live match statistics: attacks, dangerous attacks, shots on/off target and possession — full-time and first-half. From $5/mo.
GET /v1/fixtures/{id}/statistics
curl https://api.5dollarfootballapi.com/v1/fixtures/{id}/statistics
-H "Authorization: Bearer fb_live_your_key"
{
"success": 1,
"data": {
"fixture_id": 197590518,
"statistics": {
"attacks": { "home": 112, "away": 88 },
"shots_on_target": { "home": 7, "away": 4 },
"possession": { "home": 58, "away": 42 },
"first_half": {
"attacks": { "home": 47, "away": 40 },
"shots_on_target": { "home": 3, "away": 2 },
"possession": { "home": 55, "away": 45 }
}
}
}
}
What you get
- Attacks, dangerous attacks, shots on/off target, possession
- Home and away, live during the match
- First-half splits for every stat
- One call per fixture
The endpoint
One authenticated request returns clean JSON. Full parameters and responses are in the docs.
GET /v1/fixtures/{id}/statisticsStart building for free
Get a working API key in under a minute. No credit card, no sales call.