Generate professional videos programmatically. All endpoints require an API key.
Authorization: Bearer yk_your_api_keyGet your API key from the chat dashboard.
https://yeldstudio.com/api/v1/videosRequest body
{
"type": "ugc" | "brand_ad" | "product_demo" | "explainer",
"brief": "string",
"duration": 30,
"language": "en"
}Response
{
"success": true,
"data": {
"job_id": "uuid",
"status": "queued",
"estimated_credits": 61
}
}/api/v1/videos/:idResponse
{
"success": true,
"data": {
"id": "uuid",
"status": "completed",
"video_url": "https://...",
"credits_used": 61
}
}/api/v1/creditsResponse
{
"success": true,
"data": { "balance": 400, "plan": "starter" }
}