Search — Find events by team or league name (partial match)
curl --request GET \
--url https://api.fieldfunded.com/v1/search \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.fieldfunded.com/v1/search"
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/search', 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/search",
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/search"
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/search")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.fieldfunded.com/v1/search")
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": "87654321",
"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"
},
{
"id": "87654322",
"sport": {
"key": "baseball",
"name": "Baseball"
},
"league": {
"slug": "mlb",
"name": "MLB",
"country": "USA"
},
"home_team": "St. Louis Cardinals",
"away_team": "Los Angeles Dodgers",
"home_logo": "https://api.fieldfunded.com/api/logo/t-3632",
"away_logo": "https://api.fieldfunded.com/api/logo/t-3638",
"status": "prematch",
"start_time": "2026-04-14T20:10:00Z",
"score": {
"home": 0,
"away": 0
},
"clock": null,
"period": "",
"odds": {
"home": 2.1,
"draw": null,
"away": 1.75
},
"odds_format": "decimal",
"markets_count": 120,
"updated_at": "2026-04-12T18:00:00.000Z"
}
],
"total": 42,
"query": "Arsenal"
}{
"error": "not_found",
"message": "Event not found. For historical results, use /v1/settlements."
}{
"error": "unauthorized",
"message": "Invalid or missing API key. Visit docs.fieldfunded.com for access."
}{
"error": "rate_limited",
"message": "Rate limit exceeded. Upgrade your plan for higher limits."
}{
"error": "server_error",
"message": "Internal server error"
}{
"error": "service_unavailable",
"message": "Data store temporarily unavailable",
"component": "realtime_data"
}Events
Search Events
Search for events by team name or league name. Returns matching events across all sports. Supports partial matching.
GET
/
v1
/
search
Search — Find events by team or league name (partial match)
curl --request GET \
--url https://api.fieldfunded.com/v1/search \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.fieldfunded.com/v1/search"
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/search', 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/search",
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/search"
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/search")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.fieldfunded.com/v1/search")
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": "87654321",
"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"
},
{
"id": "87654322",
"sport": {
"key": "baseball",
"name": "Baseball"
},
"league": {
"slug": "mlb",
"name": "MLB",
"country": "USA"
},
"home_team": "St. Louis Cardinals",
"away_team": "Los Angeles Dodgers",
"home_logo": "https://api.fieldfunded.com/api/logo/t-3632",
"away_logo": "https://api.fieldfunded.com/api/logo/t-3638",
"status": "prematch",
"start_time": "2026-04-14T20:10:00Z",
"score": {
"home": 0,
"away": 0
},
"clock": null,
"period": "",
"odds": {
"home": 2.1,
"draw": null,
"away": 1.75
},
"odds_format": "decimal",
"markets_count": 120,
"updated_at": "2026-04-12T18:00:00.000Z"
}
],
"total": 42,
"query": "Arsenal"
}{
"error": "not_found",
"message": "Event not found. For historical results, use /v1/settlements."
}{
"error": "unauthorized",
"message": "Invalid or missing API key. Visit docs.fieldfunded.com for access."
}{
"error": "rate_limited",
"message": "Rate limit exceeded. Upgrade your plan for higher limits."
}{
"error": "server_error",
"message": "Internal server error"
}{
"error": "service_unavailable",
"message": "Data store temporarily unavailable",
"component": "realtime_data"
}Authorizations
Your FieldFunded API Key
Query Parameters
Search query (min 2 characters). Matches against home team, away team, and league names.
Minimum string length:
2Example:
"Arsenal"
Maximum results to return
Required range:
1 <= x <= 100Odds format for all values in response. Default: decimal
Available options:
decimal, american, fractional ⌘I
