---
title: Gumball API | Voice Cover | ModelsLab
description: Build with Gumball API. Voice Cover powered by AI. Plans from $21/month.
url: https://modelslab-frontend-v2-927501783998.us-east4.run.app/models/modelslab/gumball.md
canonical: https://modelslab-frontend-v2-927501783998.us-east4.run.app/models/modelslab/gumball
type: product
component: Playground/Endpoint/Index
generated_at: 2026-08-03T05:15:57.031797Z
---

[![Gumball thumbnail](https://assets.modelslab.ai/api-logos/01KPMZY676ZM0Z7YJWBM9C78QP.png)](https://modelslab-frontend-v2-927501783998.us-east4.run.app/models/modelslab)Gumball
---

[by ModelsLab](https://modelslab-frontend-v2-927501783998.us-east4.run.app/models/modelslab)The Voice Cover endpoint allows you to transform a song or audio file into a celeb/fictional character/singer/politician voice using a proper model id of that character.

`gumball`

Open Source Model [Unlimited Usage](https://modelslab-frontend-v2-927501783998.us-east4.run.app/pricing) [LLMs.txt](https://modelslab-frontend-v2-927501783998.us-east4.run.app/models/modelslab/gumball/llms.txt)

[API Playground](/models/modelslab/gumball)ShowcaseAPI DocumentationVibe CodeRelated ModelsDeveloper SupportModel SpecsEnterprise Deployment

Input
---

Init Audio 

Upload

File preview

 or record audio

Record Audio

Model ID 

Pitch 

Login to Generate

**Per Audio generation** will cost **0.0047$**
**For premium plan Audio generation** will cost **0.00$** i.e **Free.**

Output
---

Idle

Unknown content type

Related Models
---

Discover similar models you might be interested in

 [View all Audio Models](https://modelslab-frontend-v2-927501783998.us-east4.run.app/models?feature=audiogen)

[![Scouttf](https://images.modelslab.sh/?Image=https://assets.modelslab.ai/audio/Thumbnail1024/scouttf.png)](https://modelslab-frontend-v2-927501783998.us-east4.run.app/models/modelslab/scouttf)[ModelsLab](https://modelslab-frontend-v2-927501783998.us-east4.run.app/models/modelslab)

 [Scouttf

Open Source Model](https://modelslab-frontend-v2-927501783998.us-east4.run.app/models/modelslab/scouttf)

[![Flowerv](https://images.modelslab.sh/?Image=https://assets.modelslab.ai/audio/Thumbnail1024/flowerv.png)](https://modelslab-frontend-v2-927501783998.us-east4.run.app/models/modelslab/flowerv)[ModelsLab](https://modelslab-frontend-v2-927501783998.us-east4.run.app/models/modelslab)

 [Flowerv

Open Source Model](https://modelslab-frontend-v2-927501783998.us-east4.run.app/models/modelslab/flowerv)

[![Plankton](https://images.modelslab.sh/?Image=https://assets.modelslab.ai/audio/Thumbnail1024/plankton.png)](https://modelslab-frontend-v2-927501783998.us-east4.run.app/models/modelslab/plankton)[ModelsLab](https://modelslab-frontend-v2-927501783998.us-east4.run.app/models/modelslab)

 [Plankton

Open Source Model](https://modelslab-frontend-v2-927501783998.us-east4.run.app/models/modelslab/plankton)

[![Roxannewolf48k](https://images.modelslab.sh/?Image=https://assets.modelslab.ai/audio/Thumbnail1024/roxannewolf48k.png)](https://modelslab-frontend-v2-927501783998.us-east4.run.app/models/modelslab/roxannewolf48k)[ModelsLab](https://modelslab-frontend-v2-927501783998.us-east4.run.app/models/modelslab)

 [Roxannewolf48k

Open Source Model](https://modelslab-frontend-v2-927501783998.us-east4.run.app/models/modelslab/roxannewolf48k)

[![Song generation](https://images.modelslab.sh/?Image=https://assets.modelslab.ai/generations/546bbad1-1b61-4644-bfdd-424605d52aa0.webp)](https://modelslab-frontend-v2-927501783998.us-east4.run.app/models/sonauto/sonauto_song)[Sonauto](https://modelslab-frontend-v2-927501783998.us-east4.run.app/models/sonauto)

 [Song generation

Closed Source Model](https://modelslab-frontend-v2-927501783998.us-east4.run.app/models/sonauto/sonauto_song)

[![Mordecailaesp](https://images.modelslab.sh/?Image=https://assets.modelslab.ai/audio/Thumbnail1024/mordecailaesp.png)](https://modelslab-frontend-v2-927501783998.us-east4.run.app/models/modelslab/mordecailaesp)[ModelsLab](https://modelslab-frontend-v2-927501783998.us-east4.run.app/models/modelslab)

 [Mordecailaesp

Open Source Model](https://modelslab-frontend-v2-927501783998.us-east4.run.app/models/modelslab/mordecailaesp)

View all 18 related models

About Gumball
---

Gumball is a voice cloning AI model by ModelsLab available on ModelsLab. Access Gumball through our API with pay-per-use pricing and no minimum commitments.

### Technical Specifications

Model IDgumball

ProviderModelsLab

CategoryAudio Models

TaskVoice Cloning

Price$0.0047 per API call

AddedDecember 20, 2023

### Key Features

- AI voice synthesis and text-to-speech
- Multiple language and accent support
- Voice cloning from short audio samples
- Real-time audio processing via API
- Customizable speech parameters

### Quick Start

Integrate Gumball into your application with a single API call. Get your API key from the [pricing page](https://modelslab-frontend-v2-927501783998.us-east4.run.app/pricing) to get started.

PythonJavaScriptcURLPHP

```
<code>import requests
import json

url = "https://modelslab.com/api/v6/voice/voice_cover"

headers = {
    "Content-Type": "application/json"
}

data = {
        "model_id": "gumball",
        "prompt": "your prompt here",
        "key": "YOUR_API_KEY"
    }

try:
    response = requests.post(url, headers=headers, json=data)
    response.raise_for_status()  # Raises an HTTPError for bad responses (4XX or 5XX)
    result = response.json()
    print("API Response:")
    print(json.dumps(result, indent=2))
except requests.exceptions.HTTPError as http_err:
    print(f"HTTP error occurred: {http_err} - {response.text}")
except Exception as err:
    print(f"Other error occurred: {err}")</code>
```

### Pricing

Gumball API costs $0.0047 per API call. Pay only for what you use with no minimum commitments. [View pricing plans](https://modelslab-frontend-v2-927501783998.us-east4.run.app/pricing)

### Use Cases

- Voice-over production for video content
- Podcast and audiobook narration
- Multilingual customer support automation
- Interactive voice response (IVR) systems

[Browse Audio Models](https://modelslab-frontend-v2-927501783998.us-east4.run.app/models?feature=audiogen) [More from ModelsLab](https://modelslab-frontend-v2-927501783998.us-east4.run.app/models/modelslab) [View Pricing](https://modelslab-frontend-v2-927501783998.us-east4.run.app/pricing)

Gumball FAQ
---

### What is Gumball?

Gumball is a voice cloning AI model by ModelsLab available on ModelsLab. Access it through our API with pay-per-use pricing and no minimum commitments.

### How do I use the Gumball API?

You can integrate Gumball into your application with a single API call. Sign up on ModelsLab to get your API key, then use the model ID "gumball" in your API requests. We provide SDKs for Python, JavaScript, and cURL examples in the API documentation.

### How much does Gumball cost?

Gumball costs $0.0047 per API call. ModelsLab plans start at $21/month (Basic), and the $149/month Open Source plan includes unlimited generation on open-source models.

### What is the Gumball model ID?

The model ID for Gumball is "gumball". Use this ID in your API requests to specify this model.

### Do I need a paid plan to use Gumball?

Yes. ModelsLab is subscription-based with no free tier — plans start at $21/month (Basic, 3,250 API calls). The $149/month Open Source Unlimited plan includes unlimited generation across open-source models; premium third-party models are billed per call from your wallet.

---

*This markdown version is optimized for AI agents and LLMs.*

**Links:**
- [Website](https://modelslab.com)
- [API Documentation](https://docs.modelslab.com)
- [Blog](https://modelslab.com/blog)

---
*Generated by ModelsLab - 2026-08-03*