For the complete documentation index, see llms.txt. This page is also available as Markdown.

Documents

Briefing document assets generated per token

Get documents

get

Returns paginated briefing documents created by the authenticated token, including in-progress requests.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
pageinteger · min: 1Optional

Page number (default 1)

pageSizeinteger · min: 1 · max: 100Optional

Items per page (default 20, max 100)

Responses
200

Paginated list of documents

application/json
totalCountintegerOptional
pageintegerOptional
pageSizeintegerOptional
totalPagesintegerOptional
get/documents/get

Get document

get

Returns the stored briefing document payload for the authenticated token.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
documentIdstringRequired

Document request identifier

Responses
200

Document payload

application/json
idstringOptional

Unique identifier for the document (matches request id)

typestringOptional

Document type

formatstring · enumOptional

Stored result format

Possible values:
titlestring · nullableOptional

Optional document title

statusintegerOptional

Current progress percentage (100 when completed)

createdOnstring · date-timeOptional

UTC timestamp when the document row was created

contentstring · nullableOptional

Text or HTML content when format is text or html

urlstring · nullableOptional

Direct PDF URL when format is pdf

get/documents/{documentId}

Download document

get

Downloads the stored briefing document as PDF, HTML, or text for the authenticated token.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
documentIdstringRequired

Document request identifier

Responses
200

Document download

application/octet-stream
string · binaryOptional
get/documents/{documentId}/download

Preview document

get

Streams the stored briefing document inline using its native format. Supports PDF, HTML, and plain text documents for the authenticated token.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
documentIdstringRequired

Document request identifier

Responses
200

Document preview

string · binaryOptional
get/documents/{documentId}/preview

Last updated