Resemble AI subpackage_termSubstitutions API

The subpackage_termSubstitutions API from Resemble AI — 2 operation(s) for subpackage_termsubstitutions.

Operations 4

GET /term_substitutions List term substitutions #
POST /term_substitutions Create term substitution #
GET /term_substitutions/{id} Get term substitution #
DELETE /term_substitutions/{id} Delete term substitution #

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/resemble-ai-subpackage-termsubstitutions-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

resemble-ai-subpackage-termsubstitutions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Reference subpackage_account Subpackage Term Substitutions API
  version: 1.0.0
servers:
- url: https://f.cluster.resemble.ai
- url: https://app.resemble.ai/api/v2
tags:
- name: subpackage_termSubstitutions
paths:
  /term_substitutions:
    get:
      operationId: list-term-substitutions
      summary: List term substitutions
      description: List all term substitutions
      tags:
      - subpackage_termSubstitutions
      parameters:
      - name: page
        in: query
        required: true
        schema:
          type: integer
          default: 1
      - name: page_size
        in: query
        required: false
        schema:
          type: integer
          default: 10
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: List of term substitutions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Term_Substitutions_listTermSubstitutions_Response_200'
    post:
      operationId: create-term-substitution
      summary: Create term substitution
      description: Create a new pronunciation substitution
      tags:
      - subpackage_termSubstitutions
      parameters:
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Term substitution created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Term_Substitutions_createTermSubstitution_Response_200'
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                original_text:
                  type: string
                  description: Original text to substitute
                replacement_text:
                  type: string
                  description: Replacement pronunciation
              required:
              - original_text
              - replacement_text
  /term_substitutions/{id}:
    get:
      operationId: get-term-substitution
      summary: Get term substitution
      description: Get term substitution details
      tags:
      - subpackage_termSubstitutions
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Term substitution details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Term_Substitutions_getTermSubstitution_Response_200'
    delete:
      operationId: delete-term-substitution
      summary: Delete term substitution
      description: Delete a term substitution
      tags:
      - subpackage_termSubstitutions
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Term substitution deleted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Term_Substitutions_deleteTermSubstitution_Response_200'
components:
  schemas:
    Term_Substitutions_listTermSubstitutions_Response_200:
      type: object
      properties:
        success:
          type: boolean
        items:
          type: array
          items:
            $ref: '#/components/schemas/TermSubstitutionsGetResponsesContentApplicationJsonSchemaItemsItems'
      title: Term Substitutions_listTermSubstitutions_Response_200
    TermSubstitutionsGetResponsesContentApplicationJsonSchemaItemsItems:
      type: object
      properties: {}
      title: TermSubstitutionsGetResponsesContentApplicationJsonSchemaItemsItems
    Term_Substitutions_createTermSubstitution_Response_200:
      type: object
      properties:
        success:
          type: boolean
        item:
          $ref: '#/components/schemas/TermSubstitutionsPostResponsesContentApplicationJsonSchemaItem'
      title: Term Substitutions_createTermSubstitution_Response_200
    Term_Substitutions_getTermSubstitution_Response_200:
      type: object
      properties:
        success:
          type: boolean
        item:
          $ref: '#/components/schemas/TermSubstitutionsIdGetResponsesContentApplicationJsonSchemaItem'
      title: Term Substitutions_getTermSubstitution_Response_200
    Term_Substitutions_deleteTermSubstitution_Response_200:
      type: object
      properties:
        success:
          type: boolean
      title: Term Substitutions_deleteTermSubstitution_Response_200
    TermSubstitutionsIdGetResponsesContentApplicationJsonSchemaItem:
      type: object
      properties: {}
      title: TermSubstitutionsIdGetResponsesContentApplicationJsonSchemaItem
    TermSubstitutionsPostResponsesContentApplicationJsonSchemaItem:
      type: object
      properties: {}
      title: TermSubstitutionsPostResponsesContentApplicationJsonSchemaItem
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: API token from https://app.resemble.ai/account/api