Quick setup for authenticated API usage in browser and automation contexts.
X-Workspace-Id ready./docs/api open beside your editor so you can compare live request and response contracts.Start with a simple health check to confirm your base URL, network path, and client setup before you add auth or workspace state.
curl --request GET \
--url "$SERENQUANT_BASE_URL/api/v1/system/health" \
--header "Accept: application/json"Once the base URL works, move to an authenticated request that includes both bearer auth and workspace context.
curl --request GET \
--url "$SERENQUANT_BASE_URL/api/v1/markets/snapshot?universe=core" \
--header "Accept: application/json" \
--header "Authorization: Bearer $SERENQUANT_API_TOKEN" \
--header "X-Workspace-Id: $SERENQUANT_WORKSPACE_ID"{
"ok": true,
"generated_at": "2026-03-24T00:00:00Z"
}Inspect exact contracts, auth flags, role requirements, and code examples per endpoint.
Understand session vs token flows, workspace headers, and protected-route behavior.
Track contract changes before you update generated clients or automation workflows.
Mar 24, 2026
Report unclear guidance, stale contracts, missing coverage, or broken docs UI on this page.
Open feedback issueJump to the section you need without losing your place.
Mar 24, 2026
Report unclear guidance, stale contracts, missing coverage, or broken docs UI on this page.
Open feedback issue