curl --request GET \
--url https://api.fieldfunded.com/v1/live \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.fieldfunded.com/v1/live"
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/live', 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/live",
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/live"
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/live")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.fieldfunded.com/v1/live")
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{
"events": [
{
"id": "749302",
"sport": {
"key": "soccer",
"name": "Soccer"
},
"league": {
"slug": "premier-league",
"name": "Premier League",
"country": "England"
},
"home_team": "Arsenal",
"away_team": "Chelsea",
"home_logo": "https://api.fieldfunded.com/api/logo/t-38",
"away_logo": "https://api.fieldfunded.com/api/logo/t-42",
"status": "live",
"start_time": "2026-04-12T15:00:00Z",
"score": {
"home": 2,
"away": 1
},
"clock": "67:10",
"period": "2nd Half",
"odds": {
"home": 1.45,
"draw": 4.5,
"away": 6
},
"odds_format": "decimal",
"markets_count": 72,
"updated_at": "2026-04-12T15:45:30.000Z"
}
],
"total": 64
}Get Live Events
Returns all currently live in-play events across all sports. This is a lightweight listing endpoint —
each event includes real-time scores, match clocks, event metadata, summary 1X2 odds (odds.home,
odds.draw, odds.away), and a markets_count field, but does NOT include the full markets
array (no individual market selections, player-prop markets (including pre-match and dynamic live/in-play variants), or deep odds).
This is functionally equivalent to GET /v1/events?status=live — a convenience alias that pre-filters to live games only.
For full market depth (all 1,000+ markets, selections, scoreboards, sport-specific data), fetch individual events via
GET /v1/events/{eventId}or usePOST /v1/events/batchfor up to 20 events at once.
Typical response size
~1–3 KB per event (vs. 50–200 KB with full markets on the detail endpoint).
Recommended usage pattern
Poll /v1/live every 5–10 seconds to discover which games are in-play and get headline odds, then fetch
/v1/events/{eventId} for the specific games where you need full market depth.
curl --request GET \
--url https://api.fieldfunded.com/v1/live \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.fieldfunded.com/v1/live"
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/live', 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/live",
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/live"
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/live")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.fieldfunded.com/v1/live")
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{
"events": [
{
"id": "749302",
"sport": {
"key": "soccer",
"name": "Soccer"
},
"league": {
"slug": "premier-league",
"name": "Premier League",
"country": "England"
},
"home_team": "Arsenal",
"away_team": "Chelsea",
"home_logo": "https://api.fieldfunded.com/api/logo/t-38",
"away_logo": "https://api.fieldfunded.com/api/logo/t-42",
"status": "live",
"start_time": "2026-04-12T15:00:00Z",
"score": {
"home": 2,
"away": 1
},
"clock": "67:10",
"period": "2nd Half",
"odds": {
"home": 1.45,
"draw": 4.5,
"away": 6
},
"odds_format": "decimal",
"markets_count": 72,
"updated_at": "2026-04-12T15:45:30.000Z"
}
],
"total": 64
}Authorizations
Your FieldFunded API Key
Query Parameters
Filter by sport key
"soccer"
Maximum number of live events to return (default: all, max: 200)
1 <= x <= 200Odds format for all values in response. Default: decimal
decimal, american, fractional 