curl -X GET "https://api.novig.com/nbx/v2/emm/events?league=NFL&type=Game&status=OPEN_PREGAME&limit=100" \
-H "Authorization: Bearer $TOKEN"import requests
url = "https://api.novig.com/nbx/v2/emm/events"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.novig.com/nbx/v2/emm/events', 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.novig.com/nbx/v2/emm/events",
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://api.novig.com/nbx/v2/emm/events"
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://api.novig.com/nbx/v2/emm/events")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.novig.com/nbx/v2/emm/events")
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[
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"type": "Game",
"status": "OPEN_PREGAME",
"description": "Kansas City Chiefs @ Buffalo Bills",
"league": "NFL",
"scheduledStart": "2025-01-26T18:30:00.000Z",
"marketIds": [
"market-uuid-1",
"market-uuid-2",
"market-uuid-3"
],
"game": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"league": "NFL",
"status": "SCHEDULED",
"scheduledStart": "2023-12-10T20:00:00Z",
"homeTeam": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "Kansas City Chiefs",
"shortName": "Chiefs",
"symbol": "KC",
"mascot": "Chiefs"
},
"awayTeam": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "Kansas City Chiefs",
"shortName": "Chiefs",
"symbol": "KC",
"mascot": "Chiefs"
}
}
}
]Get events
Fetch a list of events with optional filters. Results are limited to a maximum of 100 items by default.
Filter on status=OPEN_INGAME for the set of live events — the condition under which taker fees are charged. Use this as your liveness snapshot on startup and after a WebSocket reconnect, then track the EVENT_GOLIVE / EVENT_UNLIVE ticks on the lifecycle channel for subsequent transitions.
Rate limit: 512 requests per second.
curl -X GET "https://api.novig.com/nbx/v2/emm/events?league=NFL&type=Game&status=OPEN_PREGAME&limit=100" \
-H "Authorization: Bearer $TOKEN"import requests
url = "https://api.novig.com/nbx/v2/emm/events"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.novig.com/nbx/v2/emm/events', 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.novig.com/nbx/v2/emm/events",
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://api.novig.com/nbx/v2/emm/events"
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://api.novig.com/nbx/v2/emm/events")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.novig.com/nbx/v2/emm/events")
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[
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"type": "Game",
"status": "OPEN_PREGAME",
"description": "Kansas City Chiefs @ Buffalo Bills",
"league": "NFL",
"scheduledStart": "2025-01-26T18:30:00.000Z",
"marketIds": [
"market-uuid-1",
"market-uuid-2",
"market-uuid-3"
],
"game": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"league": "NFL",
"status": "SCHEDULED",
"scheduledStart": "2023-12-10T20:00:00Z",
"homeTeam": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "Kansas City Chiefs",
"shortName": "Chiefs",
"symbol": "KC",
"mascot": "Chiefs"
},
"awayTeam": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "Kansas City Chiefs",
"shortName": "Chiefs",
"symbol": "KC",
"mascot": "Chiefs"
}
}
}
]Query Parameters
Filter by league (e.g., NFL, NBA, MLB)
Filter by event type (e.g., Game)
Filter by event status (e.g., OPEN_PREGAME, OPEN_INGAME). OPEN_INGAME means the event is live
INITIAL, OPEN_PREGAME, CLOSED_PREGAME, OPEN_INGAME, FINAL, DELAYED, CANCELED Number of results to return (max 100, default 100)
x <= 100Pagination offset (default 0)
Response
Successfully retrieved events.
The unique identifier of the event
"550e8400-e29b-41d4-a716-446655440000"
The type of event
"Game"
The current status of the event. OPEN_INGAME means the event is live — taker fees are charged only on fills matched while the event is live, and a live event's resting orders were cancelled when it went live
INITIAL, OPEN_PREGAME, CLOSED_PREGAME, OPEN_INGAME, FINAL, DELAYED, CANCELED "OPEN_PREGAME"
A human-readable description of the event
"Kansas City Chiefs @ Buffalo Bills"
The league this event belongs to
"NFL"
The scheduled start time of the event
"2025-01-26T18:30:00.000Z"
Array of market IDs associated with this event
[
"market-uuid-1",
"market-uuid-2",
"market-uuid-3"
]
The game details associated with the event
Show child attributes
Show child attributes