curl --request GET \
--url https://api.apinn.io/api/specials/odds \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.apinn.io/api/specials/odds"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.apinn.io/api/specials/odds', 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.apinn.io/api/specials/odds",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-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://api.apinn.io/api/specials/odds"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-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://api.apinn.io/api/specials/odds")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.apinn.io/api/specials/odds")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body[
{
"event_id": null,
"special_id": 1631640230,
"special_name": "UEFA - Champions League Winner",
"contestant_id": 1631655298,
"contestant_name": "AEK Athens",
"handicap": null,
"odds": 26,
"todds": 28.4,
"period": 0,
"cutoff": "2026-08-27T11:00:00",
"timestamp": "2026-07-16T13:15:28"
}
]{
"detail": "Endpoint réservé au plan Sharp (enterprise)",
"your_plan": "starter",
"required_plan": "enterprise"
}Cotes d'un special
Interrogeable par event_id OU special_id (les futures ont event_id null). full_history=1 pour la timeline.
curl --request GET \
--url https://api.apinn.io/api/specials/odds \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.apinn.io/api/specials/odds"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.apinn.io/api/specials/odds', 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.apinn.io/api/specials/odds",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-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://api.apinn.io/api/specials/odds"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-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://api.apinn.io/api/specials/odds")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.apinn.io/api/specials/odds")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body[
{
"event_id": null,
"special_id": 1631640230,
"special_name": "UEFA - Champions League Winner",
"contestant_id": 1631655298,
"contestant_name": "AEK Athens",
"handicap": null,
"odds": 26,
"todds": 28.4,
"period": 0,
"cutoff": "2026-08-27T11:00:00",
"timestamp": "2026-07-16T13:15:28"
}
]{
"detail": "Endpoint réservé au plan Sharp (enterprise)",
"your_plan": "starter",
"required_plan": "enterprise"
}Autorisations
Paramètres de requête
Identifiant Pinnacle de l'événement. Event ID. Required unless special_id is given (e.g. for event-less outrights from /api/specials/outrights).
Identifiant du prop/special. Filter to a specific special. Use alone for event-less outrights.
1 = timeline complète au lieu du dernier état. true/false acceptés. Toute autre valeur → 422.
0 = latest odds only (default), 1 = full history
Réponse
Cotes du special
True odds (devig).
Mise maximale acceptée sur ce marché. Historisée : tout changement crée un point dans /api/specials/history.
Les cotes justes selon CHACUN des 5 modèles TrueLine (LOG, EM, MPTO, SHIN, OR). La cote juste n'est pas une observation : c'est la sortie d'un modèle de dévig, et les 5 divergent — d'où les 5 servies d'office, au prix d'un seul appel. Les champs todds de tête restent ceux du modèle demandé (?model= > préférence du compte > MPTO). Présent sur l'ouverture (premier tick) et la clôture (dernier tick avant le coup d'envoi) uniquement, jamais sur les ticks intermédiaires.
Show child attributes
Show child attributes