Tavus Replacements API

The Replacements API from Tavus — 2 operation(s) for replacements.

Operations 4

POST /v2/replacements Create Replacement #
GET /v2/replacements List Replacements #
GET /v2/replacements/{replacement_id} Get Replacement #
DELETE /v2/replacements/{replacement_id} Delete Replacement #

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/tavus-replacements-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

tavus-replacements-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Tavus Developer API Collection Conversations Replacements API
  version: 1.0.0
  contact: {}
servers:
- url: https://tavusapi.com
security:
- apiKey: []
tags:
- name: Replacements
paths:
  /v2/replacements:
    post:
      tags:
      - Replacements
      summary: Create Replacement
      deprecated: true
      description: 'This endpoint is no longer supported by Tavus.


        This endpoint creates a test word replacement request that will modify specific words or phrases in an existing video.

        '
      operationId: createReplacement
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                original_video_url:
                  type: string
                  description: A direct link to the video that will be modified. This should be a publicly accessible / presigned S3 URL.
                  example: https://example.com/video.mp4
                transcription_id:
                  type: string
                  example: t0108f2d24k2a
                  description: A unique identifier for the transcription.
                new_transcript:
                  type: string
                  example: Hello John, I'm excited to show you our new product!
                  description: The new text that will replace the old text in the video. This should be an edited version of the text returned from the transcription service (referenced by transcription_id). Both the original transcription and this new text are used to identify which words to replace.
                callback_url:
                  type: string
                  description: A url that will receive a callback on completion of the replacement or on error.
                  example: https://your-callback-url.com
                replacement_name:
                  type: string
                  description: An optional name for the replacement.
                  example: My First Replacement
              required:
              - original_video_url
              - new_transcript
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  replacement_id:
                    type: string
                    example: w0108f2d24k2a
                    description: A unique identifier for the replacement.
                  status:
                    type: string
                    description: The status of the replacement.
                  created_at:
                    type: string
                    description: The date and time the replacement was created.
      security:
      - apiKey: []
    get:
      tags:
      - Replacements
      summary: List Replacements
      deprecated: true
      description: 'This endpoint is no longer supported by Tavus.


        This endpoint returns a list of all Replacements created by the account associated with the API Key in use.

        '
      operationId: listReplacements
      parameters:
      - in: query
        name: limit
        schema:
          type: integer
        description: The number of replacements to return per page. Default is 10.
      - in: query
        name: page
        schema:
          type: integer
        description: The page number to return. Default is 1.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        replacement_id:
                          type: string
                          description: A unique identifier for the replacement.
                          example: w0108f2d24k2a
                        replacement_name:
                          type: string
                          description: The name of the replacement.
                          example: My First Replacement
                        status:
                          type: string
                          description: The status of the replacement. Can be either `started`, `completed`, or `error`.
                        created_at:
                          type: string
                          description: The date and time the replacement was created.
                  total_count:
                    type: integer
                    description: The total number of replacements that fit the query.
      security:
      - apiKey: []
  /v2/replacements/{replacement_id}:
    get:
      tags:
      - Replacements
      summary: Get Replacement
      deprecated: true
      description: 'This endpoint is no longer supported by Tavus.


        This endpoint returns a single replacement by its unique identifier.

        '
      operationId: getReplacement
      parameters:
      - in: path
        name: replacement_id
        required: true
        schema:
          type: string
        description: A unique identifier for the replacement.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  replacement_id:
                    type: string
                    example: w0108f2d24k2a
                    description: A unique identifier for the replacement.
                  replacement_name:
                    type: string
                    description: The name of the replacement.
                  status:
                    type: string
                    description: The status of the replacement.
                  created_at:
                    type: string
                    description: The date and time the replacement was created.
      security:
      - apiKey: []
    delete:
      tags:
      - Replacements
      summary: Delete Replacement
      deprecated: true
      description: 'This endpoint is no longer supported by Tavus.


        This endpoint deletes a single replacement by its unique identifier.

        '
      operationId: deleteReplacement
      parameters:
      - in: path
        name: replacement_id
        required: true
        schema:
          type: string
        description: A unique identifier for the replacement.
      responses:
        '204':
          description: ''
      security:
      - apiKey: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key