OpusClip collection-content API

The collection-content API from OpusClip — 2 operation(s) for collection-content.

Operations 2

POST /api/collection-contents/delete-collection-contents #
POST /api/collection-contents #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/opusclip-collection-content-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

opusclip-collection-content-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Clip Collection Content API
  description: Clip API documentation
  version: '1.0'
  contact: {}
servers:
- url: https://api.opus.pro
  description: OpusClip Open API Production Server
tags:
- name: collection-content
paths:
  /api/collection-contents/delete-collection-contents:
    post:
      operationId: CollectionContentController_deleteCollectionContents
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DeleteCollectionContentCmd'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                allOf:
                - properties:
                    data:
                      type: string
                      description: Show action execute status
                      example: success
      security:
      - bearer: []
      tags:
      - collection-content
  /api/collection-contents:
    post:
      operationId: CollectionContentController_createCollectionContent
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateCollectionContentCmd'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/SuccessResponse'
                - properties:
                    data:
                      $ref: '#/components/schemas/CollectionContentDto'
      security:
      - bearer: []
      tags:
      - collection-content
components:
  schemas:
    DeleteCollectionContentCmd:
      type: object
      properties:
        q:
          type: string
          description: "**Query type**\n `findByCollectionIdAndContentId` is the only valid value, means delete relation by collectionId + contentId"
          enum:
          - findByCollectionIdAndContentId
        collectionId:
          type: string
          description: The collectionID of the collection that you want to remove the clip from.
          example: xmAwhhFi0IJt
        contentId:
          type: string
          description: 'The ID of the clip that you want to remove from the collection. FullClipId: {projectId}.{curationId}'
          example: P0000000demo.CUexample2
      required:
      - q
      - collectionId
      - contentId
    CreateCollectionContentCmd:
      type: object
      properties:
        collectionId:
          type: string
          description: The collectionID of the collection that you want to add the clip to.
          example: xmAwhhFi0IJt
        contentId:
          type: string
          description: 'The ID of the clip that you want to add to the collection. FullClipId: {projectId}.{curationId}'
          example: P0000000demo.CUexample2
      required:
      - collectionId
      - contentId
    CollectionContentDto:
      type: object
      properties:
        collectionId:
          type: string
          description: The collectionID of the collection that the clip was added to.
          example: xmAwhhFi0IJt
        contentId:
          type: string
          description: 'The ID of the clip that has been added to the collection. FullClipId: {projectId}.{curationId}'
          example: P0000000demo.CUexample2
      required:
      - collectionId
      - contentId
    SuccessResponse:
      type: object
      properties:
        data:
          type: object
      required:
      - data
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http