Get best lines for multiple events
curl --request GET \
--url 'https://therundown.io/api/v1/lines/best?key='import requests
url = "https://therundown.io/api/v1/lines/best?key="
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://therundown.io/api/v1/lines/best?key=', 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://therundown.io/api/v1/lines/best?key=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://therundown.io/api/v1/lines/best?key="
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://therundown.io/api/v1/lines/best?key=")
.asString();require 'uri'
require 'net/http'
url = URI("https://therundown.io/api/v1/lines/best?key=")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"09bfa53f8484a63e584398545c035932": {
"event_id": "09bfa53f8484a63e584398545c035932",
"moneyline": {
"moneyline_away": 155,
"moneyline_home": -170,
"best_affiliate_away": {
"affiliate_id": 23,
"affiliate_name": "FanDuel",
"updated_at": "2026-02-12T00:10:00Z"
},
"best_affiliate_home": {
"affiliate_id": 19,
"affiliate_name": "DraftKings",
"updated_at": "2026-02-12T00:10:00Z"
}
},
"spread": {
"point_spread_away": 4.5,
"point_spread_home": -4.5,
"point_spread_away_money": -105,
"point_spread_home_money": -108,
"best_affiliate_away": {
"affiliate_id": 3,
"affiliate_name": "Pinnacle",
"updated_at": "2026-02-12T00:08:00Z"
},
"best_affiliate_home": {
"affiliate_id": 23,
"affiliate_name": "FanDuel",
"updated_at": "2026-02-12T00:10:00Z"
}
},
"total": {
"total_over": 224.5,
"total_under": 224.5,
"total_over_money": -108,
"total_under_money": -105,
"best_affiliate_over": {
"affiliate_id": 19,
"affiliate_name": "DraftKings",
"updated_at": "2026-02-12T00:10:00Z"
},
"best_affiliate_under": {
"affiliate_id": 3,
"affiliate_name": "Pinnacle",
"updated_at": "2026-02-12T00:08:00Z"
}
}
}
}V1 Lines (Legacy)
Get best lines for multiple events
GET
/
api
/
v1
/
lines
/
best
Get best lines for multiple events
curl --request GET \
--url 'https://therundown.io/api/v1/lines/best?key='import requests
url = "https://therundown.io/api/v1/lines/best?key="
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://therundown.io/api/v1/lines/best?key=', 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://therundown.io/api/v1/lines/best?key=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://therundown.io/api/v1/lines/best?key="
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://therundown.io/api/v1/lines/best?key=")
.asString();require 'uri'
require 'net/http'
url = URI("https://therundown.io/api/v1/lines/best?key=")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"09bfa53f8484a63e584398545c035932": {
"event_id": "09bfa53f8484a63e584398545c035932",
"moneyline": {
"moneyline_away": 155,
"moneyline_home": -170,
"best_affiliate_away": {
"affiliate_id": 23,
"affiliate_name": "FanDuel",
"updated_at": "2026-02-12T00:10:00Z"
},
"best_affiliate_home": {
"affiliate_id": 19,
"affiliate_name": "DraftKings",
"updated_at": "2026-02-12T00:10:00Z"
}
},
"spread": {
"point_spread_away": 4.5,
"point_spread_home": -4.5,
"point_spread_away_money": -105,
"point_spread_home_money": -108,
"best_affiliate_away": {
"affiliate_id": 3,
"affiliate_name": "Pinnacle",
"updated_at": "2026-02-12T00:08:00Z"
},
"best_affiliate_home": {
"affiliate_id": 23,
"affiliate_name": "FanDuel",
"updated_at": "2026-02-12T00:10:00Z"
}
},
"total": {
"total_over": 224.5,
"total_under": 224.5,
"total_over_money": -108,
"total_under_money": -105,
"best_affiliate_over": {
"affiliate_id": 19,
"affiliate_name": "DraftKings",
"updated_at": "2026-02-12T00:10:00Z"
},
"best_affiliate_under": {
"affiliate_id": 3,
"affiliate_name": "Pinnacle",
"updated_at": "2026-02-12T00:08:00Z"
}
}
}
}Authorizations
ApiKeyQueryApiKeyHeader
API key as query parameter
Query Parameters
Comma-separated event IDs
Available options:
period_full_game, period_first_half, period_second_half, period_first_period, period_second_period, period_third_period, period_fourth_period, period_live_full_game, period_live_first_half, period_live_second_half, period_live_first_period, period_live_second_period, period_live_third_period, period_live_fourth_period Comma-separated sportsbook/affiliate IDs to filter. Common values include DraftKings (19), FanDuel (23), BetMGM (22), Bovada (2), Pinnacle (3).
Response
200 - application/json
Best lines keyed by event ID
Show child attributes
Show child attributes
⌘I