# Voice — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Check real-time queue wait times for Voice.ai audio tools, browse available text-to-speech demo voices, and compare pricing plans to find the right option for your needs. Get current service status and voice options instantly to plan your audio production workflow.

**Category:** Other | **Website:** [voice.ai/tools/vocal-remover](https://voice.ai/tools/vocal-remover) | **Docs:** [parse.bot/marketplace/d86b2209-e3bf-4aee-8d3f-84c6185aa434/voice-ai-api](https://parse.bot/marketplace/d86b2209-e3bf-4aee-8d3f-84c6185aa434/voice-ai-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-voice-ai-api-d86b2209/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_pricing_plans

Get current Voice.ai pricing plans with features, credit limits, and audio tool file length limits. Plans are returned for the specified billing cycle. Each plan includes name, price, description, monthly credit allocation, file length limit, and marketing features. The pricing page is parsed from server-rendered content.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `billing_cycle` | string | No | Billing period. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-voice-ai-api-d86b2209/get_pricing_plans \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"billing_cycle":"<string>"}'
```

### get_queue_wait_times

Get current estimated queue wait times (in seconds) for Voice.ai audio processing tools. Returns wait times for all tools by default, or for a specific tool when the tool parameter is provided. Tools include vocal-remover, echo-remover, demucs (stem splitter), audio-converter, and denoiser. Wait times are polled from the live queue and reflect real-time load.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `tool` | string | No | Filter to a specific audio tool. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-voice-ai-api-d86b2209/get_queue_wait_times \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"tool":"<string>"}'
```

### list_tts_voices

List available text-to-speech demo voices from Voice.ai. Returns voice IDs, names, and avatar URLs for all predefined TTS voices available in the public demo. The maximum text length for the demo is also returned.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-voice-ai-api-d86b2209/list_tts_voices \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
