Skip to main content
curl "https://api.chroniclehq.com/api/v1/presentations/pres_123" \
  -H "Authorization: Bearer $API_KEY"
{
  "id": "pres_123",
  "title": "Q2 business review",
  "workspace_id": "ws_123",
  "sections": [],
  "is_public": false,
  "url": "https://app.chroniclehq.com/ws_123/document/pres_123",
  "created_at": "2026-04-30T00:00:00.000Z",
  "updated_at": "2026-04-30T00:00:00.000Z"
}

Documentation Index

Fetch the complete documentation index at: https://chronicle.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

curl "https://api.chroniclehq.com/api/v1/presentations/pres_123" \
  -H "Authorization: Bearer $API_KEY"

Parameters

id
string
required
The presentation ID

Response

{
  "id": "pres_123",
  "title": "Q2 business review",
  "workspace_id": "ws_123",
  "sections": [],
  "is_public": false,
  "url": "https://app.chroniclehq.com/ws_123/document/pres_123",
  "created_at": "2026-04-30T00:00:00.000Z",
  "updated_at": "2026-04-30T00:00:00.000Z"
}
id
string
Presentation ID
title
string
Presentation title
workspace_id
string
Workspace ID that owns the presentation
sections
array
Presentation slides
is_public
boolean
Whether the presentation is public
url
string
Canonical presentation URL
created_at
string
ISO timestamp when the presentation was created
updated_at
string
ISO timestamp when the presentation was last updated

FAQs

This endpoint expects a Chronicle presentation ID. Do not send a share URL in its place.
Your API key can only access resources in its own workspace.If the presentation belongs to a different workspace, or is stored in private drafts, the request returns 403.
REST API responses use snake_case.Use that field format in your client code and examples.
The response includes a Chronicle URL for the presentation.You can use that URL to open the presentation directly in Chronicle.