YELD Studio API

Generate professional videos programmatically. All endpoints require an API key.

Authentication

Authorization: Bearer yk_your_api_key

Get your API key from the chat dashboard.

Base URL

https://yeldstudio.com

Endpoints

POST/api/v1/videos

Request 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
  }
}
GET/api/v1/videos/:id

Response

{
  "success": true,
  "data": {
    "id": "uuid",
    "status": "completed",
    "video_url": "https://...",
    "credits_used": 61
  }
}
GET/api/v1/credits

Response

{
  "success": true,
  "data": { "balance": 400, "plan": "starter" }
}