Resemble AI · Capability

API Reference — subpackage_audioSourceTracing

API Reference — subpackage_audioSourceTracing. 2 operations. Lead operation: List audio source tracings. Self-contained Naftiko capability covering one Resemble Ai business surface.

Run with Naftiko Resemble Aisubpackage_audioSourceTracing

What You Can Do

GET
Listaudiosourcetracings — List audio source tracings
/v1/audio-source-tracings
GET
Getaudiosourcetracing — Get audio source tracing
/v1/audio-source-tracings/{uuid}

MCP Tools

list-audio-source-tracings

List audio source tracings

read-only idempotent
get-audio-source-tracing

Get audio source tracing

read-only idempotent

Capability Spec

resemble-ai-subpackage-audiosourcetracing.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: API Reference — subpackage_audioSourceTracing
  description: 'API Reference — subpackage_audioSourceTracing. 2 operations. Lead operation: List audio source tracings. Self-contained
    Naftiko capability covering one Resemble Ai business surface.'
  tags:
  - Resemble Ai
  - subpackage_audioSourceTracing
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    RESEMBLE_AI_API_KEY: RESEMBLE_AI_API_KEY
capability:
  consumes:
  - type: http
    namespace: resemble-ai-subpackage-audiosourcetracing
    baseUri: https://f.cluster.resemble.ai
    description: API Reference — subpackage_audioSourceTracing business capability. Self-contained, no shared references.
    resources:
    - name: audio_source_tracings
      path: /audio_source_tracings
      operations:
      - name: listaudiosourcetracings
        method: GET
        description: List audio source tracings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: page
          in: query
          type: integer
          description: Page number (must be >= 1)
          required: true
        - name: page_size
          in: query
          type: integer
          description: Number of items per page (10-1000)
        - name: Authorization
          in: header
          type: string
          description: API token from https://app.resemble.ai/account/api
          required: true
    - name: audio_source_tracings-uuid
      path: /audio_source_tracings/{uuid}
      operations:
      - name: getaudiosourcetracing
        method: GET
        description: Get audio source tracing
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: uuid
          in: path
          type: string
          description: The UUID of the source tracing report
          required: true
        - name: Authorization
          in: header
          type: string
          description: API token from https://app.resemble.ai/account/api
          required: true
    authentication:
      type: bearer
      token: '{{env.RESEMBLE_AI_API_KEY}}'
  exposes:
  - type: rest
    namespace: resemble-ai-subpackage-audiosourcetracing-rest
    port: 8080
    description: REST adapter for API Reference — subpackage_audioSourceTracing. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/audio-source-tracings
      name: audio-source-tracings
      description: REST surface for audio_source_tracings.
      operations:
      - method: GET
        name: listaudiosourcetracings
        description: List audio source tracings
        call: resemble-ai-subpackage-audiosourcetracing.listaudiosourcetracings
        with:
          page: rest.page
          page_size: rest.page_size
          Authorization: rest.Authorization
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/audio-source-tracings/{uuid}
      name: audio-source-tracings-uuid
      description: REST surface for audio_source_tracings-uuid.
      operations:
      - method: GET
        name: getaudiosourcetracing
        description: Get audio source tracing
        call: resemble-ai-subpackage-audiosourcetracing.getaudiosourcetracing
        with:
          uuid: rest.uuid
          Authorization: rest.Authorization
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: resemble-ai-subpackage-audiosourcetracing-mcp
    port: 9090
    transport: http
    description: MCP adapter for API Reference — subpackage_audioSourceTracing. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-audio-source-tracings
      description: List audio source tracings
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: resemble-ai-subpackage-audiosourcetracing.listaudiosourcetracings
      with:
        page: tools.page
        page_size: tools.page_size
        Authorization: tools.Authorization
      outputParameters:
      - type: object
        mapping: $.
    - name: get-audio-source-tracing
      description: Get audio source tracing
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: resemble-ai-subpackage-audiosourcetracing.getaudiosourcetracing
      with:
        uuid: tools.uuid
        Authorization: tools.Authorization
      outputParameters:
      - type: object
        mapping: $.