Search or fetch Kalshi data
curl --request GET \
--url https://api.useblueprints.ai/api/kalshi \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.useblueprints.ai/api/kalshi', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.useblueprints.ai/api/kalshi"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"error": {
"message": "<string>"
},
"message": "<string>"
}{
"error": {
"message": "<string>"
},
"message": "<string>"
}{
"error": {
"message": "<string>"
},
"message": "<string>"
}Market data
Search or fetch Kalshi data
Search supported Kalshi inputs by query or ticker. API keys need the market_data:read scope.
GET
/
api
/
kalshi
Search or fetch Kalshi data
curl --request GET \
--url https://api.useblueprints.ai/api/kalshi \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.useblueprints.ai/api/kalshi', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.useblueprints.ai/api/kalshi"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"error": {
"message": "<string>"
},
"message": "<string>"
}{
"error": {
"message": "<string>"
},
"message": "<string>"
}{
"error": {
"message": "<string>"
},
"message": "<string>"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Text search across open Kalshi markets.
Number of top markets to return.
Required range:
1 <= x <= 50Single Kalshi market lookup by ticker.
Kalshi ticker for price-history lookup.
History interval when ref is provided.
Available options:
1d, 1w, 1m, all Maximum number of search results.
Required range:
1 <= x <= 50Response
Kalshi market search, market detail, or price-history data depending on query parameters.