Outright Odds — Full futures markets for a specific tournament
curl --request GET \
--url https://api.fieldfunded.com/v1/outrights/{tournamentId} \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.fieldfunded.com/v1/outrights/{tournamentId}"
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/outrights/{tournamentId}', 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/outrights/{tournamentId}",
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/outrights/{tournamentId}"
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/outrights/{tournamentId}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.fieldfunded.com/v1/outrights/{tournamentId}")
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{
"tournament_id": 95,
"events": [
{
"event_id": "7454",
"tournament_id": "95",
"tournament": "Premier League",
"description": "Premier League 25/26",
"sport": "Soccer",
"country": "England",
"total_markets": 140,
"markets": [
{
"market_id": 18635070,
"name": "Premier League - Winner",
"status": "active",
"selections": [
{
"selection_id": 49426700,
"name": "Arsenal",
"odds": 3.5,
"status": "active"
},
{
"selection_id": 49426701,
"name": "Manchester City",
"odds": 4,
"status": "active"
},
{
"selection_id": 49426702,
"name": "Liverpool",
"odds": 5,
"status": "active"
}
]
},
{
"market_id": 18635075,
"name": "Premier League - Top Goalscorer",
"status": "active",
"selections": [
{
"selection_id": 49426750,
"name": "Haaland, Erling",
"odds": 2.75,
"status": "active"
},
{
"selection_id": 49426751,
"name": "Salah, Mohamed",
"odds": 6,
"status": "active"
},
{
"selection_id": 49426752,
"name": "Isak, Alexander",
"odds": 8,
"status": "active"
}
]
},
{
"market_id": 18635080,
"name": "Premier League - Most Assists",
"status": "active",
"selections": [
{
"selection_id": 49426793,
"name": "Fernandes, Bruno",
"odds": 1.01,
"status": "active"
},
{
"selection_id": 49426828,
"name": "Cherki, Mathis Rayan",
"odds": 11,
"status": "active"
}
]
}
]
}
],
"total": 1,
"odds_format": "decimal"
}{
"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"
}Outrights
Get Outright Detail
Returns all outright/futures markets and odds for a specific tournament.
Example markets: “Premier League Winner”, “Top Scorer”, “Most Assists”, “Relegation”, “Top 4 Finish”, etc.
Selections are sorted by odds (favourite first = lowest odds).
Live Feed — fetched live from the provider with 5-minute cache.
GET
/
v1
/
outrights
/
{tournamentId}
Outright Odds — Full futures markets for a specific tournament
curl --request GET \
--url https://api.fieldfunded.com/v1/outrights/{tournamentId} \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.fieldfunded.com/v1/outrights/{tournamentId}"
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/outrights/{tournamentId}', 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/outrights/{tournamentId}",
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/outrights/{tournamentId}"
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/outrights/{tournamentId}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.fieldfunded.com/v1/outrights/{tournamentId}")
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{
"tournament_id": 95,
"events": [
{
"event_id": "7454",
"tournament_id": "95",
"tournament": "Premier League",
"description": "Premier League 25/26",
"sport": "Soccer",
"country": "England",
"total_markets": 140,
"markets": [
{
"market_id": 18635070,
"name": "Premier League - Winner",
"status": "active",
"selections": [
{
"selection_id": 49426700,
"name": "Arsenal",
"odds": 3.5,
"status": "active"
},
{
"selection_id": 49426701,
"name": "Manchester City",
"odds": 4,
"status": "active"
},
{
"selection_id": 49426702,
"name": "Liverpool",
"odds": 5,
"status": "active"
}
]
},
{
"market_id": 18635075,
"name": "Premier League - Top Goalscorer",
"status": "active",
"selections": [
{
"selection_id": 49426750,
"name": "Haaland, Erling",
"odds": 2.75,
"status": "active"
},
{
"selection_id": 49426751,
"name": "Salah, Mohamed",
"odds": 6,
"status": "active"
},
{
"selection_id": 49426752,
"name": "Isak, Alexander",
"odds": 8,
"status": "active"
}
]
},
{
"market_id": 18635080,
"name": "Premier League - Most Assists",
"status": "active",
"selections": [
{
"selection_id": 49426793,
"name": "Fernandes, Bruno",
"odds": 1.01,
"status": "active"
},
{
"selection_id": 49426828,
"name": "Cherki, Mathis Rayan",
"odds": 11,
"status": "active"
}
]
}
]
}
],
"total": 1,
"odds_format": "decimal"
}{
"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
Path Parameters
Tournament ID from the /v1/outrights listing
Example:
95
Query Parameters
Odds format for all values in response. Default: decimal
Available options:
decimal, american, fractional ⌘I
