Skip to main content
GET
/
strategies
/
{strategyId}
/
factsheet
Retrieve the factsheet PDF (302 when ready) or its generation status
curl --request GET \
  --url https://api.noonum.ai/v2/strategies/{strategyId}/factsheet \
  --header 'Authorization: Bearer <token>'
{}

Authorizations

Authorization
string
header
required

Enter 'Bearer' followed by a space and then your JWT or API Key. Example: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9... or Bearer YOUR_API_KEY_HERE

Path Parameters

strategyId
string<uuid>
required

UUID of the strategy

Query Parameters

asOfDate
string<date>

The as-of date (YYYY-MM-DD) selecting a specific run of the version. Omitted -> the latest completed run for the version.

versionId
string<uuid>

Explicit version to read. Omitted -> the strategy's active version.

Response

Factsheet not yet available; its current generation status

Generation status returned by GET factsheet (200) when no PDF is ready yet — so an in-flight factsheet is not misreported as 404.

status
enum<string>
required

generating — a generation request is in flight (factsheet_requested, no PDF yet). not_requested — the run has no factsheet and none has been asked for.

Available options:
generating,
not_requested