Get opening prices for an event's markets
curl --request GET \
--url 'https://therundown.io/api/v2/events/{eventID}/markets/opening?key='import requests
url = "https://therundown.io/api/v2/events/{eventID}/markets/opening?key="
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://therundown.io/api/v2/events/{eventID}/markets/opening?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/opening?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/opening?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/opening?key=")
.asString();require 'uri'
require 'net/http'
url = URI("https://therundown.io/api/v2/events/{eventID}/markets/opening?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",
"count": 2
},
"markets": {
"1": {
"market_id": 1,
"market_name": "moneyline",
"lines": {
"45001:": {
"participant_id": 11,
"participant_type": "TYPE_TEAM",
"participant_name": "Atlanta Hawks",
"prices": {
"19": {
"price": "-120",
"timestamp": "2026-02-10T14:00:00Z"
},
"23": {
"price": "-115",
"timestamp": "2026-02-10T14:05:00Z"
}
}
}
}
}
}
}V2 Markets
Get opening prices for an event's markets
GET
/
api
/
v2
/
events
/
{eventID}
/
markets
/
opening
Get opening prices for an event's markets
curl --request GET \
--url 'https://therundown.io/api/v2/events/{eventID}/markets/opening?key='import requests
url = "https://therundown.io/api/v2/events/{eventID}/markets/opening?key="
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://therundown.io/api/v2/events/{eventID}/markets/opening?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/opening?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/opening?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/opening?key=")
.asString();require 'uri'
require 'net/http'
url = URI("https://therundown.io/api/v2/events/{eventID}/markets/opening?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",
"count": 2
},
"markets": {
"1": {
"market_id": 1,
"market_name": "moneyline",
"lines": {
"45001:": {
"participant_id": 11,
"participant_type": "TYPE_TEAM",
"participant_name": "Atlanta Hawks",
"prices": {
"19": {
"price": "-120",
"timestamp": "2026-02-10T14:00:00Z"
},
"23": {
"price": "-115",
"timestamp": "2026-02-10T14:05:00Z"
}
}
}
}
}
}
}Authorizations
ApiKeyQueryApiKeyHeader
API key as query parameter
Path Parameters
Canonical V2 event ID from the event_id field returned by event endpoints
Query Parameters
Comma-separated market IDs
Comma-separated sportsbook/affiliate IDs to filter. Common values include DraftKings (19), FanDuel (23), BetMGM (22), Bovada (2), Pinnacle (3).
⌘I