const res = await fetch('https://app.trdrs.co/api/partner/venues/{venueId}/accounts/{accountId}/stages/{stageId}/eligibility', {
headers: { Authorization: `Bearer ${process.env.TRDRS_VENUE_KEY}` },
})
const data = await res.json()curl 'https://app.trdrs.co/api/partner/venues/{venueId}/accounts/{accountId}/stages/{stageId}/eligibility' \
-H "Authorization: Bearer $TRDRS_VENUE_KEY"import requests
url = "https://app.trdrs.co/api/partner/venues/{venueId}/accounts/{accountId}/stages/{stageId}/eligibility"
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/partner/venues/{venueId}/accounts/{accountId}/stages/{stageId}/eligibility",
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/partner/venues/{venueId}/accounts/{accountId}/stages/{stageId}/eligibility"
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/partner/venues/{venueId}/accounts/{accountId}/stages/{stageId}/eligibility")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.trdrs.co/api/partner/venues/{venueId}/accounts/{accountId}/stages/{stageId}/eligibility")
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{
"eligibility": {
"stageId": "evaluation-1",
"policyId": "00000000-0000-0000-0000-000000000001",
"activationRevision": 1,
"cycleId": "cycle:2026-09-14T12:00:00.000Z",
"snapshotRevision": 1,
"facts": {
"netTradingPnl": "2500",
"tradingDays": 7,
"breaches": [],
"observedRules": [
"stop_out"
],
"flat": true,
"workingOrders": 0,
"unresolvedCommands": 0,
"complete": true,
"accountActive": true,
"halted": true
},
"verdict": {
"eligible": true,
"reasons": [],
"evaluated": [
"history_complete",
"account_active",
"net_trading_profit",
"minimum_trading_days",
"flat",
"no_working_orders",
"no_unresolved_commands",
"disqualifying_rules_observed",
"disqualifying_breaches",
"venue_pause",
"successor_configuration"
]
}
}
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}Read an account's stage eligibility
Private preview, disabled unless VENUE_CONFIGURATION_ENABLED is enabled and the vault is configured. This branch has not enabled these routes in the public sandbox. Existing trdrs_sk partner/tenant keys do not authorize these routes. Requires venue:read, and the account must belong to this venue. The decision is MEASURED here from the account’s own books against the stage version currently in force - net trading P&L excluding allocations and balance operations and after all fill fees, trading days counted from when each fill actually traded, flatness, held collateral, recorded stop-outs and any unsettled command. Nothing about it is supplied by the caller. A stage the venue has not activated answers 404 rather than a default target, and an account with no opening allocation has no cycle to advance out of. reasons lists every failing condition at once rather than one per attempt.
const res = await fetch('https://app.trdrs.co/api/partner/venues/{venueId}/accounts/{accountId}/stages/{stageId}/eligibility', {
headers: { Authorization: `Bearer ${process.env.TRDRS_VENUE_KEY}` },
})
const data = await res.json()curl 'https://app.trdrs.co/api/partner/venues/{venueId}/accounts/{accountId}/stages/{stageId}/eligibility' \
-H "Authorization: Bearer $TRDRS_VENUE_KEY"import requests
url = "https://app.trdrs.co/api/partner/venues/{venueId}/accounts/{accountId}/stages/{stageId}/eligibility"
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/partner/venues/{venueId}/accounts/{accountId}/stages/{stageId}/eligibility",
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/partner/venues/{venueId}/accounts/{accountId}/stages/{stageId}/eligibility"
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/partner/venues/{venueId}/accounts/{accountId}/stages/{stageId}/eligibility")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.trdrs.co/api/partner/venues/{venueId}/accounts/{accountId}/stages/{stageId}/eligibility")
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{
"eligibility": {
"stageId": "evaluation-1",
"policyId": "00000000-0000-0000-0000-000000000001",
"activationRevision": 1,
"cycleId": "cycle:2026-09-14T12:00:00.000Z",
"snapshotRevision": 1,
"facts": {
"netTradingPnl": "2500",
"tradingDays": 7,
"breaches": [],
"observedRules": [
"stop_out"
],
"flat": true,
"workingOrders": 0,
"unresolvedCommands": 0,
"complete": true,
"accountActive": true,
"halted": true
},
"verdict": {
"eligible": true,
"reasons": [],
"evaluated": [
"history_complete",
"account_active",
"net_trading_profit",
"minimum_trading_days",
"flat",
"no_working_orders",
"no_unresolved_commands",
"disqualifying_rules_observed",
"disqualifying_breaches",
"venue_pause",
"successor_configuration"
]
}
}
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}Authorizations
Private-preview venue operator key (trdrs_vk_sandbox_… or trdrs_vk_production_…). Bound to one venue/environment and explicit scopes. Issued by a verified owner session; accepted only on documented /api/partner/venues/{venueId} routes. Existing trdrs_sk keys are not interchangeable. Never grants trader, login or key-management authority.
Response
Scoped result. Cache-Control: no-store.
Show child attributes
Show child attributes