How prices resolved
curl --request GET \
--url https://api.routeur.app/v1/insights/calibration \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.routeur.app/v1/insights/calibration"
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.routeur.app/v1/insights/calibration', 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.routeur.app/v1/insights/calibration"
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": {
"venue": "all",
"category": "<string>",
"horizon_days": 123,
"markets": 123,
"buckets": [
{
"from_usd": "<string>",
"to_usd": "<string>",
"markets": 123,
"avg_price_usd": "<string>",
"yes_rate": "<string>"
}
],
"refreshed_at": "2023-11-07T05:31:56Z"
}
}{
"error": {
"code": "invalid_parameter",
"message": "Invalid or unsupported query parameter: limit."
}
}{
"error": {
"code": "api_key_required",
"message": "Send an API key in the X-API-Key header or as a Bearer token."
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}Signals
How prices resolved
For settled markets, how often markets priced in each 10-cent band a number of days before close resolved Yes. A well-calibrated market resolves Yes about as often as its price; gaps show where prices ran rich or cheap. Kalshi prices are the midpoint of the best bid and ask, or the last trade; Polymarket prices are the last recorded probability of the day, from archived history.
GET
/
v1
/
insights
/
calibration
How prices resolved
curl --request GET \
--url https://api.routeur.app/v1/insights/calibration \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.routeur.app/v1/insights/calibration"
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.routeur.app/v1/insights/calibration', 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.routeur.app/v1/insights/calibration"
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": {
"venue": "all",
"category": "<string>",
"horizon_days": 123,
"markets": 123,
"buckets": [
{
"from_usd": "<string>",
"to_usd": "<string>",
"markets": 123,
"avg_price_usd": "<string>",
"yes_rate": "<string>"
}
],
"refreshed_at": "2023-11-07T05:31:56Z"
}
}{
"error": {
"code": "invalid_parameter",
"message": "Invalid or unsupported query parameter: limit."
}
}{
"error": {
"code": "api_key_required",
"message": "Send an API key in the X-API-Key header or as a Bearer token."
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}Authorizations
apiKeybearer
Query Parameters
kalshi, polymarket, or all for both venues together.
Available options:
all, kalshi, polymarket A category, or All for every category.
Available options:
All, Sports, Politics, Economics, Crypto, Culture, Tech & Science, Weather, World, Other How many days before close the price is taken.
Available options:
1, 7, 30 Response
Calibration buckets.
Show child attributes
Show child attributes