TypeScript
const res = await fetch('https://app.trdrs.co/api/calendar', {
headers: { Authorization: `Bearer ${process.env.TRDRS_API_KEY}` },
})
const data = await res.json()curl 'https://app.trdrs.co/api/calendar' \
-H "Authorization: Bearer $TRDRS_API_KEY"import requests
url = "https://app.trdrs.co/api/calendar"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.trdrs.co/api/calendar",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://app.trdrs.co/api/calendar"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.trdrs.co/api/calendar")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.trdrs.co/api/calendar")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"events": [
{
"id": "cal_9f2e7b4a",
"source": "fxstreet",
"title": "Core PCE Price Index (YoY)",
"country": "US",
"category": "inflation",
"scheduledAt": "2026-08-28T12:30:00.000Z",
"timeConfidence": "exact",
"impact": "high",
"forecast": "2.6%",
"previous": "2.7%",
"actual": null,
"sourceUrl": "https://www.fxstreet.com/economic-calendar/event/example"
},
{
"id": "cal_4c8d1a6e",
"source": "fxstreet",
"title": "Fed Beige Book",
"country": "US",
"category": "central-bank",
"scheduledAt": "2026-08-26T00:00:00.000Z",
"timeConfidence": "date_only",
"impact": "medium",
"forecast": null,
"previous": null,
"actual": null,
"sourceUrl": null
}
]
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}News
List calendar events
Returns economic-calendar events in chronological order. Without a range: 12 hours back through 7 days ahead; an explicit from/to window is capped at 90 days. impact accepts a CSV of tiers (high,medium). timeConfidence: date_only means the source published no reliable time-of-day — render the time as TBA, never as midnight. forecast/previous/actual are display strings; actual stays null until the release prints, and /api/calendar/stream’s calendar_update nudge says when to refetch.
GET
/
api
/
calendar
TypeScript
const res = await fetch('https://app.trdrs.co/api/calendar', {
headers: { Authorization: `Bearer ${process.env.TRDRS_API_KEY}` },
})
const data = await res.json()curl 'https://app.trdrs.co/api/calendar' \
-H "Authorization: Bearer $TRDRS_API_KEY"import requests
url = "https://app.trdrs.co/api/calendar"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.trdrs.co/api/calendar",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://app.trdrs.co/api/calendar"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.trdrs.co/api/calendar")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.trdrs.co/api/calendar")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"events": [
{
"id": "cal_9f2e7b4a",
"source": "fxstreet",
"title": "Core PCE Price Index (YoY)",
"country": "US",
"category": "inflation",
"scheduledAt": "2026-08-28T12:30:00.000Z",
"timeConfidence": "exact",
"impact": "high",
"forecast": "2.6%",
"previous": "2.7%",
"actual": null,
"sourceUrl": "https://www.fxstreet.com/economic-calendar/event/example"
},
{
"id": "cal_4c8d1a6e",
"source": "fxstreet",
"title": "Fed Beige Book",
"country": "US",
"category": "central-bank",
"scheduledAt": "2026-08-26T00:00:00.000Z",
"timeConfidence": "date_only",
"impact": "medium",
"forecast": null,
"previous": null,
"actual": null,
"sourceUrl": null
}
]
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}Authorizations
Your firm’s API key (the API calls this the tenant key; trdrs_sk_…), server-to-server only.
Query Parameters
ISO timestamp, inclusive
ISO timestamp; the window caps at 90 days
CSV of high, medium, low
ISO country code
Response
CalendarResponse
Chronological
Show child attributes
Show child attributes