

/api/v1/forward/trades/{id}Everything about one forward trade: its live valuation, the scale-out ladder, the break-even trigger, the notes and confluences, and the audit trail of what the server did to it and why (fills, partials, stops, targets). The list endpoint already carries the floating P&L of every position, so use this one for the detail and the trail. Owner-scoped: 404 if it does not exist or is not yours.
| Name | In | Type | Req. | Description |
|---|---|---|---|---|
| id | path | string | yes | The forward trade id. |
curl -H "Authorization: Bearer afx_live_xxx" \
"https://www.analytics-fx.com/api/v1/forward/trades/value"{
"apiVersion": "v1",
"data": {
"id": "9b8a...", "accountId": "7c1d...", "symbol": "EURUSD", "side": "long",
"orderType": "market", "status": "open", "size": 0.5,
"entryPrice": 1.0821, "exitPrice": null, "stopLoss": 1.0835, "takeProfit": 1.09,
"pnl": null, "floatingPnl": 62.5, "currentPrice": 1.08335,
"pricedAt": "2026-08-27T14:01:00.000Z", "usedMargin": 540.6,
"takeProfitLadder": [{ "price": 1.086, "pct": 50 }], "breakEvenTrigger": 1.0845,
"openedAt": "2026-08-27T09:41:00.000Z", "closedAt": null,
"notes": "moved to break-even", "confluences": null,
"events": [
{ "kind": "fill", "reason": "market", "price": 1.0821, "at": "2026-08-27T09:41:00.000Z" },
{ "kind": "partial", "reason": "tp1", "price": 1.086, "at": "2026-08-27T11:12:00.000Z" }
]
},
"meta": { "requestId": "req_fw07", "credits": { "cost": 2, "remaining": 974 } }
}GET /api/v1/forward/trades/Create a key at /dashboard/api. The key stays in your browser.