Skip to main content
GET
/
events
/
{eventId}
/
score
cURL
curl --request GET \
  --url https://api.jup.ag/prediction/v1/events/{eventId}/score \
  --header 'x-api-key: <api-key>'
{
  "eventId": "<string>",
  "gameId": "<string>",
  "live": true,
  "ended": true,
  "updatedAt": "<string>",
  "leagueAbbreviation": "<string>",
  "homeTeam": "<string>",
  "awayTeam": "<string>",
  "score": "<string>",
  "period": "<string>",
  "elapsed": "<string>",
  "status": "<string>",
  "finishedTimestamp": "<string>"
}

Authorizations

x-api-key
string
header
required

Path Parameters

eventId
string
required

Event identifier

Minimum string length: 1

Response

200 - application/json

Latest live score for the event, or null if no score row exists.

eventId
string
required

Application-level event identifier

gameId
string
required
live
boolean
required

True while the game is in progress

ended
boolean
required

True once the game has finished

updatedAt
string
required

ISO 8601 timestamp of the last score update

leagueAbbreviation
string | null
homeTeam
string | null
awayTeam
string | null
score
string | null

Raw score string from the provider (e.g. "2-0")

period
string | null

Current period (e.g. "2H")

elapsed
string | null

Elapsed time within the game (e.g. "90")

status
string | null

Provider status string (e.g. "InProgress")

finishedTimestamp
string | null

ISO 8601 timestamp when the game finished, if ended