Skip to main content
GET
/
v1
/
events
/
{eventId}
/
result
Event Result — Official final score and match status
curl --request GET \
  --url https://api.fieldfunded.com/v1/events/{eventId}/result \
  --header 'X-API-Key: <api-key>'
{ "id": "87654321", "status": "ended", "score": { "home": 0, "away": 0 }, "ended_at": "2026-04-12T16:55:00Z" }

Documentation Index

Fetch the complete documentation index at: https://docs.fieldfunded.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Your FieldFunded API Key

Path Parameters

eventId
string
required

Unique event identifier. Use GET /v1/events to discover active IDs.

Response

Event result. Check status field:

  • ended — Event finalised (market-level outcomes available via /v1/settlements)
  • not_ended — Game still in progress or not started
  • cancelled / abandoned / retired / walkover / postponed / suspended / interrupted / delayed — Professional non-final states
id
string
status
enum<string>
Available options:
ended,
not_ended,
postponed,
delayed,
cancelled,
abandoned,
retired,
suspended,
interrupted,
walkover
score
object

Home/away goals or points. A value of 0 is a valid score (for example, 0-0) and is returned as numeric zero.

ended_at
string<date-time> | null