const res = await fetch('https://app.trdrs.co/api/partner/venues/{venueId}/conditions/profiles', {
method: 'POST',
headers: {
'content-type': 'application/json',
Authorization: `Bearer ${process.env.TRDRS_VENUE_KEY}`,
"Idempotency-Key": "example-request-1",
},
body: JSON.stringify({
"name": "Standard",
"profile": {
"margin": {
"kind": "fixedPerUnit",
"initial": "1000",
"maintenance": "500",
"currency": "USD"
},
"commission": {
"kind": "perUnit",
"amount": "2.50",
"currency": "USD",
"orderMinimum": null
},
"markup": {
"buyMarkupTicks": 0,
"sellMarkupTicks": 0
},
"financing": {
"kind": "none"
},
"risk": {
"maxOrderQuantity": "10",
"maxPositionQuantity": null,
"maxPositionNotional": null,
"instrumentAllowlist": null,
"dailyLossLimit": null,
"weeklyLossLimit": null,
"entryHalted": false,
"stopOutEquityRatio": null
}
}
}),
})
const data = await res.json()curl -X POST 'https://app.trdrs.co/api/partner/venues/{venueId}/conditions/profiles' \
-H "Authorization: Bearer $TRDRS_VENUE_KEY" \
-H 'Idempotency-Key: example-request-1' \
-H 'content-type: application/json' \
-d '{"name":"Standard","profile":{"margin":{"kind":"fixedPerUnit","initial":"1000","maintenance":"500","currency":"USD"},"commission":{"kind":"perUnit","amount":"2.50","currency":"USD","orderMinimum":null},"markup":{"buyMarkupTicks":0,"sellMarkupTicks":0},"financing":{"kind":"none"},"risk":{"maxOrderQuantity":"10","maxPositionQuantity":null,"maxPositionNotional":null,"instrumentAllowlist":null,"dailyLossLimit":null,"weeklyLossLimit":null,"entryHalted":false,"stopOutEquityRatio":null}}}'import requests
url = "https://app.trdrs.co/api/partner/venues/{venueId}/conditions/profiles"
payload = {
"name": "Standard",
"profile": {
"margin": {
"kind": "fixedPerUnit",
"initial": "1000",
"maintenance": "500",
"currency": "USD"
},
"commission": {
"kind": "perUnit",
"amount": "2.50",
"currency": "USD",
"orderMinimum": None
},
"markup": {
"buyMarkupTicks": 0,
"sellMarkupTicks": 0
},
"financing": { "kind": "none" },
"risk": {
"maxOrderQuantity": "10",
"maxPositionQuantity": None,
"maxPositionNotional": None,
"instrumentAllowlist": None,
"dailyLossLimit": None,
"weeklyLossLimit": None,
"entryHalted": False,
"stopOutEquityRatio": None
}
}
}
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}/conditions/profiles",
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' => 'Standard',
'profile' => [
'margin' => [
'kind' => 'fixedPerUnit',
'initial' => '1000',
'maintenance' => '500',
'currency' => 'USD'
],
'commission' => [
'kind' => 'perUnit',
'amount' => '2.50',
'currency' => 'USD',
'orderMinimum' => null
],
'markup' => [
'buyMarkupTicks' => 0,
'sellMarkupTicks' => 0
],
'financing' => [
'kind' => 'none'
],
'risk' => [
'maxOrderQuantity' => '10',
'maxPositionQuantity' => null,
'maxPositionNotional' => null,
'instrumentAllowlist' => null,
'dailyLossLimit' => null,
'weeklyLossLimit' => null,
'entryHalted' => false,
'stopOutEquityRatio' => null
]
]
]),
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}/conditions/profiles"
payload := strings.NewReader("{\n \"name\": \"Standard\",\n \"profile\": {\n \"margin\": {\n \"kind\": \"fixedPerUnit\",\n \"initial\": \"1000\",\n \"maintenance\": \"500\",\n \"currency\": \"USD\"\n },\n \"commission\": {\n \"kind\": \"perUnit\",\n \"amount\": \"2.50\",\n \"currency\": \"USD\",\n \"orderMinimum\": null\n },\n \"markup\": {\n \"buyMarkupTicks\": 0,\n \"sellMarkupTicks\": 0\n },\n \"financing\": {\n \"kind\": \"none\"\n },\n \"risk\": {\n \"maxOrderQuantity\": \"10\",\n \"maxPositionQuantity\": null,\n \"maxPositionNotional\": null,\n \"instrumentAllowlist\": null,\n \"dailyLossLimit\": null,\n \"weeklyLossLimit\": null,\n \"entryHalted\": false,\n \"stopOutEquityRatio\": null\n }\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}/conditions/profiles")
.header("Idempotency-Key", "<idempotency-key>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"Standard\",\n \"profile\": {\n \"margin\": {\n \"kind\": \"fixedPerUnit\",\n \"initial\": \"1000\",\n \"maintenance\": \"500\",\n \"currency\": \"USD\"\n },\n \"commission\": {\n \"kind\": \"perUnit\",\n \"amount\": \"2.50\",\n \"currency\": \"USD\",\n \"orderMinimum\": null\n },\n \"markup\": {\n \"buyMarkupTicks\": 0,\n \"sellMarkupTicks\": 0\n },\n \"financing\": {\n \"kind\": \"none\"\n },\n \"risk\": {\n \"maxOrderQuantity\": \"10\",\n \"maxPositionQuantity\": null,\n \"maxPositionNotional\": null,\n \"instrumentAllowlist\": null,\n \"dailyLossLimit\": null,\n \"weeklyLossLimit\": null,\n \"entryHalted\": false,\n \"stopOutEquityRatio\": null\n }\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.trdrs.co/api/partner/venues/{venueId}/conditions/profiles")
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\": \"Standard\",\n \"profile\": {\n \"margin\": {\n \"kind\": \"fixedPerUnit\",\n \"initial\": \"1000\",\n \"maintenance\": \"500\",\n \"currency\": \"USD\"\n },\n \"commission\": {\n \"kind\": \"perUnit\",\n \"amount\": \"2.50\",\n \"currency\": \"USD\",\n \"orderMinimum\": null\n },\n \"markup\": {\n \"buyMarkupTicks\": 0,\n \"sellMarkupTicks\": 0\n },\n \"financing\": {\n \"kind\": \"none\"\n },\n \"risk\": {\n \"maxOrderQuantity\": \"10\",\n \"maxPositionQuantity\": null,\n \"maxPositionNotional\": null,\n \"instrumentAllowlist\": null,\n \"dailyLossLimit\": null,\n \"weeklyLossLimit\": null,\n \"entryHalted\": false,\n \"stopOutEquityRatio\": null\n }\n }\n}"
response = http.request(request)
puts response.read_body{
"profile": {
"id": "00000000-0000-0000-0000-000000000001",
"venueId": "00000000-0000-0000-0000-000000000001",
"environment": "sandbox",
"name": "Standard",
"profile": {
"margin": {
"kind": "fixedPerUnit",
"initial": "1000",
"maintenance": "500",
"currency": "USD"
},
"commission": {
"kind": "perUnit",
"amount": "2.50",
"currency": "USD",
"orderMinimum": null
},
"markup": {
"buyMarkupTicks": 0,
"sellMarkupTicks": 0
},
"financing": {
"kind": "none"
},
"risk": {
"maxOrderQuantity": "10",
"maxPositionQuantity": null,
"maxPositionNotional": null,
"instrumentAllowlist": null,
"dailyLossLimit": null,
"weeklyLossLimit": null,
"entryHalted": false,
"stopOutEquityRatio": null
}
},
"contentHash": "cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc",
"createdAt": "2026-09-14T12:00:00.000Z",
"state": "published",
"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 condition profile
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:configure. Publishing does not apply anything; activate it separately. An identical retry recovers the same profile and a changed body conflicts. Every policy must be explicitly tagged and the profile complete: there is no partial venue profile, because the venue layer is the floor every other layer narrows.
const res = await fetch('https://app.trdrs.co/api/partner/venues/{venueId}/conditions/profiles', {
method: 'POST',
headers: {
'content-type': 'application/json',
Authorization: `Bearer ${process.env.TRDRS_VENUE_KEY}`,
"Idempotency-Key": "example-request-1",
},
body: JSON.stringify({
"name": "Standard",
"profile": {
"margin": {
"kind": "fixedPerUnit",
"initial": "1000",
"maintenance": "500",
"currency": "USD"
},
"commission": {
"kind": "perUnit",
"amount": "2.50",
"currency": "USD",
"orderMinimum": null
},
"markup": {
"buyMarkupTicks": 0,
"sellMarkupTicks": 0
},
"financing": {
"kind": "none"
},
"risk": {
"maxOrderQuantity": "10",
"maxPositionQuantity": null,
"maxPositionNotional": null,
"instrumentAllowlist": null,
"dailyLossLimit": null,
"weeklyLossLimit": null,
"entryHalted": false,
"stopOutEquityRatio": null
}
}
}),
})
const data = await res.json()curl -X POST 'https://app.trdrs.co/api/partner/venues/{venueId}/conditions/profiles' \
-H "Authorization: Bearer $TRDRS_VENUE_KEY" \
-H 'Idempotency-Key: example-request-1' \
-H 'content-type: application/json' \
-d '{"name":"Standard","profile":{"margin":{"kind":"fixedPerUnit","initial":"1000","maintenance":"500","currency":"USD"},"commission":{"kind":"perUnit","amount":"2.50","currency":"USD","orderMinimum":null},"markup":{"buyMarkupTicks":0,"sellMarkupTicks":0},"financing":{"kind":"none"},"risk":{"maxOrderQuantity":"10","maxPositionQuantity":null,"maxPositionNotional":null,"instrumentAllowlist":null,"dailyLossLimit":null,"weeklyLossLimit":null,"entryHalted":false,"stopOutEquityRatio":null}}}'import requests
url = "https://app.trdrs.co/api/partner/venues/{venueId}/conditions/profiles"
payload = {
"name": "Standard",
"profile": {
"margin": {
"kind": "fixedPerUnit",
"initial": "1000",
"maintenance": "500",
"currency": "USD"
},
"commission": {
"kind": "perUnit",
"amount": "2.50",
"currency": "USD",
"orderMinimum": None
},
"markup": {
"buyMarkupTicks": 0,
"sellMarkupTicks": 0
},
"financing": { "kind": "none" },
"risk": {
"maxOrderQuantity": "10",
"maxPositionQuantity": None,
"maxPositionNotional": None,
"instrumentAllowlist": None,
"dailyLossLimit": None,
"weeklyLossLimit": None,
"entryHalted": False,
"stopOutEquityRatio": None
}
}
}
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}/conditions/profiles",
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' => 'Standard',
'profile' => [
'margin' => [
'kind' => 'fixedPerUnit',
'initial' => '1000',
'maintenance' => '500',
'currency' => 'USD'
],
'commission' => [
'kind' => 'perUnit',
'amount' => '2.50',
'currency' => 'USD',
'orderMinimum' => null
],
'markup' => [
'buyMarkupTicks' => 0,
'sellMarkupTicks' => 0
],
'financing' => [
'kind' => 'none'
],
'risk' => [
'maxOrderQuantity' => '10',
'maxPositionQuantity' => null,
'maxPositionNotional' => null,
'instrumentAllowlist' => null,
'dailyLossLimit' => null,
'weeklyLossLimit' => null,
'entryHalted' => false,
'stopOutEquityRatio' => null
]
]
]),
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}/conditions/profiles"
payload := strings.NewReader("{\n \"name\": \"Standard\",\n \"profile\": {\n \"margin\": {\n \"kind\": \"fixedPerUnit\",\n \"initial\": \"1000\",\n \"maintenance\": \"500\",\n \"currency\": \"USD\"\n },\n \"commission\": {\n \"kind\": \"perUnit\",\n \"amount\": \"2.50\",\n \"currency\": \"USD\",\n \"orderMinimum\": null\n },\n \"markup\": {\n \"buyMarkupTicks\": 0,\n \"sellMarkupTicks\": 0\n },\n \"financing\": {\n \"kind\": \"none\"\n },\n \"risk\": {\n \"maxOrderQuantity\": \"10\",\n \"maxPositionQuantity\": null,\n \"maxPositionNotional\": null,\n \"instrumentAllowlist\": null,\n \"dailyLossLimit\": null,\n \"weeklyLossLimit\": null,\n \"entryHalted\": false,\n \"stopOutEquityRatio\": null\n }\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}/conditions/profiles")
.header("Idempotency-Key", "<idempotency-key>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"Standard\",\n \"profile\": {\n \"margin\": {\n \"kind\": \"fixedPerUnit\",\n \"initial\": \"1000\",\n \"maintenance\": \"500\",\n \"currency\": \"USD\"\n },\n \"commission\": {\n \"kind\": \"perUnit\",\n \"amount\": \"2.50\",\n \"currency\": \"USD\",\n \"orderMinimum\": null\n },\n \"markup\": {\n \"buyMarkupTicks\": 0,\n \"sellMarkupTicks\": 0\n },\n \"financing\": {\n \"kind\": \"none\"\n },\n \"risk\": {\n \"maxOrderQuantity\": \"10\",\n \"maxPositionQuantity\": null,\n \"maxPositionNotional\": null,\n \"instrumentAllowlist\": null,\n \"dailyLossLimit\": null,\n \"weeklyLossLimit\": null,\n \"entryHalted\": false,\n \"stopOutEquityRatio\": null\n }\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.trdrs.co/api/partner/venues/{venueId}/conditions/profiles")
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\": \"Standard\",\n \"profile\": {\n \"margin\": {\n \"kind\": \"fixedPerUnit\",\n \"initial\": \"1000\",\n \"maintenance\": \"500\",\n \"currency\": \"USD\"\n },\n \"commission\": {\n \"kind\": \"perUnit\",\n \"amount\": \"2.50\",\n \"currency\": \"USD\",\n \"orderMinimum\": null\n },\n \"markup\": {\n \"buyMarkupTicks\": 0,\n \"sellMarkupTicks\": 0\n },\n \"financing\": {\n \"kind\": \"none\"\n },\n \"risk\": {\n \"maxOrderQuantity\": \"10\",\n \"maxPositionQuantity\": null,\n \"maxPositionNotional\": null,\n \"instrumentAllowlist\": null,\n \"dailyLossLimit\": null,\n \"weeklyLossLimit\": null,\n \"entryHalted\": false,\n \"stopOutEquityRatio\": null\n }\n }\n}"
response = http.request(request)
puts response.read_body{
"profile": {
"id": "00000000-0000-0000-0000-000000000001",
"venueId": "00000000-0000-0000-0000-000000000001",
"environment": "sandbox",
"name": "Standard",
"profile": {
"margin": {
"kind": "fixedPerUnit",
"initial": "1000",
"maintenance": "500",
"currency": "USD"
},
"commission": {
"kind": "perUnit",
"amount": "2.50",
"currency": "USD",
"orderMinimum": null
},
"markup": {
"buyMarkupTicks": 0,
"sellMarkupTicks": 0
},
"financing": {
"kind": "none"
},
"risk": {
"maxOrderQuantity": "10",
"maxPositionQuantity": null,
"maxPositionNotional": null,
"instrumentAllowlist": null,
"dailyLossLimit": null,
"weeklyLossLimit": null,
"entryHalted": false,
"stopOutEquityRatio": null
}
},
"contentHash": "cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc",
"createdAt": "2026-09-14T12:00:00.000Z",
"state": "published",
"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
Every policy is explicitly tagged. Zero commission and financing none are real choices; an omitted field is inheritance, not a default. Initial margin must be at least maintenance, and a linear rate above one is refused as a percentage typo.
Show child attributes
Show child attributes
Response
Scoped result. Cache-Control: no-store.
Show child attributes
Show child attributes