const res = await fetch('https://app.trdrs.co/api/partner/venues/{venueId}/stages/policies', {
method: 'POST',
headers: {
'content-type': 'application/json',
Authorization: `Bearer ${process.env.TRDRS_VENUE_KEY}`,
"Idempotency-Key": "example-request-1",
},
body: JSON.stringify({
"name": "Evaluation stage one",
"policy": {
"stageId": "evaluation-1",
"profitTarget": "2000",
"minimumTradingDays": 5,
"session": {
"timeZone": "America/Chicago",
"rolloverHour": 17
},
"disqualifying": [
"daily_loss",
"trailing_drawdown"
],
"nextGroupId": "funded"
}
}),
})
const data = await res.json()curl -X POST 'https://app.trdrs.co/api/partner/venues/{venueId}/stages/policies' \
-H "Authorization: Bearer $TRDRS_VENUE_KEY" \
-H 'Idempotency-Key: example-request-1' \
-H 'content-type: application/json' \
-d '{"name":"Evaluation stage one","policy":{"stageId":"evaluation-1","profitTarget":"2000","minimumTradingDays":5,"session":{"timeZone":"America/Chicago","rolloverHour":17},"disqualifying":["daily_loss","trailing_drawdown"],"nextGroupId":"funded"}}'import requests
url = "https://app.trdrs.co/api/partner/venues/{venueId}/stages/policies"
payload = {
"name": "Evaluation stage one",
"policy": {
"stageId": "evaluation-1",
"profitTarget": "2000",
"minimumTradingDays": 5,
"session": {
"timeZone": "America/Chicago",
"rolloverHour": 17
},
"disqualifying": ["daily_loss", "trailing_drawdown"],
"nextGroupId": "funded"
}
}
headers = {
"Idempotency-Key": "<idempotency-key>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.trdrs.co/api/partner/venues/{venueId}/stages/policies",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => 'Evaluation stage one',
'policy' => [
'stageId' => 'evaluation-1',
'profitTarget' => '2000',
'minimumTradingDays' => 5,
'session' => [
'timeZone' => 'America/Chicago',
'rolloverHour' => 17
],
'disqualifying' => [
'daily_loss',
'trailing_drawdown'
],
'nextGroupId' => 'funded'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json",
"Idempotency-Key: <idempotency-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://app.trdrs.co/api/partner/venues/{venueId}/stages/policies"
payload := strings.NewReader("{\n \"name\": \"Evaluation stage one\",\n \"policy\": {\n \"stageId\": \"evaluation-1\",\n \"profitTarget\": \"2000\",\n \"minimumTradingDays\": 5,\n \"session\": {\n \"timeZone\": \"America/Chicago\",\n \"rolloverHour\": 17\n },\n \"disqualifying\": [\n \"daily_loss\",\n \"trailing_drawdown\"\n ],\n \"nextGroupId\": \"funded\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Idempotency-Key", "<idempotency-key>")
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://app.trdrs.co/api/partner/venues/{venueId}/stages/policies")
.header("Idempotency-Key", "<idempotency-key>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"Evaluation stage one\",\n \"policy\": {\n \"stageId\": \"evaluation-1\",\n \"profitTarget\": \"2000\",\n \"minimumTradingDays\": 5,\n \"session\": {\n \"timeZone\": \"America/Chicago\",\n \"rolloverHour\": 17\n },\n \"disqualifying\": [\n \"daily_loss\",\n \"trailing_drawdown\"\n ],\n \"nextGroupId\": \"funded\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.trdrs.co/api/partner/venues/{venueId}/stages/policies")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Idempotency-Key"] = '<idempotency-key>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"Evaluation stage one\",\n \"policy\": {\n \"stageId\": \"evaluation-1\",\n \"profitTarget\": \"2000\",\n \"minimumTradingDays\": 5,\n \"session\": {\n \"timeZone\": \"America/Chicago\",\n \"rolloverHour\": 17\n },\n \"disqualifying\": [\n \"daily_loss\",\n \"trailing_drawdown\"\n ],\n \"nextGroupId\": \"funded\"\n }\n}"
response = http.request(request)
puts response.read_body{
"policy": {
"id": "00000000-0000-0000-0000-000000000001",
"venueId": "00000000-0000-0000-0000-000000000001",
"environment": "sandbox",
"stageId": "evaluation-1",
"name": "Evaluation stage one",
"policy": {
"stageId": "evaluation-1",
"profitTarget": "2000",
"minimumTradingDays": 5,
"session": {
"timeZone": "America/Chicago",
"rolloverHour": 17
},
"disqualifying": [
"daily_loss",
"trailing_drawdown"
],
"nextGroupId": "funded"
},
"contentHash": "dddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd",
"createdAt": "2026-09-14T12:00:00.000Z",
"inForce": false
}
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}Publish a stage policy
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 stage:advance. Publishing applies nothing; activate it separately. An identical retry recovers the same version and a changed body conflicts - so the same key with an easier target is refused rather than silently reporting success. A session timezone the runtime cannot resolve is refused here rather than at the first trading-day boundary, where it would file every fill under the wrong day.
const res = await fetch('https://app.trdrs.co/api/partner/venues/{venueId}/stages/policies', {
method: 'POST',
headers: {
'content-type': 'application/json',
Authorization: `Bearer ${process.env.TRDRS_VENUE_KEY}`,
"Idempotency-Key": "example-request-1",
},
body: JSON.stringify({
"name": "Evaluation stage one",
"policy": {
"stageId": "evaluation-1",
"profitTarget": "2000",
"minimumTradingDays": 5,
"session": {
"timeZone": "America/Chicago",
"rolloverHour": 17
},
"disqualifying": [
"daily_loss",
"trailing_drawdown"
],
"nextGroupId": "funded"
}
}),
})
const data = await res.json()curl -X POST 'https://app.trdrs.co/api/partner/venues/{venueId}/stages/policies' \
-H "Authorization: Bearer $TRDRS_VENUE_KEY" \
-H 'Idempotency-Key: example-request-1' \
-H 'content-type: application/json' \
-d '{"name":"Evaluation stage one","policy":{"stageId":"evaluation-1","profitTarget":"2000","minimumTradingDays":5,"session":{"timeZone":"America/Chicago","rolloverHour":17},"disqualifying":["daily_loss","trailing_drawdown"],"nextGroupId":"funded"}}'import requests
url = "https://app.trdrs.co/api/partner/venues/{venueId}/stages/policies"
payload = {
"name": "Evaluation stage one",
"policy": {
"stageId": "evaluation-1",
"profitTarget": "2000",
"minimumTradingDays": 5,
"session": {
"timeZone": "America/Chicago",
"rolloverHour": 17
},
"disqualifying": ["daily_loss", "trailing_drawdown"],
"nextGroupId": "funded"
}
}
headers = {
"Idempotency-Key": "<idempotency-key>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.trdrs.co/api/partner/venues/{venueId}/stages/policies",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => 'Evaluation stage one',
'policy' => [
'stageId' => 'evaluation-1',
'profitTarget' => '2000',
'minimumTradingDays' => 5,
'session' => [
'timeZone' => 'America/Chicago',
'rolloverHour' => 17
],
'disqualifying' => [
'daily_loss',
'trailing_drawdown'
],
'nextGroupId' => 'funded'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json",
"Idempotency-Key: <idempotency-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://app.trdrs.co/api/partner/venues/{venueId}/stages/policies"
payload := strings.NewReader("{\n \"name\": \"Evaluation stage one\",\n \"policy\": {\n \"stageId\": \"evaluation-1\",\n \"profitTarget\": \"2000\",\n \"minimumTradingDays\": 5,\n \"session\": {\n \"timeZone\": \"America/Chicago\",\n \"rolloverHour\": 17\n },\n \"disqualifying\": [\n \"daily_loss\",\n \"trailing_drawdown\"\n ],\n \"nextGroupId\": \"funded\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Idempotency-Key", "<idempotency-key>")
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://app.trdrs.co/api/partner/venues/{venueId}/stages/policies")
.header("Idempotency-Key", "<idempotency-key>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"Evaluation stage one\",\n \"policy\": {\n \"stageId\": \"evaluation-1\",\n \"profitTarget\": \"2000\",\n \"minimumTradingDays\": 5,\n \"session\": {\n \"timeZone\": \"America/Chicago\",\n \"rolloverHour\": 17\n },\n \"disqualifying\": [\n \"daily_loss\",\n \"trailing_drawdown\"\n ],\n \"nextGroupId\": \"funded\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.trdrs.co/api/partner/venues/{venueId}/stages/policies")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Idempotency-Key"] = '<idempotency-key>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"Evaluation stage one\",\n \"policy\": {\n \"stageId\": \"evaluation-1\",\n \"profitTarget\": \"2000\",\n \"minimumTradingDays\": 5,\n \"session\": {\n \"timeZone\": \"America/Chicago\",\n \"rolloverHour\": 17\n },\n \"disqualifying\": [\n \"daily_loss\",\n \"trailing_drawdown\"\n ],\n \"nextGroupId\": \"funded\"\n }\n}"
response = http.request(request)
puts response.read_body{
"policy": {
"id": "00000000-0000-0000-0000-000000000001",
"venueId": "00000000-0000-0000-0000-000000000001",
"environment": "sandbox",
"stageId": "evaluation-1",
"name": "Evaluation stage one",
"policy": {
"stageId": "evaluation-1",
"profitTarget": "2000",
"minimumTradingDays": 5,
"session": {
"timeZone": "America/Chicago",
"rolloverHour": 17
},
"disqualifying": [
"daily_loss",
"trailing_drawdown"
],
"nextGroupId": "funded"
},
"contentHash": "dddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd",
"createdAt": "2026-09-14T12:00:00.000Z",
"inForce": false
}
}{
"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.
Headers
1 - 128Path Parameters
Body
What an account must achieve to advance. It is stored rather than supplied with the advancement request: a target that arrives with the question can be made easier by whoever asks it. disqualifying names the recorded risk breaches that void a cycle, and omitting one does not weaken the venue's own risk configuration. nextGroupId null means the venue has not stated where a passing account lands, and an advance is refused rather than defaulted.
Show child attributes
Show child attributes
Response
Scoped result. Cache-Control: no-store.
Show child attributes
Show child attributes