List all sportsbooks/affiliates
curl --request GET \
--url https://therundown.io/api/v2/affiliates \
--header 'key: <api-key>'import requests
url = "https://therundown.io/api/v2/affiliates"
headers = {"key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {key: '<api-key>'}};
fetch('https://therundown.io/api/v2/affiliates', 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/v2/affiliates",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"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://therundown.io/api/v2/affiliates"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("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://therundown.io/api/v2/affiliates")
.header("key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://therundown.io/api/v2/affiliates")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"affiliates": [
{
"affiliate_id": 2,
"affiliate_name": "Bovada",
"affiliate_url": "https://bovada.lv",
"status": "healthy"
},
{
"affiliate_id": 3,
"affiliate_name": "Pinnacle",
"affiliate_url": "https://pinnacle.com",
"status": "healthy"
},
{
"affiliate_id": 4,
"affiliate_name": "Sportsbetting",
"affiliate_url": "https://sportsbetting.ag",
"status": "healthy"
},
{
"affiliate_id": 6,
"affiliate_name": "BetOnline",
"affiliate_url": "https://betonline.ag",
"status": "healthy"
},
{
"affiliate_id": 11,
"affiliate_name": "LowVig",
"affiliate_url": "https://lowvig.ag",
"status": "healthy"
},
{
"affiliate_id": 19,
"affiliate_name": "DraftKings",
"affiliate_url": "https://sportsbook.draftkings.com",
"status": "healthy"
},
{
"affiliate_id": 22,
"affiliate_name": "BetMGM",
"affiliate_url": "https://sports.betmgm.com",
"status": "healthy"
},
{
"affiliate_id": 23,
"affiliate_name": "FanDuel",
"affiliate_url": "https://sportsbook.fanduel.com",
"status": "healthy"
},
{
"affiliate_id": 24,
"affiliate_name": "theScore Bet",
"affiliate_url": "https://thescore.bet",
"status": "healthy"
},
{
"affiliate_id": 25,
"affiliate_name": "Kalshi",
"affiliate_url": "https://kalshi.com",
"status": "healthy"
},
{
"affiliate_id": 28,
"affiliate_name": "Hard Rock Bet",
"affiliate_url": "https://app.hardrock.bet",
"status": "beta"
}
]
}V2 Reference
List all sportsbooks/affiliates
Returns all enabled sportsbooks with IDs, names, URLs, and an integration status (healthy, unhealthy, or beta). No authentication required.
GET
/
api
/
v2
/
affiliates
List all sportsbooks/affiliates
curl --request GET \
--url https://therundown.io/api/v2/affiliates \
--header 'key: <api-key>'import requests
url = "https://therundown.io/api/v2/affiliates"
headers = {"key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {key: '<api-key>'}};
fetch('https://therundown.io/api/v2/affiliates', 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/v2/affiliates",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"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://therundown.io/api/v2/affiliates"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("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://therundown.io/api/v2/affiliates")
.header("key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://therundown.io/api/v2/affiliates")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"affiliates": [
{
"affiliate_id": 2,
"affiliate_name": "Bovada",
"affiliate_url": "https://bovada.lv",
"status": "healthy"
},
{
"affiliate_id": 3,
"affiliate_name": "Pinnacle",
"affiliate_url": "https://pinnacle.com",
"status": "healthy"
},
{
"affiliate_id": 4,
"affiliate_name": "Sportsbetting",
"affiliate_url": "https://sportsbetting.ag",
"status": "healthy"
},
{
"affiliate_id": 6,
"affiliate_name": "BetOnline",
"affiliate_url": "https://betonline.ag",
"status": "healthy"
},
{
"affiliate_id": 11,
"affiliate_name": "LowVig",
"affiliate_url": "https://lowvig.ag",
"status": "healthy"
},
{
"affiliate_id": 19,
"affiliate_name": "DraftKings",
"affiliate_url": "https://sportsbook.draftkings.com",
"status": "healthy"
},
{
"affiliate_id": 22,
"affiliate_name": "BetMGM",
"affiliate_url": "https://sports.betmgm.com",
"status": "healthy"
},
{
"affiliate_id": 23,
"affiliate_name": "FanDuel",
"affiliate_url": "https://sportsbook.fanduel.com",
"status": "healthy"
},
{
"affiliate_id": 24,
"affiliate_name": "theScore Bet",
"affiliate_url": "https://thescore.bet",
"status": "healthy"
},
{
"affiliate_id": 25,
"affiliate_name": "Kalshi",
"affiliate_url": "https://kalshi.com",
"status": "healthy"
},
{
"affiliate_id": 28,
"affiliate_name": "Hard Rock Bet",
"affiliate_url": "https://app.hardrock.bet",
"status": "beta"
}
]
}⌘I