const res = await fetch('https://app.trdrs.co/api/partner/venues/{venueId}/accounts', {
method: 'POST',
headers: {
'content-type': 'application/json',
Authorization: `Bearer ${process.env.TRDRS_VENUE_KEY}`,
"Idempotency-Key": "example-request-1",
},
body: JSON.stringify({
"groupId": "firm-meridian-evaluation",
"email": "trader@example.com",
"startingBalance": 50000,
"referenceId": "order-84117"
}),
})
const data = await res.json()curl -X POST 'https://app.trdrs.co/api/partner/venues/{venueId}/accounts' \
-H "Authorization: Bearer $TRDRS_VENUE_KEY" \
-H 'Idempotency-Key: example-request-1' \
-H 'content-type: application/json' \
-d '{"groupId":"firm-meridian-evaluation","email":"trader@example.com","startingBalance":50000,"referenceId":"order-84117"}'import requests
url = "https://app.trdrs.co/api/partner/venues/{venueId}/accounts"
payload = {
"groupId": "firm-meridian-evaluation",
"email": "trader@example.com",
"startingBalance": 50000,
"referenceId": "order-84117"
}
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}/accounts",
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([
'groupId' => 'firm-meridian-evaluation',
'email' => 'trader@example.com',
'startingBalance' => 50000,
'referenceId' => 'order-84117'
]),
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}/accounts"
payload := strings.NewReader("{\n \"groupId\": \"firm-meridian-evaluation\",\n \"email\": \"trader@example.com\",\n \"startingBalance\": 50000,\n \"referenceId\": \"order-84117\"\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}/accounts")
.header("Idempotency-Key", "<idempotency-key>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"groupId\": \"firm-meridian-evaluation\",\n \"email\": \"trader@example.com\",\n \"startingBalance\": 50000,\n \"referenceId\": \"order-84117\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.trdrs.co/api/partner/venues/{venueId}/accounts")
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 \"groupId\": \"firm-meridian-evaluation\",\n \"email\": \"trader@example.com\",\n \"startingBalance\": 50000,\n \"referenceId\": \"order-84117\"\n}"
response = http.request(request)
puts response.read_body{
"account": {
"accountId": "example-account",
"accountNumber": "EVAL-7C21A9",
"email": "trader@example.com",
"groupId": "firm-meridian-evaluation",
"balance": "50000",
"created": true
}
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}{
"error": "invalid_instrument"
}Issue an account into a group
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 the named venue-key scope and current owner membership. account:issue. Runs the same operation the legacy Partner API route runs, and refuses the same things; this is the venue door onto it, not a second implementation. The venue must have adopted a firm (else no_firm, 404) and the group must have a route (else group_has_no_route, 409): an account that could never open a position is refused before anything is issued. An unknown trader email is no_user_with_that_email (404). The firm’s referenceId makes the create idempotent; a retry with the same referenceId returns the same account with created: false.
const res = await fetch('https://app.trdrs.co/api/partner/venues/{venueId}/accounts', {
method: 'POST',
headers: {
'content-type': 'application/json',
Authorization: `Bearer ${process.env.TRDRS_VENUE_KEY}`,
"Idempotency-Key": "example-request-1",
},
body: JSON.stringify({
"groupId": "firm-meridian-evaluation",
"email": "trader@example.com",
"startingBalance": 50000,
"referenceId": "order-84117"
}),
})
const data = await res.json()curl -X POST 'https://app.trdrs.co/api/partner/venues/{venueId}/accounts' \
-H "Authorization: Bearer $TRDRS_VENUE_KEY" \
-H 'Idempotency-Key: example-request-1' \
-H 'content-type: application/json' \
-d '{"groupId":"firm-meridian-evaluation","email":"trader@example.com","startingBalance":50000,"referenceId":"order-84117"}'import requests
url = "https://app.trdrs.co/api/partner/venues/{venueId}/accounts"
payload = {
"groupId": "firm-meridian-evaluation",
"email": "trader@example.com",
"startingBalance": 50000,
"referenceId": "order-84117"
}
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}/accounts",
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([
'groupId' => 'firm-meridian-evaluation',
'email' => 'trader@example.com',
'startingBalance' => 50000,
'referenceId' => 'order-84117'
]),
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}/accounts"
payload := strings.NewReader("{\n \"groupId\": \"firm-meridian-evaluation\",\n \"email\": \"trader@example.com\",\n \"startingBalance\": 50000,\n \"referenceId\": \"order-84117\"\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}/accounts")
.header("Idempotency-Key", "<idempotency-key>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"groupId\": \"firm-meridian-evaluation\",\n \"email\": \"trader@example.com\",\n \"startingBalance\": 50000,\n \"referenceId\": \"order-84117\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.trdrs.co/api/partner/venues/{venueId}/accounts")
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 \"groupId\": \"firm-meridian-evaluation\",\n \"email\": \"trader@example.com\",\n \"startingBalance\": 50000,\n \"referenceId\": \"order-84117\"\n}"
response = http.request(request)
puts response.read_body{
"account": {
"accountId": "example-account",
"accountNumber": "EVAL-7C21A9",
"email": "trader@example.com",
"groupId": "firm-meridian-evaluation",
"balance": "50000",
"created": true
}
}{
"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
Response
Scoped result. Cache-Control: no-store.
The account as the venue now knows it. created false means the firm's referenceId already owned this account and nothing new was issued.
Show child attributes
Show child attributes