Skip to main content
GET
/
v1
/
featured
Featured Games — Top matches from priority leagues (PL, NBA, NFL)
curl --request GET \
  --url https://api.fieldfunded.com/v1/featured \
  --header 'X-API-Key: <api-key>'
import requests

url = "https://api.fieldfunded.com/v1/featured"

headers = {"X-API-Key": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};

fetch('https://api.fieldfunded.com/v1/featured', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.fieldfunded.com/v1/featured",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.fieldfunded.com/v1/featured"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("X-API-Key", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.fieldfunded.com/v1/featured")
.header("X-API-Key", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.fieldfunded.com/v1/featured")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "featured": [
    {
      "id": "627126",
      "home_team": "Boston Celtics",
      "away_team": "Philadelphia 76ers",
      "home_logo": "https://api.fieldfunded.com/api/logo/t-3422",
      "away_logo": "https://api.fieldfunded.com/api/logo/t-3420",
      "status": "live",
      "score": {
        "home": 87,
        "away": 92
      },
      "clock": "Q3 04:22",
      "period": "3rd Quarter",
      "odds": {
        "home": 1.3,
        "draw": null,
        "away": 3.4
      },
      "odds_format": "decimal",
      "sport": {
        "key": "basketball",
        "name": "Basketball"
      },
      "league": {
        "slug": "nba",
        "name": "NBA",
        "country": "USA"
      },
      "start_time": "2026-04-12T19:00:00Z",
      "markets_count": 85,
      "updated_at": "2026-04-12T20:15:30.000Z"
    }
  ],
  "total": 12,
  "markets_included": false,
  "priority_leagues": [
    "Premier League",
    "La Liga",
    "Champions League",
    "NBA",
    "NFL",
    "MLB",
    "NHL"
  ]
}

Authorizations

X-API-Key
string
header
required

Your FieldFunded API Key

Query Parameters

limit
integer
default:15

Max number of featured games to return (default: 15, max: 30)

Required range: x <= 30
markets
boolean
default:false

Include full market depth for each game (default: false). When true, each event includes all available markets, scoreboard, and sport-specific data.

odds_format
enum<string>
default:decimal

Odds format for all values in response. Default: decimal

Available options:
decimal,
american,
fractional

Response

A curated list of top-tier matches from priority leagues, sorted with live events first.

total
integer
markets_included
boolean

Whether full market data is included in the response

priority_leagues
string[]

List of priority league names included in the selection