Resemble AI subpackage_audioSourceTracing API

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

Operations 2

GET /audio_source_tracings List audio source tracings #
GET /audio_source_tracings/{uuid} Get audio source tracing #

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-audiosourcetracing-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-audiosourcetracing-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Reference subpackage_account Subpackage Audio Source Tracing API
  version: 1.0.0
servers:
- url: https://f.cluster.resemble.ai
- url: https://app.resemble.ai/api/v2
tags:
- name: subpackage_audioSourceTracing
paths:
  /audio_source_tracings:
    get:
      operationId: list-audio-source-tracings
      summary: List audio source tracings
      description: Retrieve a paginated list of all source tracing reports for the authenticated user's team
      tags:
      - subpackage_audioSourceTracing
      parameters:
      - name: page
        in: query
        description: Page number (must be >= 1)
        required: true
        schema:
          type: integer
      - name: page_size
        in: query
        description: Number of items per page (10-1000)
        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 source tracing reports
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Audio_Source_Tracing_listAudioSourceTracings_Response_200'
  /audio_source_tracings/{uuid}:
    get:
      operationId: get-audio-source-tracing
      summary: Get audio source tracing
      description: Retrieve a single source tracing report by its UUID
      tags:
      - subpackage_audioSourceTracing
      parameters:
      - name: uuid
        in: path
        description: The UUID of the source tracing report
        required: true
        schema:
          type: string
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Source tracing report
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Audio_Source_Tracing_getAudioSourceTracing_Response_200'
        '404':
          description: Source tracing report not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      properties:
        success:
          type: boolean
        error:
          type: string
        errors:
          type: object
          additionalProperties:
            type: array
            items:
              type: string
        message:
          type: string
      title: Error
    Audio_Source_Tracing_getAudioSourceTracing_Response_200:
      type: object
      properties:
        success:
          type: boolean
        item:
          $ref: '#/components/schemas/AudioSourceTracingsUuidGetResponsesContentApplicationJsonSchemaItem'
      title: Audio Source Tracing_getAudioSourceTracing_Response_200
    AudioSourceTracingsUuidGetResponsesContentApplicationJsonSchemaItem:
      type: object
      properties:
        uuid:
          type: string
        results:
          $ref: '#/components/schemas/AudioSourceTracingsUuidGetResponsesContentApplicationJsonSchemaItemResults'
        created_at:
          type: string
          format: date-time
        detect_uuid:
          type: string
          description: UUID of the associated detect object
      title: AudioSourceTracingsUuidGetResponsesContentApplicationJsonSchemaItem
    AudioSourceTracingsUuidGetResponsesContentApplicationJsonSchemaItemResults:
      type: object
      properties:
        label:
          type: string
          description: Identified source (e.g., resemble_ai, elevenlabs) or "real" if audio is not synthetic
        error_message:
          type:
          - string
          - 'null'
      title: AudioSourceTracingsUuidGetResponsesContentApplicationJsonSchemaItemResults
    Audio_Source_Tracing_listAudioSourceTracings_Response_200:
      type: object
      properties:
        success:
          type: boolean
        page:
          type: integer
        num_pages:
          type: integer
        page_size:
          type: integer
        total_count:
          type: integer
        items:
          type: array
          items:
            $ref: '#/components/schemas/AudioSourceTracingsGetResponsesContentApplicationJsonSchemaItemsItems'
      title: Audio Source Tracing_listAudioSourceTracings_Response_200
    AudioSourceTracingsGetResponsesContentApplicationJsonSchemaItemsItems:
      type: object
      properties:
        uuid:
          type: string
        results:
          $ref: '#/components/schemas/AudioSourceTracingsGetResponsesContentApplicationJsonSchemaItemsItemsResults'
        created_at:
          type: string
          format: date-time
        detect_uuid:
          type: string
          description: UUID of the associated detect object
      title: AudioSourceTracingsGetResponsesContentApplicationJsonSchemaItemsItems
    AudioSourceTracingsGetResponsesContentApplicationJsonSchemaItemsItemsResults:
      type: object
      properties:
        label:
          type: string
          description: Identified source (e.g., resemble_ai, elevenlabs) or "real" if audio is not synthetic
        error_message:
          type:
          - string
          - 'null'
      title: AudioSourceTracingsGetResponsesContentApplicationJsonSchemaItemsItemsResults
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: API token from https://app.resemble.ai/account/api