{
  "info": {
    "name": "ElevenLabs — mcp.ai",
    "description": "REST API for the ElevenLabs MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/elevenlabs",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "elevenlabs_add_chapter",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/chapter",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "chapter"
          ]
        },
        "description": "Create Chapter. Creates a new chapter either as blank or from a URL.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\",\n  \"name\": \"\",\n  \"from_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_add_from_rules",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/from/rules",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "from",
            "rules"
          ]
        },
        "description": "Add A Pronunciation Dictionary. Creates a new pronunciation dictionary from provided rules.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"rules\": \"\",\n  \"name\": \"\",\n  \"description\": \"\",\n  \"workspace_access\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_add_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "member"
          ]
        },
        "description": "Add Member To User Group. Adds a member of your workspace to the specified group. Requires `group_members_manage` permission.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"group_id\": \"\",\n  \"email\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_add_rules",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/rules",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "rules"
          ]
        },
        "description": "Add Rules To The Pronunciation Dictionary. Add rules to the pronunciation dictionary. If a rule with the same string_to_replace already exists, it will be replaced.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"pronunciation_dictionary_id\": \"\",\n  \"rules\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_add_sharing_voice",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/sharing/voice",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "sharing",
            "voice"
          ]
        },
        "description": "Add Shared Voice. Add a shared voice to your collection of voices.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"public_user_id\": \"\",\n  \"voice_id\": \"\",\n  \"new_name\": \"\",\n  \"bookmarked\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_audio_native_update_content_from_url",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/audio/native/update/content/from/url",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "audio",
            "native",
            "update",
            "content",
            "from",
            "url"
          ]
        },
        "description": "Update Audio-Native Content From Url. Finds an AudioNative project matching the provided URL, extracts content from the URL, updates the project content, and queues it for conversion and auto-publishi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"author\": \"\",\n  \"title\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_compose_plan",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/compose/plan",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "compose",
            "plan"
          ]
        },
        "description": "Generate Composition Plan. Generate a composition plan from a prompt.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"prompt\": \"\",\n  \"music_length_ms\": 0,\n  \"source_composition_plan\": {},\n  \"model_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_convert_chapter_endpoint",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/convert/chapter/endpoint",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "convert",
            "chapter",
            "endpoint"
          ]
        },
        "description": "Convert Chapter. Starts conversion of a specific chapter.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\",\n  \"chapter_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_convert_project_endpoint",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/convert/project/endpoint",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "convert",
            "project",
            "endpoint"
          ]
        },
        "description": "Convert Studio Project. Starts conversion of a Studio project and all of its chapters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_create_auth_connection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/auth/connection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "auth",
            "connection"
          ]
        },
        "description": "Create Workspace Auth Connection. Create a new OAuth2 auth connection for the workspace",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_create_podcast",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/podcast",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "podcast"
          ]
        },
        "description": "Create Podcast. Create and auto-convert a podcast project. Currently, the LLM cost is covered by us but you will still be charged for the audio generation. In the future, you will be charged for both ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"safety-identifier\": \"\",\n  \"model_id\": \"\",\n  \"mode\": {},\n  \"source\": \"\",\n  \"quality_preset\": \"\",\n  \"duration_scale\": \"\",\n  \"language\": \"\",\n  \"intro\": \"\",\n  \"outro\": \"\",\n  \"instructions_prompt\": \"\",\n  \"highlights\": \"\",\n  \"callback_url\": \"\",\n  \"apply_text_normalization\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_create_pvc_voice",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/pvc/voice",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "pvc",
            "voice"
          ]
        },
        "description": "Create Pvc Voice. Creates a new PVC voice with metadata but no samples",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"language\": \"\",\n  \"description\": \"\",\n  \"labels\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_create_service_account",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/service/account",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "service",
            "account"
          ]
        },
        "description": "Create Service Account. Create a new service account in the workspace. By default, a workspace can have up to 20 service accounts. Enterprise customers may request an increase to this limit, up to 100",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"default_sharing_groups\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_create_service_account_api_key",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/service/account/api/key",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "service",
            "account",
            "api",
            "key"
          ]
        },
        "description": "Create Service Account Api Key. Create a new API key for a service account",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"service_account_user_id\": \"\",\n  \"name\": \"\",\n  \"permissions\": \"\",\n  \"character_limit\": 0,\n  \"allowed_ips\": \"\",\n  \"third_party_disable_allowed\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_create_speech_engine",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/speech/engine",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "speech",
            "engine"
          ]
        },
        "description": "Create Speech Engine. Create a new Speech Engine resource",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"speech_engine\": {},\n  \"asr\": {},\n  \"tts\": {},\n  \"turn\": {},\n  \"vad\": {},\n  \"conversation\": {},\n  \"privacy\": {},\n  \"call_limits\": {},\n  \"language\": \"\",\n  \"tags\": \"\",\n  \"overrides\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_create_voice",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/voice",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "voice"
          ]
        },
        "description": "Create A New Voice From Voice Preview. Create a voice from previously generated voice preview. This endpoint should be called after you fetched a generated_voice_id using POST /v1/text-to-voice/design",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"voice_name\": \"\",\n  \"voice_description\": \"\",\n  \"generated_voice_id\": \"\",\n  \"labels\": {},\n  \"played_not_selected_voice_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_create_workspace_webhook_route",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/workspace/webhook/route",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "workspace",
            "webhook",
            "route"
          ]
        },
        "description": "Create Workspace Webhook. Create a new webhook for the workspace with the specified authentication type.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"settings\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_delete_audio_isolation_history_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/audio/isolation/history/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "audio",
            "isolation",
            "history",
            "item"
          ]
        },
        "description": "Delete Audio Isolation History Item. Deletes a specific audio isolation history item and the associated media files.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"history_item_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_delete_auth_connection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/auth/connection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "auth",
            "connection"
          ]
        },
        "description": "Delete Workspace Auth Connection. Delete an auth connection",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"auth_connection_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_delete_chapter_endpoint",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/chapter/endpoint",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "chapter",
            "endpoint"
          ]
        },
        "description": "Delete Chapter. Deletes a chapter.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\",\n  \"chapter_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_delete_dubbing",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/dubbing",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "dubbing"
          ]
        },
        "description": "Delete Dubbing. Deletes a dubbing project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dubbing_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_delete_finetune",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/finetune",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "finetune"
          ]
        },
        "description": "Delete Music Finetune. Delete a music finetune",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"finetune_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_delete_invite",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/invite",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "invite"
          ]
        },
        "description": "Delete Existing Invitation. Invalidates an existing email invitation. The invitation will still show up in the inbox it has been delivered to, but activating it to join the workspace won't work. This ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_delete_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "project"
          ]
        },
        "description": "Delete Studio Project. Deletes a Studio project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_delete_pvc_voice_sample",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/pvc/voice/sample",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "pvc",
            "voice",
            "sample"
          ]
        },
        "description": "Delete Pvc Voice Sample. Delete a sample from a PVC voice.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"voice_id\": \"\",\n  \"sample_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_delete_sample",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/sample",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "sample"
          ]
        },
        "description": "Delete Sample. Removes a sample by its ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"voice_id\": \"\",\n  \"sample_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_delete_service_account_api_key",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/service/account/api/key",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "service",
            "account",
            "api",
            "key"
          ]
        },
        "description": "Delete Service Account Api Key. Delete an existing API key for a service account",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"service_account_user_id\": \"\",\n  \"api_key_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_delete_speech_engine",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/speech/engine",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "speech",
            "engine"
          ]
        },
        "description": "Delete Speech Engine. Delete a Speech Engine resource",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"speech_engine_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_delete_speech_history_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/speech/history/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "speech",
            "history",
            "item"
          ]
        },
        "description": "Delete History Item. Delete a history item by its ID",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"history_item_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_delete_transcript_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/transcript/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "transcript",
            "by",
            "id"
          ]
        },
        "description": "Delete Transcript By Id. Delete a previously generated transcript by its ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"transcription_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_delete_voice",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/voice",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "voice"
          ]
        },
        "description": "Delete Voice. Deletes a voice by its ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"voice_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_delete_workspace_webhook_route",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/workspace/webhook/route",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "workspace",
            "webhook",
            "route"
          ]
        },
        "description": "Delete Workspace Webhook. Delete the specified workspace webhook",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"webhook_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_disable",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/disable",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "disable"
          ]
        },
        "description": "Disable Api Key. Disable the API key used to authenticate this request. Requires the query parameter `api_key_name=self` as an explicit confirmation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"api_key_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_download_speech_history_items",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/download/speech/history/items",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "download",
            "speech",
            "history",
            "items"
          ]
        },
        "description": "Download History Items. Download one or more history items. If one history item ID is provided, we will return a single audio file. If more than one history item IDs are provided, we will provide the ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"history_item_ids\": \"\",\n  \"output_format\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_dubbing_language_create",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/dubbing/language/create",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "dubbing",
            "language",
            "create"
          ]
        },
        "description": "Create Dubbing Language Target. Queue a language target for a project (starts once the project is ready).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\",\n  \"target_language\": \"\",\n  \"voice_settings\": {},\n  \"translations\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_dubbing_language_delete",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/dubbing/language/delete",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "dubbing",
            "language",
            "delete"
          ]
        },
        "description": "Delete Dubbing Language Target. Delete a language target.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\",\n  \"language_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_dubbing_language_get",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/dubbing/language/get",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "dubbing",
            "language",
            "get"
          ]
        },
        "description": "Get Dubbing Language Target. Full language-target detail.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\",\n  \"language_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_dubbing_language_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/dubbing/language/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "dubbing",
            "language",
            "list"
          ]
        },
        "description": "List Dubbing Language Targets. List a project's language targets (cursor-paginated).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\",\n  \"cursor\": \"\",\n  \"page_size\": 0,\n  \"status\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_dubbing_project_delete",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/dubbing/project/delete",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "dubbing",
            "project",
            "delete"
          ]
        },
        "description": "Delete Dubbing Project. Delete a project and its language targets.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_dubbing_project_get",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/dubbing/project/get",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "dubbing",
            "project",
            "get"
          ]
        },
        "description": "Get Dubbing Project. Full project detail, including its language target ids.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_dubbing_project_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/dubbing/project/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "dubbing",
            "project",
            "list"
          ]
        },
        "description": "List Dubbing Projects. List the workspace's dubbing projects (cursor-paginated).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cursor\": \"\",\n  \"page_size\": 0,\n  \"status\": \"\",\n  \"sort_direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_dubbing_target_transcript_get",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/dubbing/target/transcript/get",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "dubbing",
            "target",
            "transcript",
            "get"
          ]
        },
        "description": "Get Dubbing Target Transcript. A language target's transcript: source segments with their translations.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\",\n  \"language_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_dubbing_target_transcript_regenerate",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/dubbing/target/transcript/regenerate",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "dubbing",
            "target",
            "transcript",
            "regenerate"
          ]
        },
        "description": "Regenerate Dubbing Target. Enterprise only. Re-dub a target from its edited transcript, re-synthesizing only the edited regions (charged like a generation). Conflicts when the target has no edits to a",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\",\n  \"language_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_dubbing_target_transcript_segmen_b565e6",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/dubbing/target/transcript/segmen/b565e6",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "dubbing",
            "target",
            "transcript",
            "segmen",
            "b565e6"
          ]
        },
        "description": "Update Dubbing Target Transcript Segment. Enterprise only. Edit a segment's translation for a language target.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\",\n  \"language_id\": \"\",\n  \"segment_id\": \"\",\n  \"translation\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_dubbing_target_transcript_segmen_fa79db",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/dubbing/target/transcript/segmen/fa79db",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "dubbing",
            "target",
            "transcript",
            "segmen",
            "fa79db"
          ]
        },
        "description": "Update Dubbing Target Transcript Segments. Enterprise only. Edit several segments' translations for a language target in one atomic request.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\",\n  \"language_id\": \"\",\n  \"segments\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_dubbing_transcript_get",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/dubbing/transcript/get",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "dubbing",
            "transcript",
            "get"
          ]
        },
        "description": "Get Dubbing Transcript. The project's source transcript, as editable segments.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_dubbing_transcript_segment_add",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/dubbing/transcript/segment/add",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "dubbing",
            "transcript",
            "segment",
            "add"
          ]
        },
        "description": "Add Dubbing Transcript Segment. Enterprise only. Add a new source segment to the transcript.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\",\n  \"text\": \"\",\n  \"speaker_id\": \"\",\n  \"start_s\": 0,\n  \"end_s\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_dubbing_transcript_segment_delete",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/dubbing/transcript/segment/delete",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "dubbing",
            "transcript",
            "segment",
            "delete"
          ]
        },
        "description": "Delete Dubbing Transcript Segment. Enterprise only. Remove a source segment from the transcript.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\",\n  \"segment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_dubbing_transcript_segment_update",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/dubbing/transcript/segment/update",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "dubbing",
            "transcript",
            "segment",
            "update"
          ]
        },
        "description": "Update Dubbing Transcript Segment. Enterprise only. Edit a source segment's text, speaker, or timing.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\",\n  \"segment_id\": \"\",\n  \"text\": \"\",\n  \"speaker_id\": \"\",\n  \"start_s\": 0,\n  \"end_s\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_dubbing_transcript_segments_update",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/dubbing/transcript/segments/update",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "dubbing",
            "transcript",
            "segments",
            "update"
          ]
        },
        "description": "Update Dubbing Transcript Segments. Enterprise only. Edit several source segments' text, speaker, or timing in one atomic request.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\",\n  \"segments\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_edit_chapter",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/edit/chapter",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "edit",
            "chapter"
          ]
        },
        "description": "Update Chapter. Updates a chapter.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\",\n  \"chapter_id\": \"\",\n  \"name\": \"\",\n  \"content\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_edit_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/edit/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "edit",
            "project"
          ]
        },
        "description": "Update Studio Project. Updates the specified Studio project by setting the values of the parameters passed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\",\n  \"name\": \"\",\n  \"default_title_voice_id\": \"\",\n  \"default_paragraph_voice_id\": \"\",\n  \"title\": \"\",\n  \"author\": \"\",\n  \"isbn_number\": \"\",\n  \"volume_normalization\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_edit_pvc_voice",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/edit/pvc/voice",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "edit",
            "pvc",
            "voice"
          ]
        },
        "description": "Edit Pvc Voice. Edit PVC voice metadata",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"voice_id\": \"\",\n  \"name\": \"\",\n  \"language\": \"\",\n  \"description\": \"\",\n  \"labels\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_edit_pvc_voice_sample",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/edit/pvc/voice/sample",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "edit",
            "pvc",
            "voice",
            "sample"
          ]
        },
        "description": "Update Pvc Voice Sample. Update a PVC voice sample - apply noise removal, select speaker, change trim times or file name.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"voice_id\": \"\",\n  \"sample_id\": \"\",\n  \"remove_background_noise\": false,\n  \"selected_speaker_ids\": \"\",\n  \"trim_start_time\": 0,\n  \"trim_end_time\": 0,\n  \"file_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_edit_service_account_api_key",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/edit/service/account/api/key",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "edit",
            "service",
            "account",
            "api",
            "key"
          ]
        },
        "description": "Edit Service Account Api Key. Update an existing API key for a service account",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"service_account_user_id\": \"\",\n  \"api_key_id\": \"\",\n  \"is_enabled\": \"\",\n  \"name\": \"\",\n  \"permissions\": \"\",\n  \"character_limit\": \"\",\n  \"allowed_ips\": \"\",\n  \"third_party_disable_allowed\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_edit_voice_settings",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/edit/voice/settings",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "edit",
            "voice",
            "settings"
          ]
        },
        "description": "Edit Voice Settings. Edit your settings for a specific voice. \"similarity_boost\" corresponds to \"Clarity + Similarity Enhancement\" in the web app and \"stability\" corresponds to \"Stability\" slider in t",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"voice_id\": \"\",\n  \"stability\": 0,\n  \"use_speaker_boost\": false,\n  \"similarity_boost\": 0,\n  \"style\": 0,\n  \"speed\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_edit_workspace_webhook_route",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/edit/workspace/webhook/route",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "edit",
            "workspace",
            "webhook",
            "route"
          ]
        },
        "description": "Update Workspace Webhook. Update the specified workspace webhook",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"webhook_id\": \"\",\n  \"is_disabled\": false,\n  \"name\": \"\",\n  \"retry_enabled\": false,\n  \"request_headers\": {},\n  \"events\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_generate",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/generate",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "generate"
          ]
        },
        "description": "Compose Music. Compose a song from a prompt or a composition plan.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"output_format\": \"\",\n  \"prompt\": \"\",\n  \"generation_mode\": \"\",\n  \"music_prompt\": {},\n  \"lyrics_text\": \"\",\n  \"composition_plan\": {},\n  \"music_length_ms\": 0,\n  \"model_id\": \"\",\n  \"seed\": 0,\n  \"force_instrumental\": false,\n  \"finetune_id\": \"\",\n  \"finetune_strength\": 0,\n  \"use_phonetic_names\": false,\n  \"respect_sections_durations\": false,\n  \"store_for_inpainting\": false,\n  \"sign_with_c2pa\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_audio_from_sample",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/audio/from/sample",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "audio",
            "from",
            "sample"
          ]
        },
        "description": "Get Audio From Sample. Returns the audio corresponding to a sample attached to a voice.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"voice_id\": \"\",\n  \"sample_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_audio_full_from_speech_history_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/audio/full/from/speech/history/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "audio",
            "full",
            "from",
            "speech",
            "history",
            "item"
          ]
        },
        "description": "Get Audio From History Item. Returns the audio of an history item.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"history_item_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_audio_isolation_history",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/audio/isolation/history",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "audio",
            "isolation",
            "history"
          ]
        },
        "description": "Get Audio Isolation History. Returns a list of all your audio isolation generations.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page_size\": 0,\n  \"page\": 0,\n  \"search\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_audio_native_project_setting_340fd1",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/audio/native/project/setting/340fd1",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "audio",
            "native",
            "project",
            "setting",
            "340fd1"
          ]
        },
        "description": "Get Audio Native Project Settings. Get player settings for the specific project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_chapter_by_id_endpoint",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/chapter/by/id/endpoint",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "chapter",
            "by",
            "id",
            "endpoint"
          ]
        },
        "description": "Get Chapter. Returns information about a specific chapter.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\",\n  \"chapter_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_chapter_snapshot_endpoint",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/chapter/snapshot/endpoint",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "chapter",
            "snapshot",
            "endpoint"
          ]
        },
        "description": "Get Chapter Snapshot. Returns the chapter snapshot.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\",\n  \"chapter_id\": \"\",\n  \"chapter_snapshot_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_chapter_snapshots",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/chapter/snapshots",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "chapter",
            "snapshots"
          ]
        },
        "description": "List Chapter Snapshots. Gets information about all the snapshots of a chapter. Each snapshot can be downloaded as audio. Whenever a chapter is converted a snapshot will automatically be created.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\",\n  \"chapter_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_chapters",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/chapters",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "chapters"
          ]
        },
        "description": "List Chapters. Returns a list of a Studio project's chapters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_dubbed_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/dubbed/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "dubbed",
            "file"
          ]
        },
        "description": "Get Dubbed File. Returns dub as a streamed MP3 or MP4 file. If this dub has been edited using Dubbing Studio you need to use the resource render endpoint as this endpoint only returns the original aut",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dubbing_id\": \"\",\n  \"language_code\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_dubbed_metadata",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/dubbed/metadata",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "dubbed",
            "metadata"
          ]
        },
        "description": "Get Dubbing. Returns metadata about a dubbing project, including whether it's still in progress or not",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dubbing_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_dubbing_transcripts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/dubbing/transcripts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "dubbing",
            "transcripts"
          ]
        },
        "description": "Retrieve A Transcript. Fetch the transcript for one of the languages in a dub.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dubbing_id\": \"\",\n  \"language_code\": \"\",\n  \"format_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_finetune",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/finetune",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "finetune"
          ]
        },
        "description": "Get Music Finetune. Get a music finetune.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"finetune_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_finetunes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/finetunes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "finetunes"
          ]
        },
        "description": "Get Music Finetunes. List music finetunes accessible to you (your own, workspace-shared, and ElevenLabs-curated), with optional filtering, sorting, and cursor pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cursor\": \"\",\n  \"page_size\": 0,\n  \"visibility\": \"\",\n  \"created_by\": \"\",\n  \"sort\": \"\",\n  \"sort_direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_groups_endpoint",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/groups/endpoint",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "groups",
            "endpoint"
          ]
        },
        "description": "Get All Groups. Get all groups in the workspace",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_library_voices",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/library/voices",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "library",
            "voices"
          ]
        },
        "description": "Get Voices. Retrieves a list of shared voices.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page_size\": 0,\n  \"category\": \"\",\n  \"gender\": \"\",\n  \"age\": \"\",\n  \"accent\": \"\",\n  \"language\": \"\",\n  \"locale\": \"\",\n  \"search\": \"\",\n  \"use_cases\": \"\",\n  \"descriptives\": \"\",\n  \"featured\": false,\n  \"min_notice_period_days\": 0,\n  \"include_custom_rates\": false,\n  \"include_live_moderated\": false,\n  \"reader_app_enabled\": false,\n  \"owner_id\": \"\",\n  \"sort\": \"\",\n  \"page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_models",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/models",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "models"
          ]
        },
        "description": "Get Models. Gets a list of available models.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_project_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/project/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "project",
            "by",
            "id"
          ]
        },
        "description": "Get Studio Project. Returns information about a specific Studio project. This endpoint returns more detailed information about a project than `GET /v1/studio`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\",\n  \"share_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_project_muted_tracks_endpoint",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/project/muted/tracks/endpoint",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "project",
            "muted",
            "tracks",
            "endpoint"
          ]
        },
        "description": "Get Project Muted Tracks. Returns a list of chapter IDs that have muted tracks in a project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_project_snapshot_endpoint",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/project/snapshot/endpoint",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "project",
            "snapshot",
            "endpoint"
          ]
        },
        "description": "Get Project Snapshot. Returns the project snapshot.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\",\n  \"project_snapshot_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_project_snapshots",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/project/snapshots",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "project",
            "snapshots"
          ]
        },
        "description": "List Studio Project Snapshots. Retrieves a list of snapshots for a Studio project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_projects",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/projects",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "projects"
          ]
        },
        "description": "List Studio Projects. Returns a list of your Studio projects with metadata.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_pronunciation_dictionaries_metadata",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/pronunciation/dictionaries/metadata",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "pronunciation",
            "dictionaries",
            "metadata"
          ]
        },
        "description": "Get Pronunciation Dictionaries. Get a list of the pronunciation dictionaries you have access to and their metadata",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cursor\": \"\",\n  \"page_size\": 0,\n  \"sort\": \"\",\n  \"sort_direction\": \"\",\n  \"include_archived\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_pronunciation_dictionary_metadata",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/pronunciation/dictionary/metadata",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "pronunciation",
            "dictionary",
            "metadata"
          ]
        },
        "description": "Get Metadata For A Pronunciation Dictionary. Get metadata for a pronunciation dictionary",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"pronunciation_dictionary_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_pronunciation_dictionary_ver_45baf2",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/pronunciation/dictionary/ver/45baf2",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "pronunciation",
            "dictionary",
            "ver",
            "45baf2"
          ]
        },
        "description": "Get A Pls File With A Pronunciation Dictionary Version Rules. Get a PLS file with a pronunciation dictionary version rules",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dictionary_id\": \"\",\n  \"version_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_pvc_sample_audio",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/pvc/sample/audio",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "pvc",
            "sample",
            "audio"
          ]
        },
        "description": "Retrieve Voice Sample Audio. Retrieve the first 30 seconds of voice sample audio with or without noise removal.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"voice_id\": \"\",\n  \"sample_id\": \"\",\n  \"remove_background_noise\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_pvc_sample_speakers",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/pvc/sample/speakers",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "pvc",
            "sample",
            "speakers"
          ]
        },
        "description": "Retrieve Speaker Separation Status. Retrieve the status of the speaker separation process and the list of detected speakers if complete.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"voice_id\": \"\",\n  \"sample_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_pvc_sample_visual_waveform",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/pvc/sample/visual/waveform",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "pvc",
            "sample",
            "visual",
            "waveform"
          ]
        },
        "description": "Retrieve Voice Sample Visual Waveform. Retrieve the visual waveform of a voice sample.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"voice_id\": \"\",\n  \"sample_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_pvc_voice_captcha",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/pvc/voice/captcha",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "pvc",
            "voice",
            "captcha"
          ]
        },
        "description": "Get Pvc Voice Captcha. Get captcha for PVC voice verification.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"voice_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_resource_metadata",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/resource/metadata",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "resource",
            "metadata"
          ]
        },
        "description": "Get Resource. Gets the metadata of a resource by ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"resource_id\": \"\",\n  \"resource_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_service_account_api_keys_route",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/service/account/api/keys/route",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "service",
            "account",
            "api",
            "keys",
            "route"
          ]
        },
        "description": "Get Service Account Api Keys Route. Get all API keys for a service account",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"service_account_user_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_single_use_token",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/single/use/token",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "single",
            "use",
            "token"
          ]
        },
        "description": "Create Single Use Token. Generate a time limited single-use token with embedded authentication for frontend clients.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"token_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_speaker_audio",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/speaker/audio",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "speaker",
            "audio"
          ]
        },
        "description": "Retrieve Separated Speaker Audio. Retrieve the separated audio for a specific speaker.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"voice_id\": \"\",\n  \"sample_id\": \"\",\n  \"speaker_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_speech_engine",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/speech/engine",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "speech",
            "engine"
          ]
        },
        "description": "Get Speech Engine. Retrieve a Speech Engine resource",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"speech_engine_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_speech_history",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/speech/history",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "speech",
            "history"
          ]
        },
        "description": "List Generated Items. Returns a list of your generated audio (e.g. text to speech, speech to speech, Studio, dubbing). Music and SFX generations are not included and cannot currently be retrieved via ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page_size\": 0,\n  \"start_after_history_item_id\": \"\",\n  \"voice_id\": \"\",\n  \"model_id\": \"\",\n  \"date_before_unix\": 0,\n  \"date_after_unix\": 0,\n  \"sort_direction\": \"\",\n  \"search\": \"\",\n  \"source\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_speech_history_item_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/speech/history/item/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "speech",
            "history",
            "item",
            "by",
            "id"
          ]
        },
        "description": "Get History Item. Retrieves a history item.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"history_item_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_transcript_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/transcript/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "transcript",
            "by",
            "id"
          ]
        },
        "description": "Get Transcript By Id. Retrieve a previously generated transcript by its ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"transcription_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_user_info",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user/info",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user",
            "info"
          ]
        },
        "description": "Get User Info. Gets information about the user",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_user_subscription_info",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user/subscription/info",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user",
            "subscription",
            "info"
          ]
        },
        "description": "Get User Subscription Info. Gets extended information about the users subscription",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_user_voices_v2",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user/voices/v2",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user",
            "voices",
            "v2"
          ]
        },
        "description": "Get Voices V2. Gets a list of all available voices for a user with search, filtering and pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"next_page_token\": \"\",\n  \"page_size\": 0,\n  \"search\": \"\",\n  \"sort\": \"\",\n  \"sort_direction\": \"\",\n  \"voice_type\": \"\",\n  \"category\": \"\",\n  \"fine_tuning_state\": \"\",\n  \"collection_id\": \"\",\n  \"gender\": \"\",\n  \"age\": \"\",\n  \"language\": \"\",\n  \"accent\": \"\",\n  \"use_cases\": \"\",\n  \"min_notice_period_days\": 0,\n  \"include_custom_rates\": false,\n  \"include_live_moderated\": false,\n  \"high_quality\": false,\n  \"include_total_count\": false,\n  \"voice_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_voice_accents",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/voice/accents",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "voice",
            "accents"
          ]
        },
        "description": "Get Voice Accents. Gets the list of available accents in the shared voice library.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"language\": \"\",\n  \"model_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_voice_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/voice/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "voice",
            "by",
            "id"
          ]
        },
        "description": "Get Voice. Returns metadata about a specific voice.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"voice_id\": \"\",\n  \"with_settings\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_voice_settings",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/voice/settings",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "voice",
            "settings"
          ]
        },
        "description": "Get Voice Settings. Returns the settings for a specific voice. \"similarity_boost\" corresponds to\"Clarity + Similarity Enhancement\" in the web app and \"stability\" corresponds to \"Stability\" slider in t",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"voice_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_voice_settings_default",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/voice/settings/default",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "voice",
            "settings",
            "default"
          ]
        },
        "description": "Get Default Voice Settings.. Gets the default settings for voices. \"similarity_boost\" corresponds to\"Clarity + Similarity Enhancement\" in the web app and \"stability\" corresponds to \"Stability\" slider ",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_voices",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/voices",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "voices"
          ]
        },
        "description": "List Voices. Returns a list of all available voices for a user. Stops working once the user's workspace exceeds 500 voices.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"show_legacy\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_workspace_audit_logs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/workspace/audit/logs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "workspace",
            "audit",
            "logs"
          ]
        },
        "description": "Get Workspace Audit Logs. Returns the audit log for the workspace. Requires enterprise tier and the audit_log_read permission.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"cursor\": \"\",\n  \"time_from_unix_ms\": 0,\n  \"time_to_unix_ms\": 0,\n  \"actor_uid\": \"\",\n  \"class_name\": \"\",\n  \"activity_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_workspace_members",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/workspace/members",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "workspace",
            "members"
          ]
        },
        "description": "Get Workspace Members. Gets a list of all members of the workspace, including locked members. Service accounts are excluded. Requires the workspace_members_read permission.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_workspace_service_accounts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/workspace/service/accounts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "workspace",
            "service",
            "accounts"
          ]
        },
        "description": "Get Workspace Service Accounts. List all service accounts in the workspace",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_get_workspace_webhooks_route",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/workspace/webhooks/route",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "workspace",
            "webhooks",
            "route"
          ]
        },
        "description": "List Workspace Webhooks. List all webhooks for a workspace",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"include_usages\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_invite_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/invite/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "invite",
            "user"
          ]
        },
        "description": "Invite User. Sends an email invitation to join your workspace to the provided email. If the user doesn't have an account they will be prompted to create one. If the user accepts this invite they will ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"workspace_permission\": \"\",\n  \"seat_type\": \"\",\n  \"group_ids\": \"\",\n  \"usage_limit\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_invite_users_bulk",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/invite/users/bulk",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "invite",
            "users",
            "bulk"
          ]
        },
        "description": "Invite Multiple Users. Sends email invitations to join your workspace to the provided emails. Requires all email addresses to be part of a verified domain. If the users don't have an account they will",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"emails\": \"\",\n  \"seat_type\": \"\",\n  \"group_ids\": \"\",\n  \"usage_limit\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_list_auth_connections",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/auth/connections",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "auth",
            "connections"
          ]
        },
        "description": "Get Workspace Auth Connections. Get all auth connections for the workspace",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_list_dubs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/dubs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "dubs"
          ]
        },
        "description": "List Dubs. List the dubs you have access to.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cursor\": \"\",\n  \"page_size\": 0,\n  \"dubbing_status\": \"\",\n  \"dubbing_statuses\": \"\",\n  \"dubbing_models\": \"\",\n  \"target_language_codes\": \"\",\n  \"creation_sources\": \"\",\n  \"filter_by_creator\": \"\",\n  \"order_by\": \"\",\n  \"order_direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_list_speech_engines",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/speech/engines",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "speech",
            "engines"
          ]
        },
        "description": "List Speech Engines. Returns a paginated list of Speech Engine resources.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page_size\": 0,\n  \"search\": \"\",\n  \"sort_direction\": \"\",\n  \"sort_by\": \"\",\n  \"cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_patch_pronunciation_dictionary",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/patch/pronunciation/dictionary",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "patch",
            "pronunciation",
            "dictionary"
          ]
        },
        "description": "Update Pronunciation Dictionary. Partially update the pronunciation dictionary without changing the version",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"pronunciation_dictionary_id\": \"\",\n  \"archived\": false,\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_public_create_order",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/public/create/order",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "public",
            "create",
            "order"
          ]
        },
        "description": "Create Order. Creates a new Productions order in the workspace. The order starts in the open state and can be configured with items before submission.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_public_get_available_languages",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/public/get/available/languages",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "public",
            "get",
            "available",
            "languages"
          ]
        },
        "description": "Get Available Languages. Returns the available languages for a given order item kind.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"order_item_kind\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_public_get_media_info",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/public/get/media/info",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "public",
            "get",
            "media",
            "info"
          ]
        },
        "description": "Get Media Info. Retrieves metadata and a time-limited download URL for a previously uploaded media file.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"order_id\": \"\",\n  \"media_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_public_get_order",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/public/get/order",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "public",
            "get",
            "order"
          ]
        },
        "description": "Get Order. Retrieves full details for a Productions order.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"order_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_public_get_order_deliverables",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/public/get/order/deliverables",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "public",
            "get",
            "order",
            "deliverables"
          ]
        },
        "description": "Get Order Deliverables. Retrieves the delivered files for a completed order. Returns an empty list if the order is not yet completed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"order_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_public_list_orders",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/public/list/orders",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "public",
            "list",
            "orders"
          ]
        },
        "description": "List Orders. Lists Productions orders in the workspace. Supports filtering by status and date range, with pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page_size\": 0,\n  \"offset\": 0,\n  \"status\": \"\",\n  \"start_date\": \"\",\n  \"end_date\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_public_remove_order_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/public/remove/order/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "public",
            "remove",
            "order",
            "item"
          ]
        },
        "description": "Remove Order Item. Removes an order item from an open order.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"order_id\": \"\",\n  \"item_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_public_submit_order",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/public/submit/order",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "public",
            "submit",
            "order"
          ]
        },
        "description": "Submit Order. Submits an open order for processing. The order must have at least one item. Once submitted, items can no longer be modified.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"order_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_public_update_order",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/public/update/order",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "public",
            "update",
            "order"
          ]
        },
        "description": "Update Order. Updates an open order.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"order_id\": \"\",\n  \"request\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_public_upsert_order_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/public/upsert/order/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "public",
            "upsert",
            "order",
            "item"
          ]
        },
        "description": "Upsert Order Item. Adds or updates an order item on an open order. Returns the item ID and the quoted price.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"order_id\": \"\",\n  \"request\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_redirect_to_mintlify",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/redirect/to/mintlify",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "redirect",
            "to",
            "mintlify"
          ]
        },
        "description": "Redirect To Mintlify",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_remove_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "member"
          ]
        },
        "description": "Delete Member From User Group. Removes a member from the specified group. Requires `group_members_manage` permission.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"group_id\": \"\",\n  \"email\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_remove_rules",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/rules",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "rules"
          ]
        },
        "description": "Remove Rules From The Pronunciation Dictionary. Remove rules from the pronunciation dictionary",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"pronunciation_dictionary_id\": \"\",\n  \"rule_strings\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_replicate_voice_to_isolated_environment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/replicate/voice/to/isolated/environment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "replicate",
            "voice",
            "to",
            "isolated",
            "environment"
          ]
        },
        "description": "Replicate Voice To Isolated Environment. Replicates an Instant Voice Clone or Voice Design voice to a workspace in a different data residency. The target workspace must belong to the same consolidated",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"voice_id\": \"\",\n  \"target_workspace_id\": \"\",\n  \"preserve_voice_id\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_requests_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/requests/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "requests",
            "list"
          ]
        },
        "description": "List Api Requests. Returns a list of API requests. Supports filtering by time range, column filters, and search terms. At least one of start_time or end_time must be provided. An optional sort paramet",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"start_time\": 0,\n  \"end_time\": 0,\n  \"limit\": 0,\n  \"sort\": \"\",\n  \"filters\": \"\",\n  \"search\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_run_pvc_voice_training",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/run/pvc/voice/training",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "run",
            "pvc",
            "voice",
            "training"
          ]
        },
        "description": "Run Pvc Training. Start PVC training process for a voice.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"voice_id\": \"\",\n  \"model_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_search_groups",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/groups",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "groups"
          ]
        },
        "description": "Search User Groups. Searches for user groups in the workspace. Multiple or no groups may be returned.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_set_rules",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/rules",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "rules"
          ]
        },
        "description": "Set Rules On The Pronunciation Dictionary. Replaces all existing rules on the pronunciation dictionary with the provided ones.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"pronunciation_dictionary_id\": \"\",\n  \"rules\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_set_third_party_disabling_policy",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/third/party/disabling/policy",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "third",
            "party",
            "disabling",
            "policy"
          ]
        },
        "description": "Set Workspace Third-Party Disabling Policy. Set the workspace-wide Third-Party Disabling policy. When set, it forces, for every API key in the workspace, whether the holder of a key (potentially a thi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"third_party_disable_allowed\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_share_resource_endpoint",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/share/resource/endpoint",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "share",
            "resource",
            "endpoint"
          ]
        },
        "description": "Share Workspace Resource. Grants a role (one of 'admin', 'editor', 'commenter', or 'viewer') on a workspace resource to a user, group, or workspace (service account) API key. This overrides any existi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"resource_id\": \"\",\n  \"role\": \"\",\n  \"resource_type\": \"\",\n  \"user_email\": \"\",\n  \"group_id\": \"\",\n  \"workspace_api_key_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_sound_generation",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/sound/generation",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "sound",
            "generation"
          ]
        },
        "description": "Sound Generation. Turn text into sound effects for your videos, voice-overs or video games using the most advanced sound effects models in the world.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"output_format\": \"\",\n  \"text\": \"\",\n  \"loop\": false,\n  \"duration_seconds\": 0,\n  \"prompt_influence\": 0,\n  \"model_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_start_speaker_separation",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/start/speaker/separation",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "start",
            "speaker",
            "separation"
          ]
        },
        "description": "Start Speaker Separation. Start speaker separation process for a sample",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"voice_id\": \"\",\n  \"sample_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_stream_chapter_snapshot_audio",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/stream/chapter/snapshot/audio",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "stream",
            "chapter",
            "snapshot",
            "audio"
          ]
        },
        "description": "Stream Chapter Audio. Stream the audio from a chapter snapshot. Use `GET /v1/studio/projects/{project_id}/chapters/{chapter_id}/snapshots` to return the snapshots of a chapter.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\",\n  \"chapter_id\": \"\",\n  \"chapter_snapshot_id\": \"\",\n  \"convert_to_mpeg\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_stream_project_snapshot_archive_60141b",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/stream/project/snapshot/archive/60141b",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "stream",
            "project",
            "snapshot",
            "archive",
            "60141b"
          ]
        },
        "description": "Stream Archive With Studio Project Audio. Returns a compressed archive of the Studio project's audio.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\",\n  \"project_snapshot_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_text_to_dialogue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/text/to/dialogue",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "text",
            "to",
            "dialogue"
          ]
        },
        "description": "Text To Dialogue (Multi-Voice). Converts a list of text and voice ID pairs into speech (dialogue) and returns audio.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"output_format\": \"\",\n  \"enable_logging\": false,\n  \"inputs\": \"\",\n  \"model_id\": \"\",\n  \"language_code\": \"\",\n  \"settings\": {},\n  \"pronunciation_dictionary_locators\": \"\",\n  \"seed\": 0,\n  \"apply_text_normalization\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_text_to_speech_full",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/text/to/speech/full",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "text",
            "to",
            "speech",
            "full"
          ]
        },
        "description": "Text To Speech. Converts text into speech using a voice of your choice and returns audio.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"voice_id\": \"\",\n  \"enable_logging\": false,\n  \"optimize_streaming_latency\": 0,\n  \"output_format\": \"\",\n  \"text\": \"\",\n  \"model_id\": \"\",\n  \"language_code\": \"\",\n  \"voice_settings\": {},\n  \"pronunciation_dictionary_locators\": \"\",\n  \"seed\": 0,\n  \"previous_text\": \"\",\n  \"next_text\": \"\",\n  \"previous_request_ids\": \"\",\n  \"next_request_ids\": \"\",\n  \"use_pvc_as_ivc\": false,\n  \"apply_text_normalization\": \"\",\n  \"apply_language_text_normalization\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_text_to_voice_design",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/text/to/voice/design",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "text",
            "to",
            "voice",
            "design"
          ]
        },
        "description": "Design A Voice.. Design a voice via a prompt. This method returns a list of voice previews. Each preview has a generated_voice_id and a sample of the voice as base64 encoded mp3 audio. To create a voi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"output_format\": \"\",\n  \"voice_description\": \"\",\n  \"model_id\": \"\",\n  \"text\": \"\",\n  \"auto_generate_text\": false,\n  \"loudness\": 0,\n  \"seed\": 0,\n  \"guidance_scale\": 0,\n  \"stream_previews\": false,\n  \"should_enhance\": false,\n  \"remixing_session_id\": \"\",\n  \"remixing_session_iteration_id\": \"\",\n  \"quality\": 0,\n  \"reference_audio_base64\": \"\",\n  \"prompt_strength\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_text_to_voice_preview_stream",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/text/to/voice/preview/stream",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "text",
            "to",
            "voice",
            "preview",
            "stream"
          ]
        },
        "description": "Text To Voice Preview Streaming. Stream a voice preview that was created via the /v1/text-to-voice/design endpoint.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"generated_voice_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_text_to_voice_remix",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/text/to/voice/remix",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "text",
            "to",
            "voice",
            "remix"
          ]
        },
        "description": "Remix A Voice.. Remix an existing voice via a prompt. This method returns a list of voice previews. Each preview has a generated_voice_id and a sample of the voice as base64 encoded mp3 audio. To crea",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"voice_id\": \"\",\n  \"output_format\": \"\",\n  \"voice_description\": \"\",\n  \"text\": \"\",\n  \"auto_generate_text\": false,\n  \"loudness\": 0,\n  \"seed\": 0,\n  \"guidance_scale\": 0,\n  \"stream_previews\": false,\n  \"remixing_session_id\": \"\",\n  \"remixing_session_iteration_id\": \"\",\n  \"prompt_strength\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_unshare_resource_endpoint",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/unshare/resource/endpoint",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "unshare",
            "resource",
            "endpoint"
          ]
        },
        "description": "Unshare Workspace Resource. Removes any existing role on a workspace resource from a user, group, or workspace (service account) API key. To target a user or service account, pass only the user email;",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"resource_id\": \"\",\n  \"resource_type\": \"\",\n  \"user_email\": \"\",\n  \"group_id\": \"\",\n  \"workspace_api_key_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_update_auth_connection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/auth/connection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "auth",
            "connection"
          ]
        },
        "description": "Update Workspace Auth Connection. Update an auth connection",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"auth_connection_id\": \"\",\n  \"body\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_update_finetune",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/finetune",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "finetune"
          ]
        },
        "description": "Update Music Finetune. Update a music finetune.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"finetune_id\": \"\",\n  \"name\": \"\",\n  \"tags\": \"\",\n  \"primary_genre\": \"\",\n  \"visibility\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_update_pronunciation_dictionaries",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/pronunciation/dictionaries",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "pronunciation",
            "dictionaries"
          ]
        },
        "description": "Create Pronunciation Dictionaries. Create a set of pronunciation dictionaries acting on a project. This will automatically mark text within this project as requiring reconverting where the new diction",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\",\n  \"pronunciation_dictionary_locators\": \"\",\n  \"invalidate_affected_text\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_update_speech_engine",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/speech/engine",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "speech",
            "engine"
          ]
        },
        "description": "Update Speech Engine. Update a Speech Engine resource (partial update)",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"speech_engine_id\": \"\",\n  \"name\": \"\",\n  \"speech_engine\": {},\n  \"asr\": {},\n  \"tts\": {},\n  \"turn\": {},\n  \"vad\": {},\n  \"conversation\": {},\n  \"privacy\": {},\n  \"call_limits\": {},\n  \"language\": \"\",\n  \"tags\": \"\",\n  \"overrides\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_update_workspace_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/workspace/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "workspace",
            "member"
          ]
        },
        "description": "Update Member. Updates attributes of a workspace member. Apart from the email identifier, all parameters will remain unchanged unless specified. This endpoint may only be called by workspace administr",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"is_locked\": false,\n  \"workspace_role\": \"\",\n  \"workspace_seat_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "elevenlabs_usage_by_product_over_time",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/usage/by/product/over/time",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "usage",
            "by",
            "product",
            "over",
            "time"
          ]
        },
        "description": "Get Workspace Usage. Returns credit usage broken down by product type over time. The response is a tabular structure with columns, column_types, column_units, and rows.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"start_time\": 0,\n  \"end_time\": 0,\n  \"interval_seconds\": 0,\n  \"group_by\": \"\",\n  \"filters\": \"\",\n  \"time_zone\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}