Get future by ID
curl --request GET \
--url https://api-v2.polyrouter.io/futures/{id} \
--header 'X-API-Key: <api-key>'import requests
url = "https://api-v2.polyrouter.io/futures/{id}"
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-v2.polyrouter.io/futures/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api-v2.polyrouter.io/futures/{id}"
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))
}{
"data": {
"id": "nfl_superbowl_2025",
"future_name": "Super Bowl LIX Winner",
"league": "nfl",
"season": 2024,
"future_type": "championship",
"category": "team",
"markets": [
{
"platform": "polymarket",
"market_id": "pm_sb_2025",
"outcomes": [
{
"outcome_name": "Kansas City Chiefs",
"odds": {
"american": "+150",
"decimal": 2.5,
"implied_probability": 0.4
},
"team_polyrouter_id": "nfl_kc",
"volume_24h": 25000,
"last_trade_price": 0.15,
"metadata": {}
}
]
}
],
"metadata": {
"deadline": "<string>",
"description": "<string>",
"eligible_teams": [
"<string>"
]
}
},
"meta": {
"platforms_queried": [
"polymarket",
"kalshi",
"prophetx"
],
"request_time": 250,
"data_freshness": "2025-01-01T00:00:00.000Z",
"platform_errors": {}
}
}{
"error": {
"code": "NOT_FOUND",
"message": "Resource not found",
"timestamp": "2025-01-01T00:00:00.000Z"
}
}{
"error": {
"code": "NOT_FOUND",
"message": "Resource not found",
"timestamp": "2025-01-01T00:00:00.000Z"
}
}Sports
Get future by ID
Fetch a single future with live market data from all platforms
GET
/
futures
/
{id}
Get future by ID
curl --request GET \
--url https://api-v2.polyrouter.io/futures/{id} \
--header 'X-API-Key: <api-key>'import requests
url = "https://api-v2.polyrouter.io/futures/{id}"
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-v2.polyrouter.io/futures/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api-v2.polyrouter.io/futures/{id}"
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))
}{
"data": {
"id": "nfl_superbowl_2025",
"future_name": "Super Bowl LIX Winner",
"league": "nfl",
"season": 2024,
"future_type": "championship",
"category": "team",
"markets": [
{
"platform": "polymarket",
"market_id": "pm_sb_2025",
"outcomes": [
{
"outcome_name": "Kansas City Chiefs",
"odds": {
"american": "+150",
"decimal": 2.5,
"implied_probability": 0.4
},
"team_polyrouter_id": "nfl_kc",
"volume_24h": 25000,
"last_trade_price": 0.15,
"metadata": {}
}
]
}
],
"metadata": {
"deadline": "<string>",
"description": "<string>",
"eligible_teams": [
"<string>"
]
}
},
"meta": {
"platforms_queried": [
"polymarket",
"kalshi",
"prophetx"
],
"request_time": 250,
"data_freshness": "2025-01-01T00:00:00.000Z",
"platform_errors": {}
}
}{
"error": {
"code": "NOT_FOUND",
"message": "Resource not found",
"timestamp": "2025-01-01T00:00:00.000Z"
}
}{
"error": {
"code": "NOT_FOUND",
"message": "Resource not found",
"timestamp": "2025-01-01T00:00:00.000Z"
}
}⌘I

