API Reference
API Reference / Endpoints / Speech

Voice changer

/v1/speech/voice-changer

Reserved speech surface that is not available in API v1.

POST/v1/speech/voice-changer
Auth: API keyBilling: ReservedBehavior: ReservedScopes: audio:generate
POSTReservedNo bodyaudio:generate

When to use it

Do not build against this yet. It is deferred beyond the current v1 release.

Behavior on success

Reserved route. Current behavior is 501 Not Implemented.

Integration shape

Authorization model
audio:generate
Request format
No request body
Polling pattern
Do not wire yet.

Example request

POST /v1/speech/voice-changer
const response = await fetch('https://prod-backup-backend.wubble.ai/v1/speech/voice-changer', {
  method: 'POST',
  headers: {
    Authorization: `Bearer ${process.env.WUBBLE_API_KEY}`,
  },
});

const payload = await response.json();
console.log(payload);

Example response

Response shapejson
{
  "success": false,
  "data": null,
  "error": {
    "code": "NOT_IMPLEMENTED",
    "message": "Voice changer is not available in API v1."
  }
}

Implementation notes

Returns 501 Not Implemented.

Reserved route

This route exists for future compatibility but currently returns 501 Not Implemented.
Keep this off your launch-critical path until the product team enables it.
Was this page helpful?