Skip to main content
GET
/
api
/
v1
/
presentations
List all presentations
curl --request GET \
  --url https://slides-api.getalai.com/api/v1/presentations \
  --header 'Authorization: Bearer <token>'
{
  "presentations": [
    {
      "id": "<string>",
      "title": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.getalai.com/llms.txt

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

Retrieve a list of all presentations belonging to the authenticated user. Returns presentations sorted by creation date (newest first).

Response

FieldTypeDescription
presentationsarrayList of presentation summaries

Presentation Summary

Each presentation in the array contains:
FieldTypeDescription
idstringUnique identifier for the presentation
titlestringTitle of the presentation

Example Response

{
  "presentations": [
    {
      "id": "abc123-def456-789",
      "title": "Q4 Sales Report"
    },
    {
      "id": "xyz789-abc123-456",
      "title": "Product Roadmap 2025"
    }
  ]
}

Example Request

curl -X GET "https://slides-api.getalai.com/api/v1/presentations" \
  -H "Authorization: Bearer YOUR_API_KEY"
Use the id from this response to perform operations like adding slides, exporting, or deleting presentations.

Authorizations

Authorization
string
header
required

Your Alai API key. Get one from your account settings at app.getalai.com

Response

Successful Response

presentations
PresentationSnippet · object[]
required

List of presentations owned by the user