> ## 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.

# Get Presentations

> Returns a list of all presentations owned by the authenticated user, including their IDs and titles.

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

***

## Response

| Field           | Type  | Description                    |
| --------------- | ----- | ------------------------------ |
| `presentations` | array | List of presentation summaries |

### Presentation Summary

Each presentation in the array contains:

| Field   | Type   | Description                            |
| ------- | ------ | -------------------------------------- |
| `id`    | string | Unique identifier for the presentation |
| `title` | string | Title of the presentation              |

***

## Example Response

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

***

## Example Request

```bash theme={null}
curl -X GET "https://slides-api.getalai.com/api/v1/presentations" \
  -H "Authorization: Bearer YOUR_API_KEY"
```

<Tip>
  Use the `id` from this response to perform operations like adding slides, exporting, or deleting presentations.
</Tip>


## OpenAPI

````yaml GET /api/v1/presentations
openapi: 3.1.0
info:
  title: Alai API
  description: API endpoints for programmatic access to Alai presentation generation
  version: 1.0.0
servers:
  - url: https://slides-api.getalai.com
security:
  - BearerAuth: []
paths:
  /api/v1/presentations:
    get:
      tags:
        - External API
      summary: List all presentations
      description: >-
        Returns a list of all presentations owned by the authenticated user,
        including their IDs and titles.
      operationId: get_presentations_api_v1_presentations_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetPresentationsResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    GetPresentationsResponse:
      properties:
        presentations:
          items:
            $ref: '#/components/schemas/PresentationSnippet'
          type: array
          title: Presentations
          description: List of presentations owned by the user
      type: object
      required:
        - presentations
      title: GetPresentationsResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    PresentationSnippet:
      properties:
        id:
          type: string
          title: Id
          description: Unique presentation identifier
        title:
          type: string
          title: Title
          description: Presentation title
      type: object
      required:
        - id
        - title
      title: PresentationSnippet
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Your Alai API key. Get one from your account settings at app.getalai.com

````