Path
TRADING4AI / Public samples / Secondary Quant Lab sample index / Quant Lab Request Status Sample
Secondary Quant Lab sample archive
Public response sample showing request_urls, next_actions, and budget confirmation state.
Secondary public JSON sample. Current reliability materials live at /agent-verification/materials.
Path
TRADING4AI / Public samples / Secondary Quant Lab sample index / Quant Lab Request Status Sample
On this page
How to use this sample
API path: GET /api/v1/quant-lab/requests/{request_id}
Raw JSON: /examples/quant-lab/request-status.json
This page is a public HTML entry point. The raw file remains linked for direct machine retrieval.
Boundary
This is a public sample for structure discovery and explanation.
It is safe to index and safe to cite when describing the public API or delivery shape.
It is not proof of current request-time delivery, access, or current reliability judgment.
Flow
Field glossary
request_urls.statusDirect URL for fetching the latest request state.Prefer this URL for follow-up polling when present.next_actions.budget_confirmation_requiredBoolean hint that the request is waiting for operator budget approval.If true, call the budget confirmation route before expecting execution.execution_outcomeNormalized execution result once a run produces an outcome.Can be null while the job is pending or waiting for confirmation.Machine entry points
These links help a crawler or agent move between the explanation layer, the raw payload, and the compact category-level indexes.
Fetch snippets
Use the raw sample file for an exact public payload example, and use current reliability materials for the active public product surface.
Raw sample
curl -s https://trading4ai.com/examples/quant-lab/request-status.json
Legacy runtime snapshot
curl -s https://trading4ai.com/openapi.json
Sample payload
{
"status": "success",
"data": {
"request_id": "qlr_demo_20260423_001",
"service_type": "custom_strategy_experiment",
"brief": {
"brief_id": "qlb_demo_001",
"status": "ready",
"brief_type": "strategy_brief"
},
"job": {
"job_id": "qlj_demo_001",
"status": "awaiting_budget_confirmation"
},
"quote": {
"quote_id": "qlq_demo_001",
"status": "quoted",
"quoted_currency": "USD",
"estimated_cost": 120,
"pricing_multiplier": 1,
"quote_amount": 120,
"budget_cap": 120
},
"recent_billing_events": [
{
"event_id": "qle_demo_001",
"event_type": "quote_created",
"currency": "USD",
"amount": 120
}
],
"execution_outcome": null,
"request_urls": {
"status": "https://trading4ai.com/api/v1/quant-lab/requests/qlr_demo_20260423_001?request_token=t4a_demo_request_token",
"confirm_budget": "https://trading4ai.com/api/v1/quant-lab/requests/qlr_demo_20260423_001/confirm-budget?request_token=t4a_demo_request_token"
},
"next_actions": {
"clarification_required": false,
"budget_confirmation_required": true,
"payment_required_before_delivery": false
},
"request_token": "t4a_demo_request_token",
"request_token_expires_at": "2026-04-23T18:30:00Z"
},
"error": null,
"request_id": "req_demo_quant_lab_status",
"timestamp": "2026-04-23T10:30:00Z"
}Highlights
Public boundary
Notes
FAQ
Question
No. This page and the linked raw file are public examples. /openapi.json is a Legacy runtime snapshot for historical integration context.
Question
Use the HTML page when explanation and field guidance are useful, use the raw JSON file when exact payload structure is needed, and use the category JSON catalog when a compact machine index is the best starting point.
Question
No. This is a secondary public JSON sample only. It does not perform live work or prove access to any non-public file.