curl --request GET \
--url https://api.rekko.ai/v1/markets/{platform}/{market_id}/resolutionimport requests
url = "https://api.rekko.ai/v1/markets/{platform}/{market_id}/resolution"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.rekko.ai/v1/markets/{platform}/{market_id}/resolution', 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/markets/{platform}/{market_id}/resolution",
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/markets/{platform}/{market_id}/resolution"
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/markets/{platform}/{market_id}/resolution")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.rekko.ai/v1/markets/{platform}/{market_id}/resolution")
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{
"close_date": "2026-03-19T14:00:00Z",
"expiration_date": "2026-03-19T20:00:00Z",
"generated_at": "2026-03-21T14:30:00Z",
"hours_to_expiration": 42.5,
"key_dates": [
{
"date": "2026-03-19T14:00:00Z",
"impact": "high",
"label": "FOMC Rate Decision announcement"
},
{
"date": "2026-03-19T14:30:00Z",
"impact": "medium",
"label": "Fed Chair press conference"
}
],
"market_id": "KXFED-26MAR19",
"platform": "kalshi",
"recurring_schedule": "Fed Rate Decision",
"resolution_mechanism": "scheduled_data_release",
"rules_summary": "Resolves YES if the Federal Reserve announces a target rate decrease at the March 2026 FOMC meeting.",
"status": "active",
"theta_estimate": 0.3,
"time_urgency": "high",
"title": "Will the Fed cut rates at the March 2026 meeting?"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Resolution Intelligence
Resolution timing, mechanism, and time-value analysis.
curl --request GET \
--url https://api.rekko.ai/v1/markets/{platform}/{market_id}/resolutionimport requests
url = "https://api.rekko.ai/v1/markets/{platform}/{market_id}/resolution"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.rekko.ai/v1/markets/{platform}/{market_id}/resolution', 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/markets/{platform}/{market_id}/resolution",
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/markets/{platform}/{market_id}/resolution"
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/markets/{platform}/{market_id}/resolution")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.rekko.ai/v1/markets/{platform}/{market_id}/resolution")
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{
"close_date": "2026-03-19T14:00:00Z",
"expiration_date": "2026-03-19T20:00:00Z",
"generated_at": "2026-03-21T14:30:00Z",
"hours_to_expiration": 42.5,
"key_dates": [
{
"date": "2026-03-19T14:00:00Z",
"impact": "high",
"label": "FOMC Rate Decision announcement"
},
{
"date": "2026-03-19T14:30:00Z",
"impact": "medium",
"label": "Fed Chair press conference"
}
],
"market_id": "KXFED-26MAR19",
"platform": "kalshi",
"recurring_schedule": "Fed Rate Decision",
"resolution_mechanism": "scheduled_data_release",
"rules_summary": "Resolves YES if the Federal Reserve announces a target rate decrease at the March 2026 FOMC meeting.",
"status": "active",
"theta_estimate": 0.3,
"time_urgency": "high",
"title": "Will the Fed cut rates at the March 2026 meeting?"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Path Parameters
"kalshi"
"KXAGICO-COMP-28Q1"
Response
Successful Response
Resolution timing, mechanism, and time-value analysis.
Market identifier
kalshi, polymarket, robinhood, or coinbase
Market title
Market status: 'active', 'closed', 'determined', 'finalized'
Latest expiration date
When market stops accepting orders
Hours until expiration
x >= 0How this market resolves: 'scheduled_data_release', 'event_outcome', 'date_based', 'continuous_monitoring', 'unknown'
Resolution rules from the platform
Time urgency: 'critical' (<24h), 'high' (1-3d), 'medium' (3-14d), 'low' (>14d)
Estimated daily time decay in cents
Significant upcoming dates
Show child attributes
Show child attributes
Matching RecurringSchedule name if known
When this intelligence was generated