Catalogue des specials / outrights
curl --request GET \
--url https://api.apinn.io/api/specials/outrights \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.apinn.io/api/specials/outrights"
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/outrights', 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/outrights",
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/outrights"
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/outrights")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.apinn.io/api/specials/outrights")
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[
{
"sport_id": 29,
"league_id": 2627,
"special_id": 1631640230,
"bet_type": "MULTI_WAY_HEAD_TO_HEAD",
"special_name": "UEFA - Champions League Winner",
"starts": "2026-08-27T11:00:00",
"cutoff": "2026-08-27T11:00:00",
"category": "Futures",
"units": null,
"event_id": null,
"period": null,
"runner_home": null,
"runner_away": null,
"contestant_id": 1631655298,
"contestant_name": "AEK Athens",
"timestamp": "2026-07-16T13:15:28"
}
]{
"detail": "Endpoint réservé au plan Sharp (enterprise)",
"your_plan": "starter",
"required_plan": "enterprise"
}API Reference
Catalogue des specials / outrights
Une ligne par marché × contestant (props, futures) avec métadonnées, sans cotes.
GET
/
api
/
specials
/
outrights
Catalogue des specials / outrights
curl --request GET \
--url https://api.apinn.io/api/specials/outrights \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.apinn.io/api/specials/outrights"
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/outrights', 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/outrights",
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/outrights"
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/outrights")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.apinn.io/api/specials/outrights")
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[
{
"sport_id": 29,
"league_id": 2627,
"special_id": 1631640230,
"bet_type": "MULTI_WAY_HEAD_TO_HEAD",
"special_name": "UEFA - Champions League Winner",
"starts": "2026-08-27T11:00:00",
"cutoff": "2026-08-27T11:00:00",
"category": "Futures",
"units": null,
"event_id": null,
"period": null,
"runner_home": null,
"runner_away": null,
"contestant_id": 1631655298,
"contestant_name": "AEK Athens",
"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 du sport. Sport ID (required) — scopes the response to one sport
Identifiant de la ligue. Filter to one competition (league_id)
Libellé du marché special. Case-insensitive substring filter on the market name, e.g. "World Cup"
Réponse
Catalogue
Futures, Player Props, Specials…
null pour les futures de tournoi.