Live matches
GET /v1/matches/live
The public API is not open yet. This preview shows the intended direction for v1 so early users can evaluate fit before launch.
StatArena API will use versioned REST paths under https://live.statarena-api.com/v1. Responses will be JSON and authenticated with API keys issued through the account portal after launch.
Requests will include an API key using the X-API-Key header. Keys will be scoped by plan, rate limits, and account status.
curl "https://live.statarena-api.com/v1/matches/live" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Accept: application/json"
GET /v1/matches/live
GET /v1/fixtures
GET /v1/teams and GET /v1/players
GET /v1/competitions/{id}/standings
{
"data": [
{
"id": "match_123",
"competition": "Premier League",
"homeTeam": "Liverpool",
"awayTeam": "Manchester City",
"status": "live",
"minute": 67,
"score": { "home": 1, "away": 1 }
}
]
}