Skip to main content
GET
/
v1
/
analyses
List recent analyses
curl --request GET \
  --url https://api.rekko.ai/v1/analyses
import 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

limit
integer
default:20

Maximum analyses to return

Required range: 1 <= x <= 50

Response

Successful Response

platform
string
required

kalshi, polymarket, robinhood, or coinbase

market_id
string
required

Platform-specific market identifier

title
string
required

Market question

probability
number
required

Estimated probability

Required range: 0 <= x <= 1
confidence
number
required

Confidence level

Required range: 0 <= x <= 1
recommendation
string
required

BUY_YES, BUY_NO, or NO_TRADE

analyzed_at
string<date-time>
required

When analyzed

freshness
enum<string> | null

Data freshness: fresh (<24h), stale (24-72h), expired (>72h)

Available options:
fresh,
stale,
expired
analysis_type
enum<string> | null

Whether this was a full 4-stage or light 2-call analysis

Available options:
full,
light