> ## Documentation Index
> Fetch the complete documentation index at: https://docs.akapulu.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List clips

> List clips on the account, newest first.

List clips on the account, newest first.

Each row includes `id`, `name`, `favorite_id`, and `take_count`. Take details are on [Get clip](/api-reference/clips/get) and [Get take](/api-reference/takes/get).

How clips and takes fit together is in [Overview](/guides/clips/overview).


## OpenAPI

````yaml openapi/akapulu.json GET /clips
openapi: 3.1.0
info:
  title: Akapulu Labs API
  version: 1.0.0
  description: Public Akapulu Labs API reference.
servers:
  - url: https://akapulu.com/api
security:
  - bearerAuth: []
paths:
  /clips:
    get:
      summary: List clips
      description: List clips on the account, newest first.
      responses:
        '200':
          description: Clips listed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClipListResponse'
              examples:
                success:
                  value:
                    clips:
                      - id: 11111111-2222-3333-4444-555555555555
                        name: Product intro
                        favorite_id: 22222222-3333-4444-5555-666666666666
                        take_count: 1
                        created_at: '2026-08-25T20:00:00+00:00'
                        updated_at: '2026-08-25T20:00:12+00:00'
        '401':
          description: Missing or invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
              examples:
                default:
                  value:
                    error: Invalid API key
components:
  schemas:
    ClipListResponse:
      type: object
      required:
        - clips
      properties:
        clips:
          type: array
          items:
            $ref: '#/components/schemas/ClipSummary'
    ApiError:
      type: object
      required:
        - error
      properties:
        error:
          type: string
          description: Human-readable error message.
    ClipSummary:
      type: object
      required:
        - id
        - name
        - favorite_id
        - take_count
        - created_at
        - updated_at
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
        favorite_id:
          type:
            - string
            - 'null'
          format: uuid
          description: Favorite take on this clip, or null.
        take_count:
          type: integer
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````