Skip to main content
GET
/
v1
/
events
/
{eventId}
/
odds
Event Odds — Lightweight odds-only payload (60-70% smaller)
curl --request GET \
  --url https://api.fieldfunded.com/v1/events/{eventId}/odds \
  --header 'X-API-Key: <api-key>'
{
  "id": "87654321",
  "status": "live",
  "markets": [
    {
      "key": "match_winner",
      "name": "Match Winner",
      "outcomes": [
        {
          "label": "Home",
          "odds": 1.72,
          "is_locked": false,
          "team_side": "home"
        },
        {
          "label": "Draw",
          "odds": 3.9,
          "is_locked": false,
          "team_side": null
        },
        {
          "label": "Away",
          "odds": 5.1,
          "is_locked": false,
          "team_side": "away"
        }
      ]
    },
    {
      "key": "over_under_2_5",
      "name": "Over/Under 2.5",
      "outcomes": [
        {
          "label": "Over 2.5",
          "odds": 1.87,
          "is_locked": false,
          "team_side": null
        },
        {
          "label": "Under 2.5",
          "odds": 1.95,
          "is_locked": false,
          "team_side": null
        }
      ]
    }
  ],
  "updated_at": "2026-04-14T18:03:10.000Z"
}

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.

Query Parameters

odds_format
enum<string>
default:decimal

Odds format for all values in response. Default: decimal

Available options:
decimal,
american,
fractional

Response

A lightweight payload containing only the current odds and market statuses for the specified event.

id
string
status
string
markets
object[]
updated_at
string<date-time>