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"
]
}Get Featured Games
Returns top games from priority leagues — the biggest matches happening now or coming up soon. Live games are shown first, followed by nearest upcoming.
Priority leagues: Premier League, La Liga, Champions League, Europa League, Bundesliga, Serie A, Ligue 1, NBA, NFL, MLB, NHL. For major US leagues, featured selection includes season-phase competitions in general (e.g., Preseason, Regular Season, Playoffs, Finals) when available.
Perfect for building a homepage hero section or “Top Matches” widget.
Default mode returns summary odds (home/draw/away) and metadata — no full market depth.
Set markets=true to include complete market data (same depth as /v1/events/{eventId}).
⚠️ With markets=true, response payloads can be significantly larger (1–5 MB+).
Use smaller limit values (5–10) when markets are enabled.
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
Your FieldFunded API Key
Query Parameters
Max number of featured games to return (default: 15, max: 30)
x <= 30Include full market depth for each game (default: false). When true, each event includes all available markets, scoreboard, and sport-specific data.
Odds format for all values in response. Default: decimal
decimal, american, fractional Response
A curated list of top-tier matches from priority leagues, sorted with live events first.
