Agent submits order (Hunting → Working)
curl --request POST \
--url https://api.example.com/api/internal/trade-cards/{card_id}/submit \
--header 'Content-Type: application/json' \
--data '
{
"broker_order_id": "<string>",
"market_snapshot": {
"ts": "2023-11-07T05:31:56Z",
"bar_symbol": "",
"bar_open": 123,
"bar_high": 123,
"bar_low": 123,
"bar_close": 123,
"bar_volume": 123,
"bar_vwap": 123,
"quote_bid": 123,
"quote_ask": 123,
"quote_bid_size": 123,
"quote_ask_size": 123,
"indicators": {},
"regime_dominant": "",
"regime_confidence": 123,
"signals": {},
"risk_day_dollars": 123,
"risk_pct_cap": 123,
"risk_loss_remaining": 123
},
"correlation_id": "<string>",
"reason": "",
"costs": {
"expected_commission": 123,
"expected_slippage_bps": 123,
"realized_commission": 123,
"realized_slippage_bps": 123,
"expected_fill_price": 123,
"realized_fill_price": 123
}
}
'import requests
url = "https://api.example.com/api/internal/trade-cards/{card_id}/submit"
payload = {
"broker_order_id": "<string>",
"market_snapshot": {
"ts": "2023-11-07T05:31:56Z",
"bar_symbol": "",
"bar_open": 123,
"bar_high": 123,
"bar_low": 123,
"bar_close": 123,
"bar_volume": 123,
"bar_vwap": 123,
"quote_bid": 123,
"quote_ask": 123,
"quote_bid_size": 123,
"quote_ask_size": 123,
"indicators": {},
"regime_dominant": "",
"regime_confidence": 123,
"signals": {},
"risk_day_dollars": 123,
"risk_pct_cap": 123,
"risk_loss_remaining": 123
},
"correlation_id": "<string>",
"reason": "",
"costs": {
"expected_commission": 123,
"expected_slippage_bps": 123,
"realized_commission": 123,
"realized_slippage_bps": 123,
"expected_fill_price": 123,
"realized_fill_price": 123
}
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
broker_order_id: '<string>',
market_snapshot: {
ts: '2023-11-07T05:31:56Z',
bar_symbol: '',
bar_open: 123,
bar_high: 123,
bar_low: 123,
bar_close: 123,
bar_volume: 123,
bar_vwap: 123,
quote_bid: 123,
quote_ask: 123,
quote_bid_size: 123,
quote_ask_size: 123,
indicators: {},
regime_dominant: '',
regime_confidence: 123,
signals: {},
risk_day_dollars: 123,
risk_pct_cap: 123,
risk_loss_remaining: 123
},
correlation_id: '<string>',
reason: '',
costs: {
expected_commission: 123,
expected_slippage_bps: 123,
realized_commission: 123,
realized_slippage_bps: 123,
expected_fill_price: 123,
realized_fill_price: 123
}
})
};
fetch('https://api.example.com/api/internal/trade-cards/{card_id}/submit', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/api/internal/trade-cards/{card_id}/submit",
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([
'broker_order_id' => '<string>',
'market_snapshot' => [
'ts' => '2023-11-07T05:31:56Z',
'bar_symbol' => '',
'bar_open' => 123,
'bar_high' => 123,
'bar_low' => 123,
'bar_close' => 123,
'bar_volume' => 123,
'bar_vwap' => 123,
'quote_bid' => 123,
'quote_ask' => 123,
'quote_bid_size' => 123,
'quote_ask_size' => 123,
'indicators' => [
],
'regime_dominant' => '',
'regime_confidence' => 123,
'signals' => [
],
'risk_day_dollars' => 123,
'risk_pct_cap' => 123,
'risk_loss_remaining' => 123
],
'correlation_id' => '<string>',
'reason' => '',
'costs' => [
'expected_commission' => 123,
'expected_slippage_bps' => 123,
'realized_commission' => 123,
'realized_slippage_bps' => 123,
'expected_fill_price' => 123,
'realized_fill_price' => 123
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$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://api.example.com/api/internal/trade-cards/{card_id}/submit"
payload := strings.NewReader("{\n \"broker_order_id\": \"<string>\",\n \"market_snapshot\": {\n \"ts\": \"2023-11-07T05:31:56Z\",\n \"bar_symbol\": \"\",\n \"bar_open\": 123,\n \"bar_high\": 123,\n \"bar_low\": 123,\n \"bar_close\": 123,\n \"bar_volume\": 123,\n \"bar_vwap\": 123,\n \"quote_bid\": 123,\n \"quote_ask\": 123,\n \"quote_bid_size\": 123,\n \"quote_ask_size\": 123,\n \"indicators\": {},\n \"regime_dominant\": \"\",\n \"regime_confidence\": 123,\n \"signals\": {},\n \"risk_day_dollars\": 123,\n \"risk_pct_cap\": 123,\n \"risk_loss_remaining\": 123\n },\n \"correlation_id\": \"<string>\",\n \"reason\": \"\",\n \"costs\": {\n \"expected_commission\": 123,\n \"expected_slippage_bps\": 123,\n \"realized_commission\": 123,\n \"realized_slippage_bps\": 123,\n \"expected_fill_price\": 123,\n \"realized_fill_price\": 123\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
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://api.example.com/api/internal/trade-cards/{card_id}/submit")
.header("Content-Type", "application/json")
.body("{\n \"broker_order_id\": \"<string>\",\n \"market_snapshot\": {\n \"ts\": \"2023-11-07T05:31:56Z\",\n \"bar_symbol\": \"\",\n \"bar_open\": 123,\n \"bar_high\": 123,\n \"bar_low\": 123,\n \"bar_close\": 123,\n \"bar_volume\": 123,\n \"bar_vwap\": 123,\n \"quote_bid\": 123,\n \"quote_ask\": 123,\n \"quote_bid_size\": 123,\n \"quote_ask_size\": 123,\n \"indicators\": {},\n \"regime_dominant\": \"\",\n \"regime_confidence\": 123,\n \"signals\": {},\n \"risk_day_dollars\": 123,\n \"risk_pct_cap\": 123,\n \"risk_loss_remaining\": 123\n },\n \"correlation_id\": \"<string>\",\n \"reason\": \"\",\n \"costs\": {\n \"expected_commission\": 123,\n \"expected_slippage_bps\": 123,\n \"realized_commission\": 123,\n \"realized_slippage_bps\": 123,\n \"expected_fill_price\": 123,\n \"realized_fill_price\": 123\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/internal/trade-cards/{card_id}/submit")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"broker_order_id\": \"<string>\",\n \"market_snapshot\": {\n \"ts\": \"2023-11-07T05:31:56Z\",\n \"bar_symbol\": \"\",\n \"bar_open\": 123,\n \"bar_high\": 123,\n \"bar_low\": 123,\n \"bar_close\": 123,\n \"bar_volume\": 123,\n \"bar_vwap\": 123,\n \"quote_bid\": 123,\n \"quote_ask\": 123,\n \"quote_bid_size\": 123,\n \"quote_ask_size\": 123,\n \"indicators\": {},\n \"regime_dominant\": \"\",\n \"regime_confidence\": 123,\n \"signals\": {},\n \"risk_day_dollars\": 123,\n \"risk_pct_cap\": 123,\n \"risk_loss_remaining\": 123\n },\n \"correlation_id\": \"<string>\",\n \"reason\": \"\",\n \"costs\": {\n \"expected_commission\": 123,\n \"expected_slippage_bps\": 123,\n \"realized_commission\": 123,\n \"realized_slippage_bps\": 123,\n \"expected_fill_price\": 123,\n \"realized_fill_price\": 123\n }\n}"
response = http.request(request)
puts response.read_body{
"card_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"action": "<string>",
"column_state": "",
"substate": "<string>",
"success": true,
"message": ""
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Internal Trade Cards
Agent submits order (Hunting → Working)
Agent submits a broker order for a hunting card. Transitions Pending/Hunting → Pending/Working.
POST
/
api
/
internal
/
trade-cards
/
{card_id}
/
submit
Agent submits order (Hunting → Working)
curl --request POST \
--url https://api.example.com/api/internal/trade-cards/{card_id}/submit \
--header 'Content-Type: application/json' \
--data '
{
"broker_order_id": "<string>",
"market_snapshot": {
"ts": "2023-11-07T05:31:56Z",
"bar_symbol": "",
"bar_open": 123,
"bar_high": 123,
"bar_low": 123,
"bar_close": 123,
"bar_volume": 123,
"bar_vwap": 123,
"quote_bid": 123,
"quote_ask": 123,
"quote_bid_size": 123,
"quote_ask_size": 123,
"indicators": {},
"regime_dominant": "",
"regime_confidence": 123,
"signals": {},
"risk_day_dollars": 123,
"risk_pct_cap": 123,
"risk_loss_remaining": 123
},
"correlation_id": "<string>",
"reason": "",
"costs": {
"expected_commission": 123,
"expected_slippage_bps": 123,
"realized_commission": 123,
"realized_slippage_bps": 123,
"expected_fill_price": 123,
"realized_fill_price": 123
}
}
'import requests
url = "https://api.example.com/api/internal/trade-cards/{card_id}/submit"
payload = {
"broker_order_id": "<string>",
"market_snapshot": {
"ts": "2023-11-07T05:31:56Z",
"bar_symbol": "",
"bar_open": 123,
"bar_high": 123,
"bar_low": 123,
"bar_close": 123,
"bar_volume": 123,
"bar_vwap": 123,
"quote_bid": 123,
"quote_ask": 123,
"quote_bid_size": 123,
"quote_ask_size": 123,
"indicators": {},
"regime_dominant": "",
"regime_confidence": 123,
"signals": {},
"risk_day_dollars": 123,
"risk_pct_cap": 123,
"risk_loss_remaining": 123
},
"correlation_id": "<string>",
"reason": "",
"costs": {
"expected_commission": 123,
"expected_slippage_bps": 123,
"realized_commission": 123,
"realized_slippage_bps": 123,
"expected_fill_price": 123,
"realized_fill_price": 123
}
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
broker_order_id: '<string>',
market_snapshot: {
ts: '2023-11-07T05:31:56Z',
bar_symbol: '',
bar_open: 123,
bar_high: 123,
bar_low: 123,
bar_close: 123,
bar_volume: 123,
bar_vwap: 123,
quote_bid: 123,
quote_ask: 123,
quote_bid_size: 123,
quote_ask_size: 123,
indicators: {},
regime_dominant: '',
regime_confidence: 123,
signals: {},
risk_day_dollars: 123,
risk_pct_cap: 123,
risk_loss_remaining: 123
},
correlation_id: '<string>',
reason: '',
costs: {
expected_commission: 123,
expected_slippage_bps: 123,
realized_commission: 123,
realized_slippage_bps: 123,
expected_fill_price: 123,
realized_fill_price: 123
}
})
};
fetch('https://api.example.com/api/internal/trade-cards/{card_id}/submit', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/api/internal/trade-cards/{card_id}/submit",
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([
'broker_order_id' => '<string>',
'market_snapshot' => [
'ts' => '2023-11-07T05:31:56Z',
'bar_symbol' => '',
'bar_open' => 123,
'bar_high' => 123,
'bar_low' => 123,
'bar_close' => 123,
'bar_volume' => 123,
'bar_vwap' => 123,
'quote_bid' => 123,
'quote_ask' => 123,
'quote_bid_size' => 123,
'quote_ask_size' => 123,
'indicators' => [
],
'regime_dominant' => '',
'regime_confidence' => 123,
'signals' => [
],
'risk_day_dollars' => 123,
'risk_pct_cap' => 123,
'risk_loss_remaining' => 123
],
'correlation_id' => '<string>',
'reason' => '',
'costs' => [
'expected_commission' => 123,
'expected_slippage_bps' => 123,
'realized_commission' => 123,
'realized_slippage_bps' => 123,
'expected_fill_price' => 123,
'realized_fill_price' => 123
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$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://api.example.com/api/internal/trade-cards/{card_id}/submit"
payload := strings.NewReader("{\n \"broker_order_id\": \"<string>\",\n \"market_snapshot\": {\n \"ts\": \"2023-11-07T05:31:56Z\",\n \"bar_symbol\": \"\",\n \"bar_open\": 123,\n \"bar_high\": 123,\n \"bar_low\": 123,\n \"bar_close\": 123,\n \"bar_volume\": 123,\n \"bar_vwap\": 123,\n \"quote_bid\": 123,\n \"quote_ask\": 123,\n \"quote_bid_size\": 123,\n \"quote_ask_size\": 123,\n \"indicators\": {},\n \"regime_dominant\": \"\",\n \"regime_confidence\": 123,\n \"signals\": {},\n \"risk_day_dollars\": 123,\n \"risk_pct_cap\": 123,\n \"risk_loss_remaining\": 123\n },\n \"correlation_id\": \"<string>\",\n \"reason\": \"\",\n \"costs\": {\n \"expected_commission\": 123,\n \"expected_slippage_bps\": 123,\n \"realized_commission\": 123,\n \"realized_slippage_bps\": 123,\n \"expected_fill_price\": 123,\n \"realized_fill_price\": 123\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
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://api.example.com/api/internal/trade-cards/{card_id}/submit")
.header("Content-Type", "application/json")
.body("{\n \"broker_order_id\": \"<string>\",\n \"market_snapshot\": {\n \"ts\": \"2023-11-07T05:31:56Z\",\n \"bar_symbol\": \"\",\n \"bar_open\": 123,\n \"bar_high\": 123,\n \"bar_low\": 123,\n \"bar_close\": 123,\n \"bar_volume\": 123,\n \"bar_vwap\": 123,\n \"quote_bid\": 123,\n \"quote_ask\": 123,\n \"quote_bid_size\": 123,\n \"quote_ask_size\": 123,\n \"indicators\": {},\n \"regime_dominant\": \"\",\n \"regime_confidence\": 123,\n \"signals\": {},\n \"risk_day_dollars\": 123,\n \"risk_pct_cap\": 123,\n \"risk_loss_remaining\": 123\n },\n \"correlation_id\": \"<string>\",\n \"reason\": \"\",\n \"costs\": {\n \"expected_commission\": 123,\n \"expected_slippage_bps\": 123,\n \"realized_commission\": 123,\n \"realized_slippage_bps\": 123,\n \"expected_fill_price\": 123,\n \"realized_fill_price\": 123\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/internal/trade-cards/{card_id}/submit")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"broker_order_id\": \"<string>\",\n \"market_snapshot\": {\n \"ts\": \"2023-11-07T05:31:56Z\",\n \"bar_symbol\": \"\",\n \"bar_open\": 123,\n \"bar_high\": 123,\n \"bar_low\": 123,\n \"bar_close\": 123,\n \"bar_volume\": 123,\n \"bar_vwap\": 123,\n \"quote_bid\": 123,\n \"quote_ask\": 123,\n \"quote_bid_size\": 123,\n \"quote_ask_size\": 123,\n \"indicators\": {},\n \"regime_dominant\": \"\",\n \"regime_confidence\": 123,\n \"signals\": {},\n \"risk_day_dollars\": 123,\n \"risk_pct_cap\": 123,\n \"risk_loss_remaining\": 123\n },\n \"correlation_id\": \"<string>\",\n \"reason\": \"\",\n \"costs\": {\n \"expected_commission\": 123,\n \"expected_slippage_bps\": 123,\n \"realized_commission\": 123,\n \"realized_slippage_bps\": 123,\n \"expected_fill_price\": 123,\n \"realized_fill_price\": 123\n }\n}"
response = http.request(request)
puts response.read_body{
"card_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"action": "<string>",
"column_state": "",
"substate": "<string>",
"success": true,
"message": ""
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Path Parameters
Body
application/json
Agent requests order submission (Pending/Hunting → Pending/Working).
Broker order ID from Alpaca
Frozen picture of the market state at the moment an agent made a decision. Required on audit entries where actor=agent and the action changes card state. See spec §4.5.
Show child attributes
Show child attributes
Signal ID that triggered entry
Agent's justification for entry
Show child attributes
Show child attributes