List recent analyses
curl --request GET \
--url https://api.rekko.ai/v1/analysesimport requests
url = "https://api.rekko.ai/v1/analyses"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.rekko.ai/v1/analyses', 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.rekko.ai/v1/analyses",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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.rekko.ai/v1/analyses"
req, _ := http.NewRequest("GET", url, nil)
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.rekko.ai/v1/analyses")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.rekko.ai/v1/analyses")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body[
{
"analyzed_at": "2026-03-21T12:00:00Z",
"confidence": 0.82,
"market_id": "KXFED-26MAR19",
"platform": "kalshi",
"probability": 0.71,
"recommendation": "BUY_YES",
"title": "Will the Fed cut rates at the March 2026 meeting?"
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Insights
List Analyses
List recent analysis summaries, keyed by market.
GET
/
v1
/
analyses
List recent analyses
curl --request GET \
--url https://api.rekko.ai/v1/analysesimport requests
url = "https://api.rekko.ai/v1/analyses"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.rekko.ai/v1/analyses', 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.rekko.ai/v1/analyses",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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.rekko.ai/v1/analyses"
req, _ := http.NewRequest("GET", url, nil)
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.rekko.ai/v1/analyses")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.rekko.ai/v1/analyses")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body[
{
"analyzed_at": "2026-03-21T12:00:00Z",
"confidence": 0.82,
"market_id": "KXFED-26MAR19",
"platform": "kalshi",
"probability": 0.71,
"recommendation": "BUY_YES",
"title": "Will the Fed cut rates at the March 2026 meeting?"
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Query Parameters
Maximum analyses to return
Required range:
1 <= x <= 50Response
Successful Response
kalshi, polymarket, robinhood, or coinbase
Platform-specific market identifier
Market question
Estimated probability
Required range:
0 <= x <= 1Confidence level
Required range:
0 <= x <= 1BUY_YES, BUY_NO, or NO_TRADE
When analyzed
Data freshness: fresh (<24h), stale (24-72h), expired (>72h)
Available options:
fresh, stale, expired Whether this was a full 4-stage or light 2-call analysis
Available options:
full, light