Get line price chart data for a specific market
curl --request GET \
--url 'https://therundown.io/api/v2/events/{eventID}/markets/{marketID}/history?key='import requests
url = "https://therundown.io/api/v2/events/{eventID}/markets/{marketID}/history?key="
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://therundown.io/api/v2/events/{eventID}/markets/{marketID}/history?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/v2/events/{eventID}/markets/{marketID}/history?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/v2/events/{eventID}/markets/{marketID}/history?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/v2/events/{eventID}/markets/{marketID}/history?key=")
.asString();require 'uri'
require 'net/http'
url = URI("https://therundown.io/api/v2/events/{eventID}/markets/{marketID}/history?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{
"meta": {
"event_id": "09bfa53f8484a63e584398545c035932",
"market_id": 3,
"market_name": "totals"
},
"series": {
"19": {
"affiliate_name": "Affiliate 19",
"data": [
{
"t": "2026-02-10T14:00:00Z",
"p": "-110"
},
{
"t": "2026-02-11T09:30:00Z",
"p": "-112"
},
{
"t": "2026-02-11T22:00:00Z",
"p": "-108"
}
]
},
"23": {
"affiliate_name": "Affiliate 23",
"data": [
{
"t": "2026-02-10T14:05:00Z",
"p": "-108"
},
{
"t": "2026-02-11T10:00:00Z",
"p": "-110"
}
]
}
}
}V2 Markets
Get line price chart data for a specific market
Returns time-series price data suitable for charting line movement.
GET
/
api
/
v2
/
events
/
{eventID}
/
markets
/
{marketID}
/
history
Get line price chart data for a specific market
curl --request GET \
--url 'https://therundown.io/api/v2/events/{eventID}/markets/{marketID}/history?key='import requests
url = "https://therundown.io/api/v2/events/{eventID}/markets/{marketID}/history?key="
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://therundown.io/api/v2/events/{eventID}/markets/{marketID}/history?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/v2/events/{eventID}/markets/{marketID}/history?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/v2/events/{eventID}/markets/{marketID}/history?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/v2/events/{eventID}/markets/{marketID}/history?key=")
.asString();require 'uri'
require 'net/http'
url = URI("https://therundown.io/api/v2/events/{eventID}/markets/{marketID}/history?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{
"meta": {
"event_id": "09bfa53f8484a63e584398545c035932",
"market_id": 3,
"market_name": "totals"
},
"series": {
"19": {
"affiliate_name": "Affiliate 19",
"data": [
{
"t": "2026-02-10T14:00:00Z",
"p": "-110"
},
{
"t": "2026-02-11T09:30:00Z",
"p": "-112"
},
{
"t": "2026-02-11T22:00:00Z",
"p": "-108"
}
]
},
"23": {
"affiliate_name": "Affiliate 23",
"data": [
{
"t": "2026-02-10T14:05:00Z",
"p": "-108"
},
{
"t": "2026-02-11T10:00:00Z",
"p": "-110"
}
]
}
}
}Authorizations
ApiKeyQueryApiKeyHeader
API key as query parameter
Path Parameters
Canonical V2 event ID from the event_id field returned by event endpoints
Market ID
Query Parameters
Filter by participant ID
Comma-separated sportsbook/affiliate IDs to filter. Common values include DraftKings (19), FanDuel (23), BetMGM (22), Bovada (2), Pinnacle (3).
Filter by line value
⌘I