List quotes

View as Markdown

Returns a cursor-paginated list of quotes for the workspace. Only documents with type=quote appear here — other document types have their own endpoints. Soft-deleted quotes are excluded. Ordered by id descending.

Authentication

AuthorizationBearer

JWT issued via POST /api/v1/auth/sign_in. Used by mobile and SPA clients. Revoked tokens are rejected.

OR
AuthorizationBearer
Lucanto API key. Two prefixes: - `lct_pat_<random><checksum>` — personal access token (owner: User) - `lct_live_<random><checksum>` — workspace token, live data Issue keys at `/settings/api_keys` (personal) or `/:workspace_id/settings/api_keys` (workspace). Plaintext token is shown once and never again.

Path parameters

workspace_idlongRequired>=1
Workspace ID. The numeric ID shown in your URLs.

Query parameters

cursorstringOptional

Pagination cursor from the previous response’s next_cursor.

limitintegerOptional1-100Defaults to 25
Number of items per page. Default 25, maximum 100.
sortenumOptional

Sort field for document lists. Currently only created_at is supported; the date fields (issue_date, due_date) are nullable on drafts and will be added once a null-ordering is defined. Combine with order.

Allowed values:
orderenumOptionalDefaults to desc

Sort direction for sort. Defaults to desc.

Allowed values:

Response

OK
next_cursorstring or null

Cursor to fetch the next page. Pass it as the cursor query parameter on the next request. null on the last page.

has_moreboolean
True when more pages exist after this one.
datalist of objects

Errors

401
Unauthorized Error
402
Payment Required Error
403
Forbidden Error
429
Too Many Requests Error