API Reference / Endpoints / Music
Podcast generation
/v1/music/podcastsReserved music surface that is not available in API v1.
POST
/v1/music/podcastsAuth: API keyBilling: ReservedBehavior: ReservedScopes: audio:generate
POSTReservedNo bodyaudio:generate
When to use it
Do not build against this yet. Keep it off the critical path until the product team enables it.
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/music/podcasts
const response = await fetch('https://prod-backup-backend.wubble.ai/v1/music/podcasts', {
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": "Podcast generation is not available in API v1."
}
}Implementation notes
This currently 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?