Opus censor-jobs API

The censor-jobs API from Opus — 2 operation(s) for censor-jobs.

Operations 2

POST /api/censor-jobs #
GET /api/censor-jobs/{jobId} #

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/opus-censor-jobs-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

opus-censor-jobs-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Clip Censor Jobs API
  description: Clip API documentation
  version: '1.0'
  contact: {}
servers:
- url: https://api.opus.pro
  description: OpusClip Open API Production Server
tags:
- name: censor-jobs
paths:
  /api/censor-jobs:
    post:
      operationId: CensorJobController_createCensorJob
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CensorJobRequest'
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CensorJobResponse'
      security:
      - bearer: []
      tags:
      - censor-jobs
  /api/censor-jobs/{jobId}:
    get:
      operationId: CensorJobController_getCensorJob
      parameters:
      - name: jobId
        required: true
        in: path
        description: The jobId that you want to get the status of.
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CensorJobStatusResponse'
      security:
      - bearer: []
      tags:
      - censor-jobs
components:
  schemas:
    CensorJobResponse:
      type: object
      properties:
        jobId:
          type: string
          description: If the job was created successfully, this will contain the job ID.
        message:
          type: string
          description: A message indicating the result of the job creation.
    CensorJobRequest:
      type: object
      properties:
        projectId:
          type: string
          description: The project id that you want to censor.
          example: P0000000demo
        clipId:
          type: string
          description: The clip id that you want to censor.
          example: lDIOHRzdac
        options:
          description: Some options for the censor job.
          example:
            beepSound: false
          allOf:
          - $ref: '#/components/schemas/CensorJobOptions'
      required:
      - projectId
      - clipId
    CensorJobOptions:
      type: object
      properties:
        beepSound:
          type: boolean
          description: Use beep sound instead of the censored words.
          example: true
    CensorJobStatusResponse:
      type: object
      properties:
        status:
          type: string
          enum:
          - CONCLUDED
          - FAILED
          - PROCESSING
          - QUEUED
          - UNKNOWN
          description: The status of the censor job.
        error:
          type: string
          description: Error message.
      required:
      - status
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http