For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
SupportStatusTry now
DocumentationAPI Reference
DocumentationAPI Reference
    • Studio
    • Discord
    • Blog
    • Changelog
  • Getting Started
    • Introduction
    • Quickstart
    • Free Trial
  • Product
    • How AI Lip Sync Works
    • Use Cases
    • Billing
    • Integrations
    • Experimental features
    • Generation Times & Performance
    • Troubleshooting
  • Compatibility and Tips
    • Web Browser Support
    • Media Formats Support
    • Media Content Tips
    • Improving Lip Sync Quality
  • WebApp Guides
    • Speaker Selection
    • Dubbing
  • Developer Guides
    • SDKs
    • Python SDK Guide
    • TypeScript SDK Guide
    • Segments
    • Error Handling
    • Speaker Selection
    • Example Projects
  • Tutorials
    • Dubbing
    • Video Dubbing API Guide
    • Video Translation API Guide
    • Text-to-Speech Lip Sync
    • Personalized Video Messaging
    • Translation/Dubbing
  • Plugins & Extensions
    • MCP Server
    • ComfyUI
LogoLogo
SupportStatusTry now
On this page
  • All Integrations
  • Integration Setup
  • ElevenLabs
  • Example API Request
  • Empty Text or Formatting Directives Only
  • API Key Permission Errors
  • Invalid API Key Errors
  • General Setup Tips
  • Related Resources
Product

Integrations

Was this page helpful?
Edit this page

Last updated May 15, 2026

Previous

Experimental Features

Next
Built with

Sync Labs integrates with editing tools, AI assistants, workflow engines, and developer platforms. Pick the integration that fits your workflow.

All Integrations

Adobe Premiere

Lip sync directly in your editing timeline without leaving Adobe Premiere.

MCP Server

Use Sync Labs from Claude, ChatGPT, and other AI assistants via Model Context Protocol.

ComfyUI

Lip sync node for ComfyUI — drop it into any video generation workflow.

ElevenLabs

Text-to-speech integration for voice-driven lip sync via API or Studio.

Python SDK

Official Python SDK — pip install syncsdk and start generating in minutes.

TypeScript SDK

Official TypeScript SDK — npm install @sync.so/sdk for Node.js and browser.

For direct HTTP integration without an SDK, use the REST API.


Integration Setup

You can enable and manage integrations from the integrations settings page. Once enabled, you can:

  • Test integrations directly in the Studio
  • Preview available options (like voices for text-to-speech)
  • Generate ready-to-use code snippets via the View code button
  • Implement them in your API calls

API Key Options:

  • Use Sync Labs’ internal integration (usage costs reflected in your usage billing)
  • Use your own API keys (available on Creator plan or higher)

ElevenLabs

ElevenLabs provides state-of-the-art Text-to-Speech and AI Voice Generation capabilities. This integration enables text-to-speech lip sync workflows by extending Sync Labs’ generation endpoint with powerful voice generation functionality.

Using ElevenLabs in the Studio
  1. Navigate to Lipsync Studio
  2. Enable the ElevenLabs integration
  3. Select text as your input type
  4. Choose a voice from the available options
  5. Generate your content and preview the results instantly
Using ElevenLabs via API

To use ElevenLabs with the API, include the following parameters in your request to the POST /generate endpoint:

1{
2 "input": [
3 {
4 "type": "text", // Must be "text" for text-to-speech
5 "provider": {
6 "name": "elevenlabs", // Specify ElevenLabs as the provider
7 "voiceId": "voice_id", // Replace with an actual ElevenLabs voice ID
8 "script": "Your text here", // The text to convert to speech (max 5,000 characters)
9 "stability": 0.5, // Optional: Voice stability (0.0-1.0, default: 0.5)
10 "similarityBoost": 0.75 // Optional: Voice similarity (0.0-1.0, default: 0.75)
11 }
12 }
13 ],
14 // Other generation parameters...
15}

The script field has a maximum length of 5,000 characters. If you need to process longer text, consider breaking it into smaller segments.

Example API Request

1import requests
2
3api_key = "YOUR_API_KEY_HERE"
4api_url = "https://api.sync.so/v2/generate"
5
6payload = {
7 "model": "lipsync-2",
8 "input": [
9 {
10 "type": "text",
11 "provider": {
12 "name": "elevenlabs",
13 "voiceId": "EXAVITQu4vr4xnSDxMaL",
14 "script": "Welcome to Sync Labs integrations. This audio was generated with ElevenLabs.",
15 "stability": 0.5,
16 "similarityBoost": 0.75
17 }
18 },
19 {
20 "type": "video",
21 "url": "https://assets.sync.so/docs/example-video.mp4"
22 }
23 ]
24}
25
26headers = {
27 "x-api-key": api_key,
28 "Content-Type": "application/json"
29}
30
31response = requests.post(api_url, json=payload, headers=headers)
32print(response.json())
Troubleshooting ElevenLabs Integration

If you encounter issues when setting up or using the ElevenLabs integration, here are common problems and their solutions:

Empty Text or Formatting Directives Only

Error: “Your text contains only formatting directives (e.g., [smile]) without actual speech content. Please add some text to generate speech.”

Solution:

  1. Add actual speech content alongside any formatting directives
  2. Ensure your text isn’t just whitespace or formatting tags

Incorrect:

[smile the whole time]

Correct:

Hello, welcome to our video! [smile] We're excited to have you here.

The following troubleshooting tips are for users with their own ElevenLabs API key. If you’re using Sync Labs’ built-in ElevenLabs integration and encounter infrastructure issues, you’ll see a “Voice service is temporarily unavailable” message—just wait a moment and try again. If the issue persists, contact Sync Labs support.

API Key Permission Errors

Error: “Your ElevenLabs API key is missing required permissions. Please ensure the ‘User’ permission is enabled for your API key in your ElevenLabs settings.”

Solution:

  1. Log in to your ElevenLabs account
  2. Navigate to your API key settings
  3. Ensure the “User” permission is enabled for your API key
  4. If you need to create a new API key, make sure to enable the required permissions during creation

Invalid API Key Errors

Error: “Invalid API key. Please check your ElevenLabs API key and try again.”

Solution:

  1. Verify that you’ve copied the API key correctly from your ElevenLabs account
  2. Check that the API key hasn’t been revoked or expired
  3. Ensure you’re using the correct API key format (ElevenLabs API keys typically start with sk__)
  4. Try generating a new API key from your ElevenLabs dashboard if the issue persists

General Setup Tips

  • Make sure your ElevenLabs account is in good standing and has sufficient credits
  • Test your API key directly with ElevenLabs’ API before integrating with Sync Labs
  • If using your own API key, ensure your ElevenLabs plan supports the features you’re trying to use

Related Resources

  • Text-to-Speech Lipsync Guide — end-to-end guide for combining text-to-speech with lip sync
  • Python SDK — use the official Python SDK to integrate Sync Labs into your applications