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

# List Clippings

> Get the clippings of your organization, most recent first, 20 per page. The clips themselves are returned by [Get a clipping](/public-api/clipping/get).



## OpenAPI

````yaml GET /clipping
openapi: 3.1.0
info:
  title: Postiz Public API
  description: >-
    API for managing social media posts, integrations, and media uploads in
    Postiz.


    ## Authentication


    All endpoints require an API key passed in the `Authorization` header:


    ```

    Authorization: your-api-key

    ```


    Get your API key from Postiz Settings.


    ## Rate Limits


    There is a limit of **30 requests per hour**.


    ## Terminology


    The UI uses `channel`, but the API uses `integration`. They refer to the
    same thing.


    ## Supported Platforms (27)


    **Social Platforms:** X (Twitter), LinkedIn, LinkedIn Page, Facebook,
    Instagram, Instagram Standalone, Threads, Bluesky, Mastodon, Warpcast
    (Farcaster), Nostr, VK


    **Video Platforms:** YouTube, TikTok


    **Community Platforms:** Reddit, Lemmy, Discord, Slack, Telegram


    **Design Platforms:** Pinterest, Dribbble


    **Blogging Platforms:** Medium, Dev.to, Hashnode, WordPress


    **Business:** Google My Business (GMB), Listmonk (newsletters)
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.postiz.com/public/v1
    description: Postiz Cloud
  - url: https://{your-domain}/api/public/v1
    description: Self-hosted
    variables:
      your-domain:
        default: localhost:5000
        description: Your Postiz instance domain
security:
  - ApiKeyAuth: []
tags:
  - name: Integrations
    description: Manage connected social media channels
  - name: Posts
    description: Create, list, and delete posts
  - name: Uploads
    description: Upload media files
  - name: Notifications
    description: View organization notifications
  - name: Analytics
    description: View analytics for integrations and posts
  - name: Video Generation
    description: Generate videos with AI
  - name: Clipping
    description: Turn long YouTube videos into short vertical clips
paths:
  /clipping:
    get:
      tags:
        - Clipping
      summary: List clippings
      description: >-
        Get the clippings of your organization, most recent first, 20 per page.
        The clips themselves are returned by [Get a
        clipping](/public-api/clipping/get).
      operationId: listClippings
      parameters:
        - name: page
          in: query
          required: false
          description: Page number (1-indexed). Defaults to 1.
          schema:
            type: integer
            minimum: 1
            default: 1
          example: 1
      responses:
        '200':
          description: Paginated list of clippings
          content:
            application/json:
              schema:
                type: object
                properties:
                  pages:
                    type: integer
                    description: Total number of pages
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/ClippingSummary'
              example:
                pages: 1
                results:
                  - id: 0b6f1c1e-5f0a-4c55-9a53-2f1f6f7f7c11
                    url: https://www.youtube.com/watch?v=VIDEO_ID
                    status: completed
                    error: null
                    title: How we built our product
                    thumbnail: https://i.ytimg.com/vi/VIDEO_ID/maxresdefault.jpg
                    duration: 2520
                    createdAt: '2026-09-21T10:30:00.000Z'
components:
  schemas:
    ClippingSummary:
      type: object
      properties:
        id:
          type: string
        url:
          type: string
          description: The YouTube URL that was clipped
        status:
          type: string
          enum:
            - analysing
            - transcribing
            - picking
            - rendering
            - completed
            - failed
          description: The step the clipping is on. `completed` and `failed` are final
        error:
          type:
            - string
            - 'null'
          description: >-
            Why the clipping failed. A completed clipping can also carry an
            error when something after the rendering (like the draft posts) went
            wrong
        title:
          type:
            - string
            - 'null'
          description: Title of the source video, known after the analysing step
        thumbnail:
          type:
            - string
            - 'null'
          description: Thumbnail of the source video
        duration:
          type:
            - integer
            - 'null'
          description: Length of the source video in seconds
        createdAt:
          type: string
          format: date-time
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Your Postiz API key

````