Resemble AI · Capability

API Reference — subpackage_audioEdit

API Reference — subpackage_audioEdit. 3 operations. Lead operation: List audio edits. Self-contained Naftiko capability covering one Resemble Ai business surface.

Run with Naftiko Resemble Aisubpackage_audioEdit

What You Can Do

GET
Listaudioedits — List audio edits
/v1/edit
POST
Createaudioedit — Create audio edit
/v1/edit
GET
Getaudioedit — Get audio edit
/v1/edit/{audio-edit-uuid}

MCP Tools

list-audio-edits

List audio edits

read-only idempotent
create-audio-edit

Create audio edit

get-audio-edit

Get audio edit

read-only idempotent

Capability Spec

resemble-ai-subpackage-audioedit.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: API Reference — subpackage_audioEdit
  description: 'API Reference — subpackage_audioEdit. 3 operations. Lead operation: List audio edits. Self-contained Naftiko
    capability covering one Resemble Ai business surface.'
  tags:
  - Resemble Ai
  - subpackage_audioEdit
  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-audioedit
    baseUri: https://f.cluster.resemble.ai
    description: API Reference — subpackage_audioEdit business capability. Self-contained, no shared references.
    resources:
    - name: edit
      path: /edit
      operations:
      - name: listaudioedits
        method: GET
        description: List audio edits
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: page
          in: query
          type: integer
          required: true
        - name: Authorization
          in: header
          type: string
          description: API token from https://app.resemble.ai/account/api
          required: true
      - name: createaudioedit
        method: POST
        description: Create audio edit
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: Authorization
          in: header
          type: string
          description: API token from https://app.resemble.ai/account/api
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: edit-audio_edit_uuid
      path: /edit/{audio_edit_uuid}
      operations:
      - name: getaudioedit
        method: GET
        description: Get audio edit
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: audio_edit_uuid
          in: path
          type: string
          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-audioedit-rest
    port: 8080
    description: REST adapter for API Reference — subpackage_audioEdit. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/edit
      name: edit
      description: REST surface for edit.
      operations:
      - method: GET
        name: listaudioedits
        description: List audio edits
        call: resemble-ai-subpackage-audioedit.listaudioedits
        with:
          page: rest.page
          Authorization: rest.Authorization
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createaudioedit
        description: Create audio edit
        call: resemble-ai-subpackage-audioedit.createaudioedit
        with:
          Authorization: rest.Authorization
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/edit/{audio-edit-uuid}
      name: edit-audio-edit-uuid
      description: REST surface for edit-audio_edit_uuid.
      operations:
      - method: GET
        name: getaudioedit
        description: Get audio edit
        call: resemble-ai-subpackage-audioedit.getaudioedit
        with:
          audio_edit_uuid: rest.audio_edit_uuid
          Authorization: rest.Authorization
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: resemble-ai-subpackage-audioedit-mcp
    port: 9090
    transport: http
    description: MCP adapter for API Reference — subpackage_audioEdit. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-audio-edits
      description: List audio edits
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: resemble-ai-subpackage-audioedit.listaudioedits
      with:
        page: tools.page
        Authorization: tools.Authorization
      outputParameters:
      - type: object
        mapping: $.
    - name: create-audio-edit
      description: Create audio edit
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: resemble-ai-subpackage-audioedit.createaudioedit
      with:
        Authorization: tools.Authorization
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-audio-edit
      description: Get audio edit
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: resemble-ai-subpackage-audioedit.getaudioedit
      with:
        audio_edit_uuid: tools.audio_edit_uuid
        Authorization: tools.Authorization
      outputParameters:
      - type: object
        mapping: $.