Resemble AI subpackage_identity API

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

Operations 3

GET /identity List identities #
POST /identity Create identity #
POST /identity/search Search identities #

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-identity-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-identity-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Reference subpackage_account Subpackage Identity API
  version: 1.0.0
servers:
- url: https://f.cluster.resemble.ai
- url: https://app.resemble.ai/api/v2
tags:
- name: subpackage_identity
paths:
  /identity:
    get:
      operationId: list-identities
      summary: List identities
      description: List all speaker identities
      tags:
      - subpackage_identity
      parameters:
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: List of identities
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Identity_listIdentities_Response_200'
    post:
      operationId: create-identity
      summary: Create identity
      description: Create a new speaker identity
      tags:
      - subpackage_identity
      parameters:
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Identity created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Identity_createIdentity_Response_200'
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                audio_url:
                  type: string
                  format: uri
                name:
                  type: string
              required:
              - audio_url
  /identity/search:
    post:
      operationId: search-identities
      summary: Search identities
      description: Search for matching speaker identities
      tags:
      - subpackage_identity
      parameters:
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Search results
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Identity_searchIdentities_Response_200'
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                audio_url:
                  type: string
                  format: uri
              required:
              - audio_url
components:
  schemas:
    Identity_listIdentities_Response_200:
      type: object
      properties:
        success:
          type: boolean
        items:
          type: array
          items:
            $ref: '#/components/schemas/IdentityGetResponsesContentApplicationJsonSchemaItemsItems'
      title: Identity_listIdentities_Response_200
    IdentityGetResponsesContentApplicationJsonSchemaItemsItems:
      type: object
      properties: {}
      title: IdentityGetResponsesContentApplicationJsonSchemaItemsItems
    IdentitySearchPostResponsesContentApplicationJsonSchemaMatchesItems:
      type: object
      properties: {}
      title: IdentitySearchPostResponsesContentApplicationJsonSchemaMatchesItems
    Identity_searchIdentities_Response_200:
      type: object
      properties:
        success:
          type: boolean
        matches:
          type: array
          items:
            $ref: '#/components/schemas/IdentitySearchPostResponsesContentApplicationJsonSchemaMatchesItems'
      title: Identity_searchIdentities_Response_200
    Identity_createIdentity_Response_200:
      type: object
      properties:
        success:
          type: boolean
        item:
          $ref: '#/components/schemas/IdentityPostResponsesContentApplicationJsonSchemaItem'
      title: Identity_createIdentity_Response_200
    IdentityPostResponsesContentApplicationJsonSchemaItem:
      type: object
      properties: {}
      title: IdentityPostResponsesContentApplicationJsonSchemaItem
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: API token from https://app.resemble.ai/account/api