{"openapi":"3.1.0","info":{"title":"Muapi API","description":"Generative-media API: text-to-image, image-to-video, video-edit, lipsync, audio, 3D, and LLMs — 500+ models behind a single key.\n\n### Quickstart\n```http\nPOST https://api.muapi.ai/api/v1/{model-endpoint}\nx-api-key: YOUR_KEY\nContent-Type: application/json\n\n{ \"prompt\": \"…\" }\n```\nReturns `{ \"request_id\": \"abc123\" }`. Poll `GET /predictions/{request_id}/result` until `status: completed`, or pass `?webhook=https://you/cb` to be POSTed the result.\n\n### Picking a model\nOperations are grouped by **category** (text-to-image, video-edit, lipsync, …) and tagged with a **quality tier** in the summary:\n\n- `best` — flagship pro/ultra/master variants (highest fidelity, slowest, most expensive)\n- `balanced` — dev / standard mid-tier (good default)\n- `fast` — turbo / klein / schnell (sub-second to seconds)\n- `budget` — cheapest per-call (wan 2.x, hailuo standard, pixverse)\n\nEach operation's description starts with `Action: … Input: … Output: … Use for: …` so an LLM can match user intent to model directly.\n\n### Common conventions\n- All generation is **async**: every POST returns a `request_id`; outputs land on `GET /predictions/{id}/result`.\n- Status values: `queued`, `pending`, `processing`, `completed`, `failed`, `cancelled`.\n- `webhook` query param turns any endpoint into push delivery.\n- Costs are debited from the wallet on completion; `GET /account/balance` reports remaining credit.\n- Sandbox keys (`is_test: true` on key creation) return mock outputs without billing.\n\n### Auth\n`x-api-key: <key>` on every request. Create keys via `POST /api/v1/keys` or `https://muapi.ai/access-keys`.\n","contact":{"name":"Muapi Support","url":"https://muapi.ai/","email":"support@muapi.ai"},"license":{"name":"Proprietary"},"version":"1.0.0"},"servers":[{"url":"https://api.muapi.ai","description":"Production"}],"paths":{"/auth/register":{"post":{"tags":["Auth"],"summary":"Register","operationId":"register_auth_register_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegisterLoginRequest"}}},"required":true},"responses":{"201":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/auth/login":{"post":{"tags":["Auth"],"summary":"Login","operationId":"login_auth_login_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegisterLoginRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/auth/logout":{"post":{"tags":["Auth"],"summary":"Logout","operationId":"logout_auth_logout_post","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/auth/verify-otp":{"post":{"tags":["Auth"],"summary":"Verify Otp","operationId":"verify_otp_auth_verify_otp_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OtpRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/auth/request-otp":{"post":{"tags":["Auth"],"summary":"Request Otp","operationId":"request_otp_auth_request_otp_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OtpLoginRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/auth/login-otp":{"post":{"tags":["Auth"],"summary":"Login Otp","operationId":"login_otp_auth_login_otp_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OtpRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/auth/forgot-password":{"post":{"tags":["Auth"],"summary":"Forgot Password","operationId":"forgot_password_auth_forgot_password_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OtpLoginRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/auth/reset-password":{"post":{"tags":["Auth"],"summary":"Reset Password","operationId":"reset_password_auth_reset_password_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ResetPasswordRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/auth/support-login":{"post":{"tags":["Auth"],"summary":"Support Login","operationId":"support_login_auth_support_login_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SupportLoginRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/auth/support-reset-password":{"post":{"tags":["Auth"],"summary":"Support Reset Password","operationId":"support_reset_password_auth_support_reset_password_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SupportPasswordResetRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/auth/get-google-url":{"get":{"tags":["Auth"],"summary":"Get Google Url","operationId":"get_google_url_auth_get_google_url_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/auth/google_callback":{"get":{"tags":["Auth"],"summary":"Google Callback","operationId":"google_callback_auth_google_callback_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/auth/google/mobile":{"post":{"tags":["Auth"],"summary":"Google Mobile Callback","operationId":"google_mobile_callback_auth_google_mobile_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GoogleMobileLoginRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/auth/cli/login":{"post":{"tags":["Auth"],"summary":"Cli Login","description":"Exchange email + password for an API key. Designed for CLI / agents.","operationId":"cli_login_auth_cli_login_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegisterLoginRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/auth/admin_topup":{"post":{"tags":["Auth"],"summary":"Admin Topup","operationId":"admin_topup_auth_admin_topup_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/auth/admin_deduct_credits":{"post":{"tags":["Auth"],"summary":"Admin Deduct Credits","operationId":"admin_deduct_credits_auth_admin_deduct_credits_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/auth/admin_user_info":{"get":{"tags":["Auth"],"summary":"Admin User Info","operationId":"admin_user_info_auth_admin_user_info_get","parameters":[{"name":"email","in":"query","required":true,"schema":{"type":"string","title":"Email"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/auth/admin_manage_subscription":{"post":{"tags":["Auth"],"summary":"Admin Manage Subscription","operationId":"admin_manage_subscription_auth_admin_manage_subscription_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/auth/admin_model_discounts":{"get":{"tags":["Auth"],"summary":"Admin List Model Discounts","operationId":"admin_list_model_discounts_auth_admin_model_discounts_get","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Auth"],"summary":"Admin Upsert Model Discounts","operationId":"admin_upsert_model_discounts_auth_admin_model_discounts_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/auth/admin_model_discounts/{discount_id}":{"delete":{"tags":["Auth"],"summary":"Admin Delete Model Discount","operationId":"admin_delete_model_discount_auth_admin_model_discounts__discount_id__delete","parameters":[{"name":"discount_id","in":"path","required":true,"schema":{"type":"integer","title":"Discount Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/auth/my_model_discounts":{"get":{"tags":["Auth"],"summary":"My Model Discounts","operationId":"my_model_discounts_auth_my_model_discounts_get","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/auth/admin_stripe_charges":{"get":{"tags":["Auth"],"summary":"Admin Stripe Charges","operationId":"admin_stripe_charges_auth_admin_stripe_charges_get","parameters":[{"name":"email","in":"query","required":true,"schema":{"type":"string","title":"Email"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/auth/admin_stripe_refund":{"post":{"tags":["Auth"],"summary":"Admin Stripe Refund","operationId":"admin_stripe_refund_auth_admin_stripe_refund_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/auth/admin_refund":{"post":{"tags":["Auth"],"summary":"Admin Refund","operationId":"admin_refund_auth_admin_refund_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/auth/virtual_login":{"post":{"tags":["Auth"],"summary":"Virtual Login","operationId":"virtual_login_auth_virtual_login_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"text/plain":{"schema":{"type":"string"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/auth/admin_support_login_link":{"post":{"tags":["Auth"],"summary":"Admin Support Login Link","operationId":"admin_support_login_link_auth_admin_support_login_link_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/auth/admin_password_reset_link":{"post":{"tags":["Auth"],"summary":"Admin Password Reset Link","operationId":"admin_password_reset_link_auth_admin_password_reset_link_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/auth/admin_delete_user":{"post":{"tags":["Auth"],"summary":"Admin Delete User","description":"Permanently delete a user account and all associated data. Admin-only.","operationId":"admin_delete_user_auth_admin_delete_user_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/lora-data":{"get":{"tags":["Dashboard"],"summary":"Get Lora Data","operationId":"get_lora_data_app_lora_data_get","parameters":[{"name":"name","in":"query","required":true,"schema":{"type":"string","title":"Name"}},{"name":"lora_type","in":"query","required":true,"schema":{"type":"string","title":"Lora Type"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/lora-models-data":{"get":{"tags":["Dashboard"],"summary":"Get Lora Models Data","operationId":"get_lora_models_data_app_lora_models_data_get","parameters":[{"name":"page","in":"query","required":false,"schema":{"type":"integer","minimum":1,"default":1,"title":"Page"}},{"name":"q","in":"query","required":false,"schema":{"type":"string","default":"","title":"Q"}},{"name":"lora_type","in":"query","required":true,"schema":{"type":"string","title":"Lora Type"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/user_details":{"get":{"tags":["Dashboard"],"summary":"Get Profile","operationId":"get_profile_app_user_details_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/app/generate-api-key":{"post":{"tags":["Dashboard"],"summary":"Generate Api Key","operationId":"generate_api_key_app_generate_api_key_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/APIKeyCreateRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/get_user_keys":{"get":{"tags":["Dashboard"],"summary":"Get All Api Keys","operationId":"get_all_api_keys_app_get_user_keys_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/APIKeyResponse"},"type":"array","title":"Response Get All Api Keys App Get User Keys Get"}}}}}}},"/app/delete_api_keys/{key_id}":{"delete":{"tags":["Dashboard"],"summary":"Delete Api Key","operationId":"delete_api_key_app_delete_api_keys__key_id__delete","parameters":[{"name":"key_id","in":"path","required":true,"schema":{"type":"integer","title":"Key Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/account/export":{"get":{"tags":["Dashboard"],"summary":"Export Account Data","operationId":"export_account_data_app_account_export_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/app/account/request-deletion":{"post":{"tags":["Dashboard"],"summary":"Request Account Deletion","operationId":"request_account_deletion_app_account_request_deletion_post","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/app/account/cancel-deletion":{"post":{"tags":["Dashboard"],"summary":"Cancel Account Deletion","operationId":"cancel_account_deletion_app_account_cancel_deletion_post","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/app/update_api_key/{key_id}":{"put":{"tags":["Dashboard"],"summary":"Update Api Key Ips","operationId":"update_api_key_ips_app_update_api_key__key_id__put","parameters":[{"name":"key_id","in":"path","required":true,"schema":{"type":"integer","title":"Key Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/APIKeyUpdateRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/get-task-data":{"get":{"tags":["Dashboard"],"summary":"Get Task Data","operationId":"get_task_data_app_get_task_data_get","parameters":[{"name":"name","in":"query","required":true,"schema":{"type":"string","title":"Name"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/calculate_dynamic_cost":{"post":{"tags":["Dashboard"],"summary":"Calculate Dynamic Cost","operationId":"calculate_dynamic_cost_app_calculate_dynamic_cost_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DynamicCostRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/get_file_upload_url":{"get":{"tags":["Dashboard"],"summary":"Get File Upload Url","operationId":"get_file_upload_url_app_get_file_upload_url_get","parameters":[{"name":"filename","in":"query","required":true,"schema":{"type":"string","description":"Filename to upload","title":"Filename"},"description":"Filename to upload"},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/media-library":{"post":{"tags":["Dashboard"],"summary":"Save Media To Library","operationId":"save_media_to_library_app_media_library_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MediaAssetCreate"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/MediaAssetResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"get":{"tags":["Dashboard"],"summary":"Get Media Library","operationId":"get_media_library_app_media_library_get","parameters":[{"name":"media_type","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Filter by media type ('image', 'video', 'audio', 'all')","title":"Media Type"},"description":"Filter by media type ('image', 'video', 'audio', 'all')"},{"name":"search","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Search by name or URL","title":"Search"},"description":"Search by name or URL"},{"name":"page","in":"query","required":false,"schema":{"type":"integer","minimum":1,"default":1,"title":"Page"}},{"name":"page_size","in":"query","required":false,"schema":{"type":"integer","maximum":100,"minimum":1,"default":24,"title":"Page Size"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaginatedMediaAssetResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/media-library/{asset_id}":{"delete":{"tags":["Dashboard"],"summary":"Delete Media From Library","operationId":"delete_media_from_library_app_media_library__asset_id__delete","parameters":[{"name":"asset_id","in":"path","required":true,"schema":{"type":"integer","title":"Asset Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/get_homepage_models":{"get":{"tags":["Dashboard"],"summary":"Get All Ai Tasks","operationId":"get_all_ai_tasks_app_get_homepage_models_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/AITaskResponse"},"type":"array","title":"Response Get All Ai Tasks App Get Homepage Models Get"}}}}}}},"/app/get_model_name_for_embedcode":{"get":{"tags":["Dashboard"],"summary":"Get Model Name For Embedcode","operationId":"get_model_name_for_embedcode_app_get_model_name_for_embedcode_get","parameters":[{"name":"embed_code","in":"query","required":true,"schema":{"type":"string","title":"Embed Code"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmbedTaskResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/credit_transactions":{"get":{"tags":["Dashboard"],"summary":"Get Credit Transactions","operationId":"get_credit_transactions_app_credit_transactions_get","parameters":[{"name":"page","in":"query","required":false,"schema":{"type":"integer","default":1,"title":"Page"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaginatedTransactionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/get_run_history_data":{"get":{"tags":["Dashboard"],"summary":"Get All Usage Logs","operationId":"get_all_usage_logs_app_get_run_history_data_get","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"review_status","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Review Status"}},{"name":"page","in":"query","required":false,"schema":{"type":"integer","minimum":1,"default":1,"title":"Page"}},{"name":"include_count","in":"query","required":false,"schema":{"type":"boolean","default":true,"title":"Include Count"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaginatedUsageLogResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/get_run_history_data_by_search":{"get":{"tags":["Dashboard"],"summary":"Get All Usage Logs By Search","operationId":"get_all_usage_logs_by_search_app_get_run_history_data_by_search_get","parameters":[{"name":"request_id","in":"query","required":false,"schema":{"type":"string","title":"Request Id"}},{"name":"model_name","in":"query","required":false,"schema":{"type":"string","title":"Model Name"}},{"name":"created_at","in":"query","required":false,"schema":{"type":"string","format":"date","title":"Created At"}},{"name":"status","in":"query","required":false,"schema":{"type":"string","title":"Status"}},{"name":"review_status","in":"query","required":false,"schema":{"type":"string","title":"Review Status"}},{"name":"q","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Q"}},{"name":"page","in":"query","required":false,"schema":{"type":"integer","minimum":1,"default":1,"title":"Page"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaginatedUsageLogResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/get_gallery_data":{"get":{"tags":["Dashboard"],"summary":"Get Gallery Data","operationId":"get_gallery_data_app_get_gallery_data_get","parameters":[{"name":"media_type","in":"query","required":false,"schema":{"type":"string","description":"Type of media to fetch: all, image, video, audio","default":"all","title":"Media Type"},"description":"Type of media to fetch: all, image, video, audio"},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"review_status","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Review Status"}},{"name":"page","in":"query","required":false,"schema":{"type":"integer","minimum":1,"default":1,"title":"Page"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaginatedGalleryResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/usage_logs/{id}/review_status":{"patch":{"tags":["Dashboard"],"summary":"Update Review Status","operationId":"update_review_status_app_usage_logs__id__review_status_patch","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","title":"Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ReviewStatusUpdateRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/usage_logs/bulk_review_status":{"patch":{"tags":["Dashboard"],"summary":"Bulk Update Review Status","operationId":"bulk_update_review_status_app_usage_logs_bulk_review_status_patch","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BulkReviewStatusRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/usage_logs/bulk_delete":{"post":{"tags":["Dashboard"],"summary":"Bulk Delete Logs","operationId":"bulk_delete_logs_app_usage_logs_bulk_delete_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/BulkDeleteRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/prediction_response/{request_id}":{"get":{"tags":["Dashboard"],"summary":"Get Usage Log By Request Id","operationId":"get_usage_log_by_request_id_app_prediction_response__request_id__get","parameters":[{"name":"request_id","in":"path","required":true,"schema":{"type":"string","title":"Request Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UsageLogDetailResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/cancel_prediction/{request_id}":{"post":{"tags":["Dashboard"],"summary":"Cancel Prediction","operationId":"cancel_prediction_app_cancel_prediction__request_id__post","parameters":[{"name":"request_id","in":"path","required":true,"schema":{"type":"string","title":"Request Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/refetch_status/{task_id}":{"post":{"tags":["Dashboard"],"summary":"Refetch Status","operationId":"refetch_status_app_refetch_status__task_id__post","parameters":[{"name":"task_id","in":"path","required":true,"schema":{"type":"string","title":"Task Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/usage_by_keys":{"get":{"tags":["Dashboard"],"summary":"Get Usage By Keys","operationId":"get_usage_by_keys_app_usage_by_keys_get","parameters":[{"name":"from","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"From"}},{"name":"to","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"To"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/usage_data_by_user":{"get":{"tags":["Dashboard"],"summary":"Get Usage Summary","operationId":"get_usage_summary_app_usage_data_by_user_get","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/full_usage_statistics":{"get":{"tags":["Dashboard"],"summary":"Get Full Usage Statistics","operationId":"get_full_usage_statistics_app_full_usage_statistics_get","parameters":[{"name":"from","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"From"}},{"name":"to","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"To"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/get_video_metadata_for_seo":{"get":{"tags":["Dashboard"],"summary":"Get Video Metadata For Seo","operationId":"get_video_metadata_for_seo_app_get_video_metadata_for_seo_get","parameters":[{"name":"name","in":"query","required":true,"schema":{"type":"string","title":"Name"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/get_lora_metadata_for_seo":{"get":{"tags":["Dashboard"],"summary":"Get Lora Metadata For Seo","operationId":"get_lora_metadata_for_seo_app_get_lora_metadata_for_seo_get","parameters":[{"name":"name","in":"query","required":true,"schema":{"type":"string","title":"Name"}},{"name":"lora_type","in":"query","required":true,"schema":{"type":"string","title":"Lora Type"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/sitemap.xml":{"get":{"tags":["Dashboard"],"summary":"Sitemap","operationId":"sitemap_app_sitemap_xml_get","responses":{"200":{"description":"Successful Response"}}}},"/app/sitemap-pages.xml":{"get":{"tags":["Dashboard"],"summary":"Sitemap Pages","operationId":"sitemap_pages_app_sitemap_pages_xml_get","responses":{"200":{"description":"Successful Response"}}}},"/app/sitemap-models.xml":{"get":{"tags":["Dashboard"],"summary":"Sitemap Models","operationId":"sitemap_models_app_sitemap_models_xml_get","responses":{"200":{"description":"Successful Response"}}}},"/app/pdf/{filename}":{"get":{"tags":["Dashboard"],"summary":"Serve Pdf","operationId":"serve_pdf_app_pdf__filename__get","parameters":[{"name":"filename","in":"path","required":true,"schema":{"type":"string","title":"Filename"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/add-update":{"post":{"tags":["Dashboard"],"summary":"Add Updates","operationId":"add_updates_app_add_update_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateBase"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/get-updates-list":{"get":{"tags":["Dashboard"],"summary":"Get Updates","operationId":"get_updates_app_get_updates_list_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/app/delete-update/{update_id}":{"delete":{"tags":["Dashboard"],"summary":"Delete Update","operationId":"delete_update_app_delete_update__update_id__delete","parameters":[{"name":"update_id","in":"path","required":true,"schema":{"type":"integer","title":"Update Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/edit-update/{update_id}":{"put":{"tags":["Dashboard"],"summary":"Edit Update","operationId":"edit_update_app_edit_update__update_id__put","parameters":[{"name":"update_id","in":"path","required":true,"schema":{"type":"integer","title":"Update Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateBase"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/admin_stats":{"get":{"tags":["Dashboard"],"summary":"Get Admin Stats","operationId":"get_admin_stats_app_admin_stats_get","parameters":[{"name":"period","in":"query","required":false,"schema":{"type":"string","default":"all","title":"Period"}},{"name":"start_date","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Start Date"}},{"name":"end_date","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"End Date"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/admin_balances":{"get":{"tags":["Dashboard"],"summary":"Get Admin Balances","operationId":"get_admin_balances_app_admin_balances_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/app/admin_kinovi_order_lookup":{"get":{"tags":["Dashboard"],"summary":"Admin Kinovi Order Lookup","description":"Look up a Kinovi dashboard order_id (ord_...) and resolve it to the\nmuapi user/usage_log that submitted it. tRPC-submitted jobs store the\norder_id directly as UsageLog.request_id; REST-submitted jobs only store\nKinovi's internal task_id, so those are resolved by fetching the order's\nmetadata from Kinovi and matching usage_logs by creation-time proximity.","operationId":"admin_kinovi_order_lookup_app_admin_kinovi_order_lookup_get","parameters":[{"name":"order_id","in":"query","required":true,"schema":{"type":"string","title":"Order Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/studio-history":{"post":{"tags":["Dashboard"],"summary":"Save Studio History","description":"Save a studio generation result to the user's history.","operationId":"save_studio_history_app_studio_history_post","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}},"get":{"tags":["Dashboard"],"summary":"Get Studio History","description":"Get the user's studio generation history.","operationId":"get_studio_history_app_studio_history_get","parameters":[{"name":"generation_type","in":"query","required":false,"schema":{"type":"string","title":"Generation Type"}},{"name":"limit","in":"query","required":false,"schema":{"type":"integer","maximum":200,"default":50,"title":"Limit"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/interest":{"post":{"tags":["Dashboard"],"summary":"Register App Interest","description":"Register user interest for a coming-soon application template.","operationId":"register_app_interest_app_interest_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AppInterestRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/interests":{"get":{"tags":["Dashboard"],"summary":"Get App Interests","description":"Get the list of app names the user is interested in.","operationId":"get_app_interests_app_interests_get","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/interest_counts":{"get":{"tags":["Dashboard"],"summary":"Get App Interest Counts","description":"Public: total request count per app_name for the /apps page ordering.","operationId":"get_app_interest_counts_app_interest_counts_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/app/model_interest":{"post":{"tags":["Dashboard"],"summary":"Register Model Interest","description":"Register user interest (\"Request Access\") for a coming-soon playground model.","operationId":"register_model_interest_app_model_interest_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ModelInterestRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/model_interests":{"get":{"tags":["Dashboard"],"summary":"Get Model Interests","description":"Get the list of model names the user has requested access for.","operationId":"get_model_interests_app_model_interests_get","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/toggle_favourite_model":{"post":{"tags":["Dashboard"],"summary":"Toggle Fav","operationId":"toggle_fav_app_toggle_favourite_model_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/FavouriteModelRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/admin/outputs/restore/{job_id}":{"post":{"tags":["Dashboard"],"summary":"Admin Restore Output","operationId":"admin_restore_output_app_admin_outputs_restore__job_id__post","parameters":[{"name":"job_id","in":"path","required":true,"schema":{"type":"string","title":"Job Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/admin/outputs/restore/{job_id}/status":{"get":{"tags":["Dashboard"],"summary":"Admin Restore Status","operationId":"admin_restore_status_app_admin_outputs_restore__job_id__status_get","parameters":[{"name":"job_id","in":"path","required":true,"schema":{"type":"string","title":"Job Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/admin/fraud_freezes":{"get":{"tags":["Dashboard"],"summary":"Admin List Fraud Freezes","description":"List recent FraudFreezeEvent rows (most recent first) so support can\nspot false positives from the payment-failure velocity guard and restore\nthe zeroed balance. See docs/security_notes.md 2026-07-22.","operationId":"admin_list_fraud_freezes_app_admin_fraud_freezes_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/app/admin/fraud_freezes/{event_id}/restore":{"post":{"tags":["Dashboard"],"summary":"Admin Restore Fraud Freeze","description":"Restore the wallet balance zeroed by a specific fraud-freeze event\nonce confirmed to be a false positive. See crud.restore_fraud_freeze_balance.","operationId":"admin_restore_fraud_freeze_app_admin_fraud_freezes__event_id__restore_post","parameters":[{"name":"event_id","in":"path","required":true,"schema":{"type":"integer","title":"Event Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/admin/fraud_review_flags":{"get":{"tags":["Dashboard"],"summary":"Admin List Fraud Review Flags","description":"List recent FraudReviewFlag rows (most recent first) — succeeded charges\nwhose card-issuing country didn't match the billing address country plus\nan AVS failure. Soft signal only, not auto-actioned; support decides\nwhether to freeze via /admin/fraud_freezes-style tooling.","operationId":"admin_list_fraud_review_flags_app_admin_fraud_review_flags_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/app/admin/fraud_review_flags/{flag_id}/dismiss":{"post":{"tags":["Dashboard"],"summary":"Admin Dismiss Fraud Review Flag","description":"Mark a FraudReviewFlag as reviewed (false positive or already handled).","operationId":"admin_dismiss_fraud_review_flag_app_admin_fraud_review_flags__flag_id__dismiss_post","parameters":[{"name":"flag_id","in":"path","required":true,"schema":{"type":"integer","title":"Flag Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/admin_upload_assets":{"post":{"tags":["Dashboard"],"summary":"Admin Upload Assets","operationId":"admin_upload_assets_app_admin_upload_assets_post","requestBody":{"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/Body_admin_upload_assets_app_admin_upload_assets_post"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seo-google-serp":{"post":{"tags":["LLM / Multimodal"],"summary":"seo-google-serp (balanced)","description":"Fetch normalized Google organic search results for a keyword and market. Input: keyword, location, language, device, depth. Output: structured rankings, URLs, titles, descriptions, and SERP feature flags. Use for: SEO research, rank checks, keyword monitoring, and search-result analysis.","operationId":"seo_google_serp_api_v1_seo_google_serp_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeoGoogleSerpRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seo-keyword-research":{"post":{"tags":["LLM / Multimodal"],"summary":"seo-keyword-research (balanced)","description":"Discover search volume, CPC, competition, keyword difficulty, intent, and keyword suggestions for any seed query. Input: keyword, location, language, limit. Output: keyword metrics and suggestions. Use for: keyword research, content planning, and PPC/SEO opportunity analysis.","operationId":"seo_keyword_research_api_v1_seo_keyword_research_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeoKeywordResearchRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seo-domain-overview":{"post":{"tags":["LLM / Multimodal"],"summary":"seo-domain-overview (balanced)","description":"Analyze domain organic traffic, ranking keyword distributions, top performing search terms, and SERP competitors. Input: domain, location, language, limit. Output: organic metrics, top keywords, and competitor overlaps. Use for: competitor intelligence, domain visibility benchmarking, and SEO audits.","operationId":"seo_domain_overview_api_v1_seo_domain_overview_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeoDomainOverviewRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seo-backlinks":{"post":{"tags":["LLM / Multimodal"],"summary":"seo-backlinks (balanced)","description":"Analyze domain backlink profile, referring domains, domain authority rank, and link sources. Input: domain, limit, include_subdomains. Output: domain rank, total backlinks, referring domains, dofollow/nofollow counts, and backlink items. Use for: link building, backlink audits, competitor backlink discovery, and SEO authority analysis.","operationId":"seo_backlinks_api_v1_seo_backlinks_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeoBacklinksRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seo-lighthouse-audit":{"post":{"tags":["LLM / Multimodal"],"summary":"seo-lighthouse-audit (balanced)","description":"Run on-page Google Lighthouse audit evaluating Core Web Vitals, Performance, Accessibility, Best Practices, and SEO. Input: url, device (desktop/mobile). Output: category scores (0-100) and Web Vitals metrics (LCP, FCP, CLS, TBT, Speed Index). Use for: technical SEO audits, site speed optimization, page performance testing, and Core Web Vitals benchmarking.","operationId":"seo_lighthouse_audit_api_v1_seo_lighthouse_audit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeoLighthouseAuditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seo-rank-track":{"post":{"tags":["LLM / Multimodal"],"summary":"seo-rank-track (balanced)","description":"Track target domain search ranking position for a keyword against live Google organic search results. Input: keyword, target_domain, location, language, device, depth. Output: found rank, ranking URL, and full SERP result items. Use for: rank tracking, search position monitoring, and SERP tracking.","operationId":"seo_rank_track_api_v1_seo_rank_track_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeoRankTrackRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seo-rank-track-batch":{"post":{"tags":["LLM / Multimodal"],"summary":"seo-rank-track-batch (balanced)","description":"Track search rankings for multiple keywords in batch on Google organic search against a target domain. Input: keywords, target_domain, location, language, device, depth. Output: ranking positions, ranking URLs, visibility metrics (top 3, top 10, top 100), and average rank. Use for: batch rank tracking, bulk position monitoring, keyword rank audits, and SERP visibility analysis.","operationId":"seo_rank_track_batch_api_v1_seo_rank_track_batch_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeoRankTrackBatchRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seo-local-serp":{"post":{"tags":["LLM / Multimodal"],"summary":"seo-local-serp (balanced)","description":"Search Google Maps and Local Finder for local business rankings, ratings, reviews count, phone, address, and coordinates. Input: keyword, location, language, depth. Output: local pack and maps business listings. Use for: local SEO, Google Maps rankings, local business competitor analysis, and map pack tracking.","operationId":"seo_local_serp_api_v1_seo_local_serp_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeoLocalSerpRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seo-business-listings":{"post":{"tags":["LLM / Multimodal"],"summary":"seo-business-listings (balanced)","description":"Search comprehensive Google My Business database by keyword, business category, and geographical location. Input: keyword, location, language, depth. Output: business profiles, categories, addresses, phone numbers, review stats, and place IDs. Use for: local directory enrichment, lead generation, B2B company discovery, and local competitor research.","operationId":"seo_business_listings_api_v1_seo_business_listings_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeoBusinessListingsRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seo-business-profile":{"post":{"tags":["LLM / Multimodal"],"summary":"seo-business-profile (balanced)","description":"Fetch verified Google My Business profile details, category, contact info, ratings, and coordinates. Input: keyword, location, language, place_id, cid. Output: business title, address, phone, website, rating, reviews count, latitude, longitude, claimed status. Use for: Google My Business audit, local business NAP verification, citation audits, and map coordinates lookup.","operationId":"seo_business_profile_api_v1_seo_business_profile_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeoBusinessProfileRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seo-business-reviews":{"post":{"tags":["LLM / Multimodal"],"summary":"seo-business-reviews (balanced)","description":"Fetch live Google My Business customer reviews, star ratings, review timestamps, owner responses, and review sentiments. Input: keyword or place_id, location, language, depth. Output: business info and customer review items. Use for: reputation management, customer sentiment analysis, review monitoring, and local brand audits.","operationId":"seo_business_reviews_api_v1_seo_business_reviews_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeoBusinessReviewsRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seo-ai-mentions":{"post":{"tags":["LLM / Multimodal"],"summary":"seo-ai-mentions (best)","description":"Analyze Generative Engine Optimization (GEO) citations and brand mentions across ChatGPT, Google AI Overviews, and Perplexity. Input: keyword, engine (google_ai_overview/chatgpt/perplexity/gemini), location, depth. Output: AI generated response, cited sources, source domains, and brand mention flags. Use for: GEO audits, AI search optimization, AI citation tracking, and brand visibility in AI answers.","operationId":"seo_ai_mentions_api_v1_seo_ai_mentions_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeoAiMentionsRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seo-ai-response":{"post":{"tags":["LLM / Multimodal"],"summary":"seo-ai-response (best)","description":"Execute live prompt query across frontier AI engines (ChatGPT / Perplexity) and extract brand visibility, citations, and ranking links. Input: prompt, engine (chatgpt/perplexity/claude), location, target_url, target_domain. Output: synthesized answer, web search query, cited URLs, brand mentioned boolean, and citation count. Use for: Generative Engine Optimization testing, AI prompt monitoring, LLM citation analysis, and competitive brand intelligence.","operationId":"seo_ai_response_api_v1_seo_ai_response_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeoAiResponseRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seo-keywords-search-volume":{"post":{"tags":["LLM / Multimodal"],"summary":"seo-keywords-search-volume (balanced)","description":"Fetch official Google Ads monthly search volume, competition level, and estimated CPC bids for keyword lists. Input: keywords, location, language. Output: search volume, competition, low/high CPC bids, and monthly search trends.","operationId":"seo_keywords_search_volume_api_v1_seo_keywords_search_volume_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeoKeywordsSearchVolumeRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seo-keywords-for-keywords":{"post":{"tags":["LLM / Multimodal"],"summary":"seo-keywords-for-keywords (balanced)","description":"Discover related keyword suggestions and search ideas from Google Ads based on seed terms. Input: keywords, location, language, limit. Output: expanded keyword ideas and search volume.","operationId":"seo_keywords_for_keywords_api_v1_seo_keywords_for_keywords_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeoKeywordsForKeywordsRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seo-related-keywords":{"post":{"tags":["LLM / Multimodal"],"summary":"seo-related-keywords (balanced)","description":"Discover DataForSEO Labs related search keywords, keyword difficulty scores, and search volume. Input: keyword, location, language, depth, limit. Output: related keywords, keyword difficulty, search volume.","operationId":"seo_related_keywords_api_v1_seo_related_keywords_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeoRelatedKeywordsRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seo-keyword-overview":{"post":{"tags":["LLM / Multimodal"],"summary":"seo-keyword-overview (balanced)","description":"Get DataForSEO Labs keyword metrics and search intent classification for keyword sets. Input: keywords, location, language. Output: search intent, keyword difficulty, CPC, and search volume.","operationId":"seo_keyword_overview_api_v1_seo_keyword_overview_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeoKeywordOverviewRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seo-relevant-pages":{"post":{"tags":["LLM / Multimodal"],"summary":"seo-relevant-pages (balanced)","description":"Identify top organic ranking pages and ranking keyword counts for any target domain. Input: target, location, language, limit. Output: top ranking URLs and keyword metrics.","operationId":"seo_relevant_pages_api_v1_seo_relevant_pages_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeoRelevantPagesRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seo-backlinks-pages":{"post":{"tags":["LLM / Multimodal"],"summary":"seo-backlinks-pages (balanced)","description":"Discover top backlinked pages for a domain with incoming link metrics and HTTP status. Input: target, limit, include_subdomains. Output: top backlinked pages and link counts.","operationId":"seo_backlinks_pages_api_v1_seo_backlinks_pages_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeoBacklinksPagesRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seo-backlinks-history":{"post":{"tags":["LLM / Multimodal"],"summary":"seo-backlinks-history (balanced)","description":"Track historical backlink growth, referring domains, and link velocity over time. Input: target, date_from, date_to. Output: monthly historical backlink metrics.","operationId":"seo_backlinks_history_api_v1_seo_backlinks_history_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeoBacklinksHistoryRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seo-ai-mentions-metrics":{"post":{"tags":["LLM / Multimodal"],"summary":"seo-ai-mentions-metrics (best)","description":"Analyze aggregated LLM mentions, brand sentiment, and cross-competitor share of voice across ChatGPT and Google AI. Input: target, competitors, platforms, date_from, date_to. Output: sentiment, share of voice, and competitor comparisons.","operationId":"seo_ai_mentions_metrics_api_v1_seo_ai_mentions_metrics_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeoAiMentionsMetricsRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seo-google-qa":{"post":{"tags":["LLM / Multimodal"],"summary":"seo-google-qa (balanced)","description":"Extract Google My Business Questions and Answers live from Google search. Input: keyword, location, language, depth. Output: questions, answers, and author details.","operationId":"seo_google_qa_api_v1_seo_google_qa_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeoGoogleQaRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seo-business-updates":{"post":{"tags":["LLM / Multimodal"],"summary":"seo-business-updates (balanced)","description":"Fetch Google My Business posts, announcements, and updates. Input: keyword, location, language. Output: business posts, updates, and events.","operationId":"seo_business_updates_api_v1_seo_business_updates_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeoBusinessUpdatesRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seo-account-status":{"post":{"tags":["Other"],"summary":"seo-account-status (fast)","description":"Check DataForSEO provider API balance, limits, and rates. Input: none. Output: provider balance and account status.","operationId":"seo_account_status_api_v1_seo_account_status_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeoAccountStatusRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seo-youtube-organic":{"post":{"tags":["LLM / Multimodal"],"summary":"seo-youtube-organic (balanced)","description":"Fetch YouTube organic search results by keyword. Input: keyword, location, language, device, depth. Output: ranked video search items.","operationId":"seo_youtube_organic_api_v1_seo_youtube_organic_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeoYoutubeOrganicRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seo-youtube-video-info":{"post":{"tags":["LLM / Multimodal"],"summary":"seo-youtube-video-info (balanced)","description":"Fetch YouTube video metadata, engagement stats, channel info, and tags. Input: video_id, location, language. Output: video details, engagement metrics, tags.","operationId":"seo_youtube_video_info_api_v1_seo_youtube_video_info_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeoYoutubeVideoInfoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seo-youtube-video-subtitles":{"post":{"tags":["LLM / Multimodal"],"summary":"seo-youtube-video-subtitles (balanced)","description":"Fetch YouTube video subtitles and transcripts. Input: video_id, subtitles_language. Output: timed subtitle lines and full transcript text.","operationId":"seo_youtube_video_subtitles_api_v1_seo_youtube_video_subtitles_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeoYoutubeVideoSubtitlesRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seo-youtube-video-comments":{"post":{"tags":["LLM / Multimodal"],"summary":"seo-youtube-video-comments (balanced)","description":"Fetch YouTube video comments. Input: video_id, depth. Output: list of comments with author and like counts.","operationId":"seo_youtube_video_comments_api_v1_seo_youtube_video_comments_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeoYoutubeVideoCommentsRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/account/balance":{"get":{"tags":["Account"],"summary":"Get wallet balance","description":"Return the credit balance for the authenticated account.","operationId":"get_account_balance_api_v1_account_balance_get","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/account/topup":{"post":{"tags":["Account"],"summary":"Create Stripe top-up checkout","description":"Create a Stripe checkout session for topping up credits. Returns a checkout URL.","operationId":"topup_credits_api_v1_account_topup_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/account/auto-topup":{"get":{"tags":["Account"],"summary":"Auto-topup settings","description":"Get the auto-topup settings for the authenticated user.","operationId":"get_auto_topup_api_v1_account_auto_topup_get","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Account"],"summary":"Auto-topup settings","description":"Update auto-topup settings (enabled, threshold, topup_amount).","operationId":"update_auto_topup_api_v1_account_auto_topup_put","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/account/auto-topup/verify":{"get":{"tags":["Account"],"summary":"Verify auto-topup setup","description":"Verify a completed Stripe setup session and save the payment method.","operationId":"verify_auto_topup_setup_api_v1_account_auto_topup_verify_get","parameters":[{"name":"session_id","in":"query","required":true,"schema":{"type":"string","title":"Session Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/account/auto-topup/setup":{"post":{"tags":["Account"],"summary":"Configure auto-topup payment method","description":"Create a Stripe Checkout Session (setup mode) to save a card. Returns a checkout URL.","operationId":"create_auto_topup_setup_api_v1_account_auto_topup_setup_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/keys":{"get":{"tags":["API Keys"],"summary":"List or create API keys","description":"List all API keys for the authenticated user.","operationId":"list_keys_api_v1_keys_get","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["API Keys"],"summary":"List or create API keys","description":"Create a new API key for the authenticated user.\n\nPass ``\"is_test\": true`` in the JSON body to create a sandbox key that\nnever deducts credits and returns mock outputs.\n\nGated behind the `keys:manage` scope for OAuth-token callers (not plain\nAPI keys or session logins) — otherwise a token minted with only e.g.\n`generate:write` could mint itself a brand-new, permanent, unscoped API\nkey here and use that instead, silently escaping every scope restriction.","operationId":"create_key_api_v1_keys_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/keys/{key_id}":{"delete":{"tags":["API Keys"],"summary":"Delete an API key","description":"Delete an API key by ID.","operationId":"delete_key_api_v1_keys__key_id__delete","parameters":[{"name":"key_id","in":"path","required":true,"schema":{"type":"integer","title":"Key Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/models":{"get":{"tags":["API"],"summary":"List Models","description":"Public catalog of every model available on muapi.ai with pricing.\n\nReturns one entry per model with `name` (use as the endpoint slug —\n`POST /api/v1/{name}`), human-readable `description` and `category`, the\nbase USD `cost` per call, and a `cost_strategy` flag.\n\nCost semantics:\n  • `cost_strategy == \"fixed_cost\"` (or any strategy not in the dynamic\n    registry) → `cost` is the exact USD price per call.\n  • Otherwise → `cost` is a representative base; the final price depends\n    on the request payload (duration, resolution, etc.). Call\n    `POST /api/v1/models/{name}/estimate-cost` with the same payload you\n    plan to submit to get the exact USD price.\n\nEvery generation response also includes the real charge as\n`cost.amount_usd` plus the `X-MuAPI-Cost-USD` response header, so this\nendpoint is for pre-flight pricing UI only.","operationId":"list_models_api_v1_models_get","parameters":[{"name":"category","in":"query","required":false,"schema":{"type":"string","description":"Filter by category, e.g. 'Text to Image', 'Text to Video', 'Image to Video', 'Image to Image', 'Video to Video', 'Text to Audio', 'Image to 3D', 'Text to 3D'.","title":"Category"},"description":"Filter by category, e.g. 'Text to Image', 'Text to Video', 'Image to Video', 'Image to Image', 'Video to Video', 'Text to Audio', 'Image to 3D', 'Text to 3D'."},{"name":"family","in":"query","required":false,"schema":{"type":"string","description":"Filter by model family slug (e.g. 'flux', 'veo3', 'kling').","title":"Family"},"description":"Filter by model family slug (e.g. 'flux', 'veo3', 'kling')."},{"name":"group_of","in":"query","required":false,"schema":{"type":"string","description":"Filter by group (e.g. 'image-generation').","title":"Group Of"},"description":"Filter by group (e.g. 'image-generation')."}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/models/{name}":{"get":{"tags":["API"],"summary":"Get Model","description":"Pricing + metadata for a single model.\n\nReturns the same shape as `GET /api/v1/models` for one model, plus the\nfull `input_schema` and `output_schema` so callers can introspect the\nrequest payload without hitting `/openapi.json`.","operationId":"get_model_api_v1_models__name__get","parameters":[{"name":"name","in":"path","required":true,"schema":{"type":"string","title":"Name"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/changelog":{"get":{"tags":["API"],"summary":"Get Changelog","description":"Public changelog — most recently added models, sorted by created_at desc.\n\nAutomatically reflects every model synced via sync_schema_to_db.py.\nNo auth required.","operationId":"get_changelog_api_v1_changelog_get","parameters":[{"name":"limit","in":"query","required":false,"schema":{"type":"integer","maximum":200,"minimum":1,"default":50,"title":"Limit"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/models/{name}/estimate-cost":{"post":{"tags":["API"],"summary":"Estimate Model Cost","description":"Quote the exact USD cost for a given model + request payload.\n\nBody is the same JSON you would `POST` to `/api/v1/{name}`. For models\nwith dynamic pricing (video duration, resolution, audio length, etc.)\nthis runs the same cost function the billing system uses, so the quote\nmatches what you'll actually be charged.\n\nFor fixed-price models the base `cost` is returned.\n\nUse this to surface a price preview to your end users before triggering\nthe generation.","operationId":"estimate_model_cost_api_v1_models__name__estimate_cost_post","parameters":[{"name":"name","in":"path","required":true,"schema":{"type":"string","title":"Name"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/agent-skills":{"get":{"tags":["API"],"summary":"List Public Agent Skills","description":"Public catalog of built-in muapi agent skill recipes.\n\nReturns the name, description, inputs, triggers, and estimated cost for\nevery recipe shipped in `agent/skills/`. No auth — these are discovery\nmetadata so external agents (Claude, Cursor, custom LLM apps) can\nenumerate which workflow recipes muapi.ai offers without needing an\naccount first. Use `GET /api/v1/agent-skills/{name}` to fetch the full\nmarkdown body.","operationId":"list_public_agent_skills_api_v1_agent_skills_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/api/v1/agent-skills/{name}":{"get":{"tags":["API"],"summary":"Get Public Agent Skill","description":"Full markdown body for a single built-in agent skill recipe.\n\nBody is the natural-language recipe the agent reads + executes. Inputs\nschema is also returned so clients can prompt the user for required\nfields before invoking the recipe.","operationId":"get_public_agent_skill_api_v1_agent_skills__name__get","parameters":[{"name":"name","in":"path","required":true,"schema":{"type":"string","title":"Name"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/upload_file":{"post":{"tags":["Files"],"summary":"Upload media to Muapi-hosted storage","operationId":"upload_file_api_v1_upload_file_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/get_upload_url":{"get":{"tags":["Files"],"summary":"Get a presigned S3 upload URL","operationId":"get_upload_url_api_v1_get_upload_url_get","parameters":[{"name":"filename","in":"query","required":true,"schema":{"type":"string","title":"Filename"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/generate_video_prompt":{"post":{"tags":["Utilities"],"summary":"Generate Video Prompt","operationId":"generate_video_prompt_api_v1_generate_video_prompt_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/VideoPromptRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/tiktok-carousel":{"post":{"tags":["Utilities"],"summary":"Tiktok Carousel","operationId":"tiktok_carousel_api_v1_tiktok_carousel_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TikTokCarouselRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/generate_video_scene_prompts":{"post":{"tags":["Utilities"],"summary":"Generate Video Scene Prompts","operationId":"generate_video_scene_prompts_api_v1_generate_video_scene_prompts_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/VideoPromptRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/ai-clipping":{"post":{"tags":["Video: Edit & Effects"],"summary":"ai-clipping","operationId":"ai_clipping_api_v1_ai_clipping_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AIClippingRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Automatically clip highlights from long videos using AI. Input: video. Output: clipped highlight video. Use for: video clipping, highlight reel, social media clips."}},"/api/v1/ocr-recognize-text":{"post":{"tags":["Image: Enhance"],"summary":"ocr-recognize-text","operationId":"ocr_recognize_text_api_v1_ocr_recognize_text_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OcrRecognizeTextRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Detect and extract text fragments from an image using local OCR. Input: image. Output: list of text fragments with bbox and confidence. Use for: text detection, edit-text prep, localization, document text extraction."}},"/api/v1/autocrop":{"post":{"tags":["Utilities"],"summary":"Autocrop","operationId":"autocrop_api_v1_autocrop_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AutocropRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/flux-dev-image":{"post":{"tags":["Image: Text-to-Image"],"summary":"flux-dev (balanced)","operationId":"generate_flux_dev_image_api_v1_flux_dev_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ImageRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate high-quality images from text prompts using Flux Dev. Input: text prompt. Output: image. Use for: text-to-image generation, creative visuals, detailed illustrations, photorealistic renders."}},"/api/v1/flux_dev_lora_image":{"post":{"tags":["Image: Text-to-Image"],"summary":"flux-dev-lora","operationId":"generate_flux_dev_lora_image_api_v1_flux_dev_lora_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ImageRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images from text using Flux Dev with LoRA fine-tuning support. Input: text prompt, LoRA weights. Output: image. Use for: custom style generation, fine-tuned models."}},"/api/v1/flux-schnell-image":{"post":{"tags":["Image: Text-to-Image"],"summary":"flux-schnell (fast)","operationId":"generate_flux_schnell_image_api_v1_flux_schnell_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ImageRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images from text quickly using Flux Schnell (fast). Input: text prompt. Output: image. Use for: rapid image generation, quick prototyping, bulk image creation."}},"/api/v1/flux-kontext-dev-i2i":{"post":{"tags":["Image: Edit & Reference"],"summary":"flux-kontext-dev-i2i (balanced)","operationId":"generate_flux_kontext_dev_image_api_v1_flux_kontext_dev_i2i_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KontextImageRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit and transform images using Flux Kontext Dev (image-to-image). Input: image, edit instruction. Output: edited image. Use for: image editing, object change, scene modification."}},"/api/v1/flux-kontext-dev-t2i":{"post":{"tags":["Image: Text-to-Image"],"summary":"flux-kontext-dev-t2i (balanced)","operationId":"generate_flux_kontext_dev_image_api_v1_flux_kontext_dev_t2i_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/FluxKontextT2I"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate contextually aware images from text using Flux Kontext Dev. Input: text prompt, optional context images. Output: image. Use for: contextual image generation, maintaining scene consistency."}},"/api/v1/hidream_i1_fast_image":{"post":{"tags":["Image: Text-to-Image"],"summary":"hidream-i1-fast (fast)","operationId":"generate_hidream_i1_fast_image_api_v1_hidream_i1_fast_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/HiDreamImageRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images quickly from text using HiDream I1 Fast (16-step). Input: text prompt. Output: image. Use for: fast generation, quick iteration."}},"/api/v1/hidream_i1_dev_image":{"post":{"tags":["Image: Text-to-Image"],"summary":"hidream-i1-dev (balanced)","operationId":"generate_hidream_i1_dev_image_api_v1_hidream_i1_dev_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/HiDreamImageRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate balanced quality images from text using HiDream I1 Dev. Input: text prompt. Output: image. Use for: quality/speed balance, development use."}},"/api/v1/hidream_i1_full_image":{"post":{"tags":["Image: Text-to-Image"],"summary":"hidream-i1-full (best)","operationId":"generate_hidream_i1_full_image_api_v1_hidream_i1_full_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/HiDreamImageRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate highest-quality images from text using HiDream I1 Full (17B sparse MoE). Input: text prompt. Output: image. Use for: best quality image generation, commercial use, fine detail."}},"/api/v1/generate_wan_video_prompt":{"post":{"tags":["Utilities"],"summary":"Generate Wan Video Prompt","operationId":"generate_wan_video_prompt_api_v1_generate_wan_video_prompt_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WanPromptRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/generate_wan_ai_effects":{"post":{"tags":["Video: Edit & Effects"],"summary":"ai-video-effects","operationId":"generate_wan_ai_effects_api_v1_generate_wan_ai_effects_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WanEffectRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Apply AI visual effects to videos using Wan AI Effects. Input: video, effect prompt. Output: stylized video. Use for: video effects, motion style transfer, cinematic filters."}},"/api/v1/predictions/{id}/result":{"get":{"tags":["Predictions"],"summary":"Poll a prediction's status & outputs","operationId":"get_prediction_result_api_v1_predictions__id__result_get","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","title":"Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/predictions/{id}/media":{"delete":{"tags":["Predictions"],"summary":"Delete prediction media","description":"Delete input and output media (images/videos) from a prediction without deleting the request.","operationId":"delete_prediction_media_api_v1_predictions__id__media_delete","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","title":"Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/history":{"get":{"tags":["API"],"summary":"Get History","description":"Paginated past-generations list (gallery/history), newest first, scoped to\nthe calling identity. `cursor` is the `next_cursor` from the previous page.","operationId":"get_history_api_v1_history_get","parameters":[{"name":"cursor","in":"query","required":false,"schema":{"type":"string","title":"Cursor"}},{"name":"limit","in":"query","required":false,"schema":{"type":"integer","maximum":100,"minimum":1,"default":30,"title":"Limit"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/get-usage-log-id/{request_id}":{"get":{"tags":["Predictions"],"summary":"Internal lookup: request_id → usage log id","operationId":"get_usage_log_id_api_v1_get_usage_log_id__request_id__get","parameters":[{"name":"request_id","in":"path","required":true,"schema":{"type":"string","title":"Request Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UsageLogIdResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/veo3-fast-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"veo3-fast-text-to-video (fast)","operationId":"veo3_fast_text_to_video_api_v1_veo3_fast_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Veo3T2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text quickly using Google Veo 3 Fast. Input: text prompt. Output: 8-second video. Use for: fast video generation, quick video prototyping."}},"/api/v1/veo3-fast-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"veo3-fast-image-to-video (fast)","operationId":"veo3_fast_image_to_video_api_v1_veo3_fast_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Veo3I2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images into video quickly using Google Veo 3 Fast. Input: image, text prompt. Output: video. Use for: fast image animation."}},"/api/v1/veo3-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"veo3-text-to-video (balanced)","operationId":"veo3_text_to_video_api_v1_veo3_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Veo3T2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate cinematic videos from text using Google Veo 3. Input: text prompt. Output: 8-second video. Use for: high-quality video generation, cinematic shots, motion graphics."}},"/api/v1/veo3-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"veo3-image-to-video (balanced)","operationId":"veo3_image_to_video_api_v1_veo3_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Veo3I2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images into video using Google Veo 3. Input: image, text prompt. Output: video. Use for: image animation, bringing photos to life."}},"/api/v1/ai-image-upscale":{"post":{"tags":["Image: Enhance"],"summary":"ai-image-upscaler","operationId":"ai_image_upscale_api_v1_ai_image_upscale_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AiAppsRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Upscale images to higher resolution using AI. Input: image. Output: upscaled high-resolution image. Use for: image enhancement, resolution boost, print quality improvement."}},"/api/v1/ai-image-face-swap":{"post":{"tags":["Image: Enhance"],"summary":"ai-image-face-swap","operationId":"ai_image_face_swap_api_v1_ai_image_face_swap_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ImageFaceSwapRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Swap faces between images using AI. Input: source image, target face image. Output: image with swapped face. Use for: face swap, creative portraits."}},"/api/v1/ai-video-face-swap":{"post":{"tags":["Video: Edit & Effects"],"summary":"ai-video-face-swap","operationId":"ai_video_face_swap_api_v1_ai_video_face_swap_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/VideoFaceSwapRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Swap faces in video using AI. Input: video, target face image. Output: video with swapped face. Use for: video face swap."}},"/api/v1/ai-dress-change":{"post":{"tags":["Video: Edit & Effects"],"summary":"ai-dress-change","operationId":"ai_dress_change_api_v1_ai_dress_change_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AiDressChangeRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Change clothing/outfit on person in image or video using AI. Input: image/video, new outfit description or image. Output: video with new outfit. Use for: virtual try-on, fashion video, outfit change."}},"/api/v1/flux-lora-trainer":{"post":{"tags":["Image: Text-to-Image"],"summary":"Flux Lora Trainer","operationId":"flux_lora_trainer_api_v1_flux_lora_trainer_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/FluxLoraTrainerRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/mmaudio-v2/text-to-audio":{"post":{"tags":["Audio"],"summary":"mmaudio-v2-text-to-audio (balanced)","operationId":"mmaudio_v2_text_to_audio_api_v1_mmaudio_v2_text_to_audio_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MmAudioT2ARequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate audio/sound effects from text using MMAudio v2. Input: text description. Output: audio. Use for: ambient sounds, sound effects, audio synthesis."}},"/api/v1/mmaudio-v2/video-to-video":{"post":{"tags":["Audio"],"summary":"mmaudio-v2-video-to-video","operationId":"mmaudio_v2_text_to_audio_api_v1_mmaudio_v2_video_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MmAudioV2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Add synchronized audio/sound effects to video using MMAudio v2. Input: video. Output: video with generated audio. Use for: adding sound to silent video, ambient sound generation."}},"/api/v1/ai-background-remover":{"post":{"tags":["Image: Enhance"],"summary":"ai-background-remover","operationId":"ai_background_remover_api_v1_ai_background_remover_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AiAppsRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Remove background from images using AI. Input: image. Output: image with transparent background. Use for: background removal, product photos, cutout creation."}},"/api/v1/ai-product-shot":{"post":{"tags":["Image: Enhance"],"summary":"ai-product-shot","operationId":"ai_product_shot_api_v1_ai_product_shot_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AiProductShotRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate product shots with custom backgrounds using AI. Input: product image, scene description. Output: product shot. Use for: product advertising, lifestyle product shots."}},"/api/v1/ai-skin-enhancer":{"post":{"tags":["Image: Enhance"],"summary":"ai-skin-enhancer","operationId":"ai_skin_enhancer_api_v1_ai_skin_enhancer_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AiAppsRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Enhance skin quality in portrait images using AI. Input: portrait image. Output: image with enhanced skin. Use for: beauty retouching, skin smoothing."}},"/api/v1/ai-color-photo":{"post":{"tags":["Image: Enhance"],"summary":"ai-color-photo","operationId":"ai_color_photo_api_v1_ai_color_photo_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AiAppsRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Colorize black and white photos using AI. Input: grayscale image. Output: colorized image. Use for: photo restoration, colorizing old photos."}},"/api/v1/ai-product-photography":{"post":{"tags":["Image: Enhance"],"summary":"ai-product-photography","operationId":"ai_product_photography_api_v1_ai_product_photography_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProductPhotoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate professional product photography backgrounds using AI. Input: product image, background description. Output: professional product photo. Use for: e-commerce product photos, marketing images."}},"/api/v1/ai-ghibli-style":{"post":{"tags":["Image: Enhance"],"summary":"ai-ghibli-style","operationId":"ai_ghibli_style_api_v1_ai_ghibli_style_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AiAppsRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Transform images into Studio Ghibli anime style using AI. Input: image. Output: Ghibli-style illustrated image. Use for: anime style transfer, Ghibli-style art, illustrated portraits."}},"/api/v1/ai-anime-generator":{"post":{"tags":["Image: Enhance"],"summary":"ai-anime-generator","operationId":"ai_anime_generator_api_v1_ai_anime_generator_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AnimeGeneratorRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Transform images into anime style using AI. Input: image. Output: anime-style image. Use for: anime conversion, manga style, animated portrait."}},"/api/v1/ai-image-extension":{"post":{"tags":["Image: Enhance"],"summary":"ai-image-extension","operationId":"ai_image_extension_api_v1_ai_image_extension_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AiAppsRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Extend/expand image canvas using AI outpainting. Input: image. Output: expanded image. Use for: image outpainting, canvas expansion, widening photos."}},"/api/v1/ai-object-eraser":{"post":{"tags":["Image: Enhance"],"summary":"ai-object-eraser","operationId":"ai_object_eraser_api_v1_ai_object_eraser_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ObjectEraserRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Remove/erase objects from images using AI inpainting. Input: image, mask area. Output: image with object removed. Use for: object removal, photo cleanup, background repair."}},"/api/v1/runway-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"runway-image-to-video (best)","operationId":"runway_image_to_video_api_v1_runway_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RunwayI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images using Runway Gen-4/4.5 (character+location consistency, cinematic). Input: image, text prompt. Output: 5-10 second video. Use for: cinematic character animation, story-consistent video."}},"/api/v1/runway-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"runway-text-to-video (balanced)","operationId":"runway_image_to_video_api_v1_runway_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RunwayT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate cinematic videos from text using Runway Gen-4/4.5. Input: text prompt, optional character/location reference. Output: 5-10 second cinematic video. Use for: character-consistent video, film-quality generation, story videos."}},"/api/v1/suno-create-music":{"post":{"tags":["Audio"],"summary":"suno-create-music (balanced)","operationId":"suno_create_music_api_v1_suno_create_music_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SunoMusicRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate original music/songs from text using Suno AI. Input: text description, genre, mood, optional lyrics. Output: full song with vocals. Use for: background music, jingles, song creation, ad music."}},"/api/v1/suno-voice-clone":{"post":{"tags":["Audio"],"summary":"suno-voice-clone (balanced)","operationId":"suno_voice_clone_api_v1_suno_voice_clone_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SunoVoiceCloneRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Clone a singing voice for use in Suno music generation. Two-stage flow: submit a 10s audio sample to get a fresh verification phrase, then submit a recording of the phrase to receive a reusable voice_id. Input: audio sample URL, optional name/style/language. Output: request_id that polls to {stage: awaiting_phrase, phrase} then to {voice_id, stage: completed}. Use for: cloning your own singing voice, custom vocal identity, anti-deepfake voice cloning."}},"/api/v1/suno-voice-clone/{request_id}/confirm":{"post":{"tags":["Audio"],"summary":"Suno Voice Clone Confirm","operationId":"suno_voice_clone_confirm_api_v1_suno_voice_clone__request_id__confirm_post","parameters":[{"name":"request_id","in":"path","required":true,"schema":{"type":"string","title":"Request Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SunoVoiceConfirmRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/suno-voices":{"get":{"tags":["Audio"],"summary":"List Suno Voices","operationId":"list_suno_voices_api_v1_suno_voices_get","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/suno-voices/{voice_db_id}":{"delete":{"tags":["Audio"],"summary":"Delete Suno Voice","operationId":"delete_suno_voice_api_v1_suno_voices__voice_db_id__delete","parameters":[{"name":"voice_db_id","in":"path","required":true,"schema":{"type":"string","title":"Voice Db Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/suno-voices/{voice_db_id}/check":{"post":{"tags":["Audio"],"summary":"Check Suno Voice","operationId":"check_suno_voice_api_v1_suno_voices__voice_db_id__check_post","parameters":[{"name":"voice_db_id","in":"path","required":true,"schema":{"type":"string","title":"Voice Db Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/suno-voices/{voice_db_id}/refresh":{"post":{"tags":["Audio"],"summary":"Refresh Suno Voice","operationId":"refresh_suno_voice_api_v1_suno_voices__voice_db_id__refresh_post","parameters":[{"name":"voice_db_id","in":"path","required":true,"schema":{"type":"string","title":"Voice Db Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/suno-remix-music":{"post":{"tags":["Audio"],"summary":"suno-remix-music","operationId":"suno_remix_music_api_v1_suno_remix_music_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SunoRemixMusicRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Remix an existing song into a new style using Suno AI. Input: audio clip, new style description. Output: remixed song. Use for: music remixing, style transfer for audio."}},"/api/v1/suno-extend-music":{"post":{"tags":["Audio"],"summary":"suno-extend-music","operationId":"suno_extend_music_api_v1_suno_extend_music_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SunoExtendMusicRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Extend/lengthen a song using Suno AI. Input: audio clip. Output: extended song. Use for: making songs longer, adding outro/intro."}},"/api/v1/suno-convert-to-wav":{"post":{"tags":["Audio"],"summary":"Suno Convert To Wav","operationId":"suno_convert_to_wav_api_v1_suno_convert_to_wav_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SunoConvertToWavRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/suno-generate-sounds":{"post":{"tags":["Audio"],"summary":"suno-generate-sounds","operationId":"suno_generate_sounds_api_v1_suno_generate_sounds_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SunoGenerateSoundsRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate sound effects from text using Suno AI. Input: sound description. Output: audio effect. Use for: sound design, SFX generation."}},"/api/v1/suno-generate-lyrics":{"post":{"tags":["Audio"],"summary":"suno-generate-lyrics","operationId":"suno_generate_lyrics_api_v1_suno_generate_lyrics_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SunoGenerateLyricsRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate song lyrics from a topic or description using Suno AI. Input: topic or description. Output: song lyrics. Use for: lyric writing, songwriting assistance."}},"/api/v1/suno-boost-music-style":{"post":{"tags":["Audio"],"summary":"suno-boost-music-style","operationId":"suno_boost_music_style_api_v1_suno_boost_music_style_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SunoBoostMusicStyleRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Enhance and intensify music style using Suno AI. Input: audio, style intensification prompt. Output: enhanced audio. Use for: music enhancement, style amplification."}},"/api/v1/suno-add-vocals":{"post":{"tags":["Audio"],"summary":"suno-add-vocals","operationId":"suno_add_vocals_api_v1_suno_add_vocals_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SunoAddVocalsRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Add AI vocals to an instrumental track using Suno AI. Input: instrumental track, lyrics or style. Output: song with vocals. Use for: adding vocals to music."}},"/api/v1/suno-generate-mashup":{"post":{"tags":["Audio"],"summary":"suno-generate-mashup","operationId":"suno_generate_mashup_api_v1_suno_generate_mashup_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SunoGenerateMashupRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Create a mashup combining multiple songs using Suno AI. Input: multiple audio clips. Output: mashup audio. Use for: music mashup creation."}},"/api/v1/suno-add-instrumental":{"post":{"tags":["Audio"],"summary":"suno-add-instrumental","operationId":"suno_add_instrumental_api_v1_suno_add_instrumental_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SunoAddInstrumentalRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Add instrumental background to a song using Suno AI. Input: song or vocal track. Output: song with instrumental. Use for: adding backing music, instrumentalizing vocals."}},"/api/v1/wan2.1-text-to-image":{"post":{"tags":["Image: Text-to-Image"],"summary":"wan2.1-text-to-image","operationId":"wan21_text_to_image_api_v1_wan2_1_text_to_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan21T2IRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images from text using Wan 2.1. Input: text prompt. Output: image. Use for: text-to-image generation, diverse styles."}},"/api/v1/flux-kontext-pro-t2i":{"post":{"tags":["Image: Text-to-Image"],"summary":"flux-kontext-pro-t2i (balanced)","operationId":"flux_kontext_pro_t2i_api_v1_flux_kontext_pro_t2i_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/FluxKontextT2I"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate professional contextually aware images from text using Flux Kontext Pro. Input: text prompt. Output: high-quality image. Use for: professional contextual generation, advanced scene understanding."}},"/api/v1/flux-kontext-pro-i2i":{"post":{"tags":["Image: Edit & Reference"],"summary":"flux-kontext-pro-i2i (balanced)","operationId":"flux_kontext_pro_i2i_api_v1_flux_kontext_pro_i2i_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/FluxKontextI2I"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images with professional quality using Flux Kontext Pro (image-to-image). Input: image, edit instruction. Output: edited image. Use for: professional image editing, context-aware edits."}},"/api/v1/flux-kontext-max-t2i":{"post":{"tags":["Image: Text-to-Image"],"summary":"flux-kontext-max-t2i (best)","operationId":"flux_kontext_max_t2i_api_v1_flux_kontext_max_t2i_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/FluxKontextT2I"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate best-quality contextually aware images using Flux Kontext Max. Input: text prompt. Output: maximum-quality image. Use for: top-tier contextual image generation."}},"/api/v1/flux-kontext-max-i2i":{"post":{"tags":["Image: Edit & Reference"],"summary":"flux-kontext-max-i2i (best)","operationId":"flux_kontext_max_i2i_api_v1_flux_kontext_max_i2i_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/FluxKontextI2I"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images at maximum quality using Flux Kontext Max (image-to-image). Input: image, edit instruction. Output: edited image. Use for: highest quality image editing."}},"/api/v1/flux-kontext-effects":{"post":{"tags":["Image: Edit & Reference"],"summary":"flux-kontext-effects (balanced)","operationId":"flux_kontext_effects_api_v1_flux_kontext_effects_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KontextEffectsRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Apply creative effects to images using Flux Kontext Effects. Input: image, effect description. Output: stylized image. Use for: image effects, style transformation, artistic filters."}},"/api/v1/reve-text-to-image":{"post":{"tags":["Image: Text-to-Image"],"summary":"reve-text-to-image","operationId":"reve_text_to_image_api_v1_reve_text_to_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ReveTextRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images from text using Reve AI. Input: text prompt. Output: image. Use for: creative image generation, photorealistic scenes."}},"/api/v1/reve-image-edit":{"post":{"tags":["Image: Edit & Reference"],"summary":"reve-image-edit","operationId":"reve_image_edit_api_v1_reve_image_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ReveImageEdit"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images using Reve AI. Input: image, edit instruction. Output: edited image. Use for: Reve-powered image editing."}},"/api/v1/muse-image-text-to-image":{"post":{"tags":["Image: Text-to-Image"],"summary":"muse-image-text-to-image (budget)","operationId":"muse_image_text_to_image_api_v1_muse_image_text_to_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MuseImageTextToImageRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images from text using Meta Muse Image. Input: prompt, aspect_ratio, output_format. Output: image. Use for: fast, low-cost text-to-image generation."}},"/api/v1/muse-image-edit":{"post":{"tags":["Image: Edit & Reference"],"summary":"muse-image-edit (budget)","operationId":"muse_image_edit_api_v1_muse_image_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MuseImageEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit or combine up to 10 images with a text instruction using Meta Muse Image. Input: prompt, images_list. Output: image. Use for: multi-image composites, style transforms, object swaps."}},"/api/v1/flux-3-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"flux-3-text-to-video (balanced)","operationId":"flux_3_text_to_video_api_v1_flux_3_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Flux3TextToVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate cinematic video with optional native synchronized audio from a text prompt using FLUX 3. Input: prompt, aspect_ratio, resolution, duration, generate_audio. Output: video. Use for: text-to-video generation with audio."}},"/api/v1/flux-3-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"flux-3-image-to-video (balanced)","operationId":"flux_3_image_to_video_api_v1_flux_3_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Flux3ImageToVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate a still image into cinematic video with optional native synchronized audio using FLUX 3. Input: prompt, image_url, resolution, duration, generate_audio. Output: video. Use for: image-to-video animation."}},"/api/v1/flux-3-start-end-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"flux-3-start-end-to-video (balanced)","operationId":"flux_3_start_end_to_video_api_v1_flux_3_start_end_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Flux3StartEndToVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate a video transition between a start and end keyframe using FLUX 3. Input: prompt, image_url, end_image_url, resolution, duration, generate_audio. Output: video. Use for: controlled keyframe-to-keyframe transitions."}},"/api/v1/flux-3-video-extend":{"post":{"tags":["Video: Edit & Effects"],"summary":"flux-3-video-extend (balanced)","operationId":"flux_3_video_extend_api_v1_flux_3_video_extend_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Flux3VideoExtendRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Continue an existing video clip with prompt-guided motion using FLUX 3. Input: prompt, video_url, resolution, duration, generate_audio. Output: video. Use for: extending or chaining video clips."}},"/api/v1/flux-3-text-to-video-draft":{"post":{"tags":["Video: Text-to-Video"],"summary":"flux-3-text-to-video-draft (fast)","operationId":"flux_3_text_to_video_draft_api_v1_flux_3_text_to_video_draft_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Flux3TextToVideoDraftRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Fast, lower-cost draft text-to-video generation using FLUX 3. Input: prompt, aspect_ratio, duration, generate_audio. Output: video. Use for: rapid ideation, storyboarding, prompt iteration before a final-quality render."}},"/api/v1/flux-3-video-extend-draft":{"post":{"tags":["Video: Edit & Effects"],"summary":"flux-3-video-extend-draft (fast)","operationId":"flux_3_video_extend_draft_api_v1_flux_3_video_extend_draft_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Flux3VideoExtendDraftRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Fast, lower-cost draft video extension using FLUX 3. Input: prompt, video_url, duration, generate_audio. Output: video. Use for: testing continuity and camera movement before a final extension."}},"/api/v1/flux-3-video-upscaler":{"post":{"tags":["Image: Enhance"],"summary":"flux-3-video-upscaler (balanced)","operationId":"flux_3_video_upscaler_api_v1_flux_3_video_upscaler_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Flux3VideoUpscalerRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Upscale any video beyond its native resolution while preserving motion coherence and audio sync using FLUX 3. Input: video_url, upscale_factor, creativity. Output: video. Use for: raising video resolution and detail."}},"/api/v1/gpt4o-text-to-image":{"post":{"tags":["Image: Text-to-Image"],"summary":"gpt4o-text-to-image (best)","operationId":"gpt4o_text_to_image_api_v1_gpt4o_text_to_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gpt4oT2IRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images from text using GPT-4o (OpenAI). Input: text prompt. Output: image. Use for: text-to-image with strong instruction following, complex scene generation, detailed compositions."}},"/api/v1/gpt4o-image-to-image":{"post":{"tags":["Image: Edit & Reference"],"summary":"gpt4o-image-to-image","operationId":"gpt4o_text_to_image_api_v1_gpt4o_image_to_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gpt4oI2IRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Transform images using GPT-4o vision (image-to-image). Input: source image, transformation prompt. Output: transformed image. Use for: image transformation, style change."}},"/api/v1/gpt4o-edit":{"post":{"tags":["Image: Edit & Reference"],"summary":"gpt4o-edit (best)","operationId":"gpt4o_edit_api_v1_gpt4o_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gpt4oEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images using natural language instructions with GPT-4o. Input: image, text instruction. Output: edited image. Use for: natural language image editing, complex instruction following."}},"/api/v1/gpt-image-2-text-to-image":{"post":{"tags":["Image: Text-to-Image"],"summary":"gpt-image-2-text-to-image (best)","operationId":"gpt_image_2_text_to_image_api_v1_gpt_image_2_text_to_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GptImage2T2IRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images from text using OpenAI GPT Image 2 (released Apr 2026, OpenAI's first image model with built-in reasoning / 'thinking mode' that plans layout and self-checks before rendering). Supports up to 4K output and native multilingual text rendering (English, Japanese, Korean, Chinese, Hindi, Bengali). Input: text prompt. Output: image up to 4K. Use for: complex visual compositions, accurate in-image text (signs, menus, multilingual labels), strong instruction-following on layout-heavy prompts, marketing assets where typography matters."}},"/api/v1/gpt-image-2-image-to-image":{"post":{"tags":["Image: Edit & Reference"],"summary":"gpt-image-2-image-to-image (best)","operationId":"gpt_image_2_image_to_image_api_v1_gpt_image_2_image_to_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GptImage2I2IRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images using OpenAI GPT Image 2 (instruction-based editing with reasoning, supports up to 4K). Input: source image, edit instruction. Output: edited image. Use for: precise instruction-following edits, object replacement, style transfer, inpainting-style modifications, edits that must preserve in-image text correctly."}},"/api/v1/kling-o3-image":{"post":{"tags":["Image: Text-to-Image"],"summary":"kling-o3-image (best)","operationId":"kling_o3_image_api_v1_kling_o3_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingO3T2IRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images from text using Kling Image O3 (Kuaishou, Feb 2026 release) — native 4K text-to-image with a Visual Chain-of-Thought reasoning step before rendering. Supports up to 10 style-reference images and up to 3 identity-lock visual elements via Reference Attention Mechanism. Input: text prompt. Output: native 4K image with physically-accurate light and micro-textures (skin pores, fabric weaves). Use for: commercial-print-grade photography, identity-locked subjects across generations, character/product consistency."}},"/api/v1/kling-o3-image-edit":{"post":{"tags":["Image: Edit & Reference"],"summary":"kling-o3-image-edit (best)","operationId":"kling_o3_image_edit_api_v1_kling_o3_image_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingO3EditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images using Kling Image O3 image-to-image (native 4K, Visual Chain-of-Thought reasoning, Reference Attention for identity-lock across edits). Input: source image, edit instruction. Output: 4K edited image with consistent subject identity. Use for: style transfer with identity preservation, look-consistent edits, remixing while keeping a face/product locked."}},"/api/v1/nano-banana-2-lite":{"post":{"tags":["Image: Text-to-Image"],"summary":"Nano Banana 2 Lite","operationId":"nano_banana_2_lite_api_v1_nano_banana_2_lite_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NanoBanana2LiteRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/nano-banana-2-lite-edit":{"post":{"tags":["Image: Edit & Reference"],"summary":"Nano Banana 2 Lite Edit","operationId":"nano_banana_2_lite_edit_api_v1_nano_banana_2_lite_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NanoBanana2LiteEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/tripo3d-p1-text-to-3d":{"post":{"tags":["3D Generation"],"summary":"tripo3d-p1-text-to-3d (fast)","operationId":"tripo3d_p1_text_to_3d_api_v1_tripo3d_p1_text_to_3d_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TripoP1T23DRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate a 3D mesh from a text prompt using Tripo P1 (native 3D diffusion, game-engine-optimized polygon budgets ~48-20K). Input: text prompt. Output: .glb mesh + preview render. Use for: game-ready assets for Unity/Unreal/Godot, low-poly mobile/AR/VR assets, rapid concept-art-to-3D, hero characters or props with efficient topology."}},"/api/v1/tripo3d-p1-image-to-3d":{"post":{"tags":["3D Generation"],"summary":"tripo3d-p1-image-to-3d (fast)","operationId":"tripo3d_p1_image_to_3d_api_v1_tripo3d_p1_image_to_3d_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TripoP1I23DRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Reconstruct a 3D mesh from a single image using Tripo P1 (efficient polygon budgets for real-time engines). Input: single reference image. Output: .glb mesh + preview render. Use for: photo-to-3D for games, AR/VR, fast asset reconstruction from concept art with clean game-ready topology."}},"/api/v1/tripo3d-h31-text-to-3d":{"post":{"tags":["3D Generation"],"summary":"tripo3d-h31-text-to-3d (best)","operationId":"tripo3d_h31_text_to_3d_api_v1_tripo3d_h31_text_to_3d_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TripoH31T23DRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate a high-fidelity 3D mesh from text using Tencent Hunyuan 3D 3.1 (watertight topology, PBR materials, up to ~1.5M faces). Input: text prompt. Output: .glb mesh with PBR textures + preview. Use for: production-grade 3D for VFX/animation, detailed sculpts, hero assets needing PBR texture maps and clean topology, 3D printing."}},"/api/v1/tripo3d-h31-image-to-3d":{"post":{"tags":["3D Generation"],"summary":"tripo3d-h31-image-to-3d (best)","operationId":"tripo3d_h31_image_to_3d_api_v1_tripo3d_h31_image_to_3d_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TripoH31I23DRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Reconstruct a high-fidelity 3D mesh from a single image using Hunyuan 3D 3.1 Pro (PBR textures, watertight meshes). Input: single reference image. Output: .glb mesh with detailed geometry and 4K PBR textures + preview. Use for: high-quality photo-to-3D, e-commerce product 3D, hero asset reconstruction, scanning replacements, 3D-print-ready output."}},"/api/v1/tripo3d-h31-multiview-to-3d":{"post":{"tags":["3D Generation"],"summary":"tripo3d-h31-multiview-to-3d (best)","operationId":"tripo3d_h31_multiview_to_3d_api_v1_tripo3d_h31_multiview_to_3d_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TripoH31MV23DRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Reconstruct a 3D mesh from multiple reference views (up to 8) using Hunyuan 3D 3.1's 8-view reconstruction pipeline — the most accurate geometry of any tripo3d variant. Input: 2-8 reference images (e.g. front, back, left, right, top, bottom, left-front, right-front) of the same subject. Output: .glb mesh with PBR textures + preview. Use for: best-possible photo-to-3D when multiple angles exist, scanning-quality reconstruction."}},"/api/v1/meshy-6-text-to-3d":{"post":{"tags":["3D Generation"],"summary":"meshy-6-text-to-3d (balanced)","operationId":"meshy_6_text_to_3d_api_v1_meshy_6_text_to_3d_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Meshy6T23DRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate a 3D mesh from a text prompt using Meshy 6 (released Jan 2026, ~1 min generation, up to ~600K faces, full PBR maps). Input: text prompt. Output: .glb mesh with Diffuse/Roughness/Metallic/Normal PBR maps + preview. Use for: stylized or organic 3D generation, characters, game-ready PBR-textured assets; supports Low Poly Mode (game devs) and multi-color 3D printing."}},"/api/v1/meshy-6-image-to-3d":{"post":{"tags":["3D Generation"],"summary":"meshy-6-image-to-3d (balanced)","operationId":"meshy_6_image_to_3d_api_v1_meshy_6_image_to_3d_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Meshy6I23DRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Reconstruct a 3D mesh from a single image using Meshy 6 (sharp edges on mechanical assets, refined geometry on organics, ~1 min generation). Input: single reference image. Output: .glb mesh with PBR textures (Diffuse/Roughness/Metallic/Normal) + preview. Use for: photo-to-3D with full PBR materials, character or product reconstruction."}},"/api/v1/meshy-6-multi-image-to-3d":{"post":{"tags":["3D Generation"],"summary":"meshy-6-multi-image-to-3d (balanced)","operationId":"meshy_6_multi_image_to_3d_api_v1_meshy_6_multi_image_to_3d_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Meshy6MultiI23DRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Reconstruct a 3D mesh from multiple reference images using Meshy 6 Multi-view (improved geometry vs single-image input). Input: 2-4 reference images of the same subject. Output: .glb mesh with PBR textures + preview. Use for: high-quality photo-to-3D when multiple angles exist, scanning-grade reconstruction with PBR materials."}},"/api/v1/midjourney-v7-text-to-image":{"post":{"tags":["Image: Text-to-Image"],"summary":"midjourney-v7-text-to-image (best)","operationId":"midjourney_v7_text_to_image_api_v1_midjourney_v7_text_to_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MidjourneyT2IRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images from text using Midjourney v7 (default model from June 2025; improved photorealism on skin/fabric/shadows, better hands and complex multi-element prompts vs v6). Supports Draft Mode (~10x faster, ~half GPU cost) for ideation, plus --sref Style Reference and --oref Omni Reference systems. Input: text prompt. Output: image. Use for: artistic image generation, marketing visuals, illustration, photorealistic portraits, brand-grade aesthetics, rapid concept iteration with Draft Mode."}},"/api/v1/midjourney-v7-image-to-image":{"post":{"tags":["Image: Edit & Reference"],"summary":"midjourney-v7-image-to-image (best)","operationId":"midjourney_v7_image_to_image_api_v1_midjourney_v7_image_to_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MidjourneyI2IRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Transform an image with Midjourney v7 (img2img, --iw image-weight controls how much the source influences the output). Input: source image, prompt. Output: image. Use for: artistic re-rendering, style transformation, mood-shift edits with the Midjourney aesthetic."}},"/api/v1/midjourney-v7-style-reference":{"post":{"tags":["Image: Edit & Reference"],"summary":"midjourney-v7-style-reference (best)","operationId":"midjourney_v7_image_to_image_api_v1_midjourney_v7_style_reference_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MidjourneyStyleRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate an image conditioned on a style-reference image using Midjourney v7's --sref system (transfers visual style — palette, mood, texture — without forcing subject identity). Input: text prompt + style-reference image. Output: image matching the reference's visual style with the prompt's subject. Use for: brand-consistent illustration sets, replicating a specific look or palette across many images, moodboard-driven art direction."}},"/api/v1/midjourney-v7-omni-reference":{"post":{"tags":["Image: Edit & Reference"],"summary":"midjourney-v7-omni-reference (best)","operationId":"midjourney_v7_image_to_image_api_v1_midjourney_v7_omni_reference_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MidjourneyOmniRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate an image with Midjourney v7's --oref Omni Reference system, which transfers both subject identity and style from the reference image. Input: text prompt + omni-reference image. Output: image preserving the subject (e.g. a specific person or object) and its style. Use for: character-consistent generation across scenes, subject + style transfer in a single shot, identity-locked storytelling."}},"/api/v1/midjourney-v7-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"midjourney-v7-image-to-video (best)","operationId":"midjourney_v7_image_to_video_api_v1_midjourney_v7_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MidjourneyVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate a Midjourney-style image into video (Midjourney v7's experimental image-to-video pipeline). Input: prompt + image_url. Output: short video preserving the Midjourney aesthetic. Use for: turning Midjourney stills (or other artistic images) into motion, mood-piece animation, artistic photo-to-video."}},"/api/v1/midjourney-v7":{"post":{"tags":["Image: Text-to-Image"],"summary":"midjourney-v7 (best)","operationId":"midjourney_v7_api_v1_midjourney_v7_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MidjourneyKinoviRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate 4 photorealistic artistic images per run with Midjourney v7. Input: text prompt, optional reference image_url. Output: image. Use for: artistic image generation, painterly styles, concept art, fantasy images."}},"/api/v1/midjourney-v8":{"post":{"tags":["Image: Text-to-Image"],"summary":"midjourney-v8 (best)","operationId":"midjourney_v8_api_v1_midjourney_v8_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MidjourneyKinoviRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate 4 photorealistic artistic images per run with Midjourney v8 (improved coherence and detail over v7). Input: text prompt, optional reference image_url. Output: image. Use for: highest-quality artistic image generation, concept art, fantasy images."}},"/api/v1/midjourney-niji":{"post":{"tags":["Image: Text-to-Image"],"summary":"midjourney-niji (balanced)","operationId":"midjourney_niji_api_v1_midjourney_niji_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MidjourneyKinoviRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate 4 anime and illustration-style images per run with Midjourney Niji. Input: text prompt, optional reference image_url. Output: image. Use for: anime, manga, character art, stylized illustrations."}},"/api/v1/wan2.1-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"wan2.1-image-to-video (budget)","operationId":"wan21_image_to_video_api_v1_wan2_1_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan21I2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images into video using Wan 2.1. Input: image, text prompt. Output: video."}},"/api/v1/wan2.1-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"wan2.1-text-to-video (budget)","operationId":"wan21_text_to_video_api_v1_wan2_1_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan21T2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using Wan 2.1. Input: text prompt. Output: video. Use for: text-to-video generation, motion scenes."}},"/api/v1/wan2.2-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"wan2.2-image-to-video (budget)","operationId":"wan22_image_to_video_api_v1_wan2_2_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan22I2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images into video using Wan 2.2. Input: image, text prompt. Output: video."}},"/api/v1/wan2.2-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"wan2.2-text-to-video (budget)","operationId":"wan22_text_to_video_api_v1_wan2_2_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan22T2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using Wan 2.2. Input: text prompt. Output: video. Use for: improved Wan video generation."}},"/api/v1/wan2.2-speech-to-video":{"post":{"tags":["Video: Edit & Effects"],"summary":"wan2.2-speech-to-video","operationId":"wan22_speech_to_video_api_v1_wan2_2_speech_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan22ATVRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate video driven by speech/audio using Wan 2.2. Input: audio, optional image. Output: video synchronized with audio. Use for: audio-driven video, talking videos."}},"/api/v1/wan2.1-lora-i2v":{"post":{"tags":["Video: Image-to-Video"],"summary":"wan2.1-lora-i2v","operationId":"wan21_lora_i2v_api_v1_wan2_1_lora_i2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WanLoRAI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images using Wan 2.1 with LoRA fine-tuning. Input: image, text prompt, LoRA weights. Output: video. Use for: custom style animation."}},"/api/v1/wan2.1-lora-t2v":{"post":{"tags":["Video: Text-to-Video"],"summary":"wan2.1-lora-t2v","operationId":"wan21_lora_t2v_api_v1_wan2_1_lora_t2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WanLoRAT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using Wan 2.1 with LoRA fine-tuning. Input: text prompt, LoRA weights. Output: video. Use for: custom style video generation."}},"/api/v1/hunyuan-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"hunyuan-image-to-video (balanced)","operationId":"hunyuan_image_to_video_api_v1_hunyuan_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/HunyuanI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images into video using Hunyuan (Tencent). Input: image, text prompt. Output: video."}},"/api/v1/hunyuan-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"hunyuan-text-to-video (balanced)","operationId":"hunyuan_text_to_video_api_v1_hunyuan_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/HunyuanT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using Hunyuan (Tencent). Input: text prompt. Output: video. Use for: Tencent AI video generation, diverse motion."}},"/api/v1/hunyuan-fast-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"hunyuan-fast-text-to-video (fast)","operationId":"hunyuan_fast_text_to_video_api_v1_hunyuan_fast_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/HunyuanT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos quickly from text using Hunyuan Fast. Input: text prompt. Output: video. Use for: fast Hunyuan generation."}},"/api/v1/z-image-p":{"post":{"tags":["Image: Text-to-Image"],"summary":"z-image-p","operationId":"z_image_p_api_v1_z_image_p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ZImagePRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images from text using Z Image P model (premium). Input: text prompt. Output: image. Use for: premium quality image generation."}},"/api/v1/openai-sora-2-standard-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"openai-sora-2-standard-text-to-video (balanced)","operationId":"openai_sora_2_standard_text_to_video_api_v1_openai_sora_2_standard_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Sora2StandardT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using OpenAI Sora 2 Standard (720p, up to 10-15s — the cheaper tier vs Sora 2 Pro's 1080p/25s). Input: text prompt. Output: 720p video. Use for: rapid prototyping, social-media-format clips, draft work before promoting hero shots to Sora 2 Pro."}},"/api/v1/openai-sora-2-standard-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"openai-sora-2-standard-image-to-video (balanced)","operationId":"openai_sora_2_standard_image_to_video_api_v1_openai_sora_2_standard_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Sora2StandardI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate a still image with OpenAI Sora 2 Standard (720p, up to 10-15s — cheaper tier vs Sora 2 Pro's 1080p/25s). Input: prompt + image_url. Output: 720p video. Use for: rapid OpenAI image-to-video, social-media-format clips, prototyping before Sora 2 Pro."}},"/api/v1/seedance-pro-i2v":{"post":{"tags":["Video: Image-to-Video"],"summary":"seedance-pro-i2v (balanced)","operationId":"seedance_pro_i2v_api_v1_seedance_pro_i2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeedanceI2VProRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images into professional 1080p video using Seedance Pro. Input: image, text prompt. Output: 1080p video. Use for: professional image animation."}},"/api/v1/seedance-pro-t2v":{"post":{"tags":["Video: Text-to-Video"],"summary":"seedance-pro-t2v (balanced)","operationId":"seedance_lite_t2v_api_v1_seedance_pro_t2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeedanceT2VProRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate high-quality videos from text using Seedance Pro. Input: text prompt. Output: 1080p video. Use for: professional video generation, product ads."}},"/api/v1/seedance-lite-i2v":{"post":{"tags":["Video: Image-to-Video"],"summary":"seedance-lite-i2v (budget)","operationId":"seedance_lite_i2v_api_v1_seedance_lite_i2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeedanceI2VLiteRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images using Seedance Lite (cost-effective). Input: image, text prompt. Output: video."}},"/api/v1/seedance-lite-t2v":{"post":{"tags":["Video: Text-to-Video"],"summary":"seedance-lite-t2v (budget)","operationId":"seedance_lite_t2v_api_v1_seedance_lite_t2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeedanceT2VLiteRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using Seedance Lite (cost-effective). Input: text prompt. Output: video. Use for: budget video generation."}},"/api/v1/bytedance-seedream-image":{"post":{"tags":["Image: Text-to-Image"],"summary":"bytedance-seedream-v3","operationId":"bytedance_seedream_image_api_v1_bytedance_seedream_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedreamv3T2IRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate high-quality images from text using Seedream v3. Input: text prompt. Output: image. Use for: creative image generation, detailed scenes."}},"/api/v1/bytedance-seededit-image":{"post":{"tags":["Image: Edit & Reference"],"summary":"bytedance-seededit-v3 (best)","operationId":"bytedance_seededit_image_api_v1_bytedance_seededit_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeedEditI2IRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images with fine-grained control using SeedEdit v3. Input: image, edit instruction. Output: edited image. Use for: precise image editing, object replacement, background change."}},"/api/v1/kling-v2.1-standard-i2v":{"post":{"tags":["Video: Image-to-Video"],"summary":"kling-v2.1-standard-i2v","operationId":"kling_v21_standard_i2v_api_v1_kling_v2_1_standard_i2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images into video using Kling v2.1 Standard. Input: image, text prompt. Output: video."}},"/api/v1/kling-v2.1-pro-i2v":{"post":{"tags":["Video: Image-to-Video"],"summary":"kling-v2.1-pro-i2v (balanced)","operationId":"kling_v21_pro_i2v_api_v1_kling_v2_1_pro_i2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images into professional video using Kling v2.1 Pro. Input: image, text prompt. Output: video."}},"/api/v1/kling-v2.1-master-i2v":{"post":{"tags":["Video: Image-to-Video"],"summary":"kling-v2.1-master-i2v","operationId":"kling_v21_master_i2v_api_v1_kling_v2_1_master_i2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images into master-quality video using Kling v2.1 Master. Input: image, text prompt. Output: video."}},"/api/v1/kling-v2.1-master-t2v":{"post":{"tags":["Video: Text-to-Video"],"summary":"kling-v2.1-master-t2v (best)","operationId":"kling_v21_master_i2v_api_v1_kling_v2_1_master_t2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate master-quality videos from text using Kling v2.1 Master. Input: text prompt. Output: video. Use for: cinematic quality video generation."}},"/api/v1/runway-act-two-i2v":{"post":{"tags":["Video: Edit & Effects"],"summary":"runway-act-two-i2v","operationId":"runway_act_two_i2v_api_v1_runway_act_two_i2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RunwaymlActI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Transfer motion/acting from driving video to character image using Runway Act Two (mocap without equipment). Input: character image, driving video. Output: animated character video. Use for: motion capture transfer, character animation from reference performance."}},"/api/v1/runway-act-two-v2v":{"post":{"tags":["Video: Edit & Effects"],"summary":"runway-act-two-v2v","operationId":"runway_act_two_v2v_api_v1_runway_act_two_v2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RunwaymlActV2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Transfer acting/motion from driving video to character video using Runway Act Two. Input: character video, driving video. Output: motion-transferred video. Use for: performance transfer, video dubbing."}},"/api/v1/runway-aleph-v2v":{"post":{"tags":["Video: Edit & Effects"],"summary":"runway-aleph-v2v","operationId":"runway_aleph_v2v_api_v1_runway_aleph_v2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RunwaymlAlephV2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit video with novel view synthesis and object manipulation using Runway Aleph. Input: video, edit instruction. Output: edited video. Use for: advanced video editing, 3D view generation."}},"/api/v1/pixverse-v4.5-i2v":{"post":{"tags":["Video: Image-to-Video"],"summary":"pixverse-v4.5-i2v (budget)","operationId":"pixverse_v45_i2v_api_v1_pixverse_v4_5_i2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PixverseI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images using Pixverse v4.5. Input: image, text prompt. Output: video."}},"/api/v1/pixverse-v4.5-t2v":{"post":{"tags":["Video: Text-to-Video"],"summary":"pixverse-v4.5-t2v (budget)","operationId":"pixverse_v45_t2v_api_v1_pixverse_v4_5_t2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PixverseT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using Pixverse v4.5. Input: text prompt. Output: video."}},"/api/v1/vidu-v2.0-i2v":{"post":{"tags":["Video: Image-to-Video"],"summary":"vidu-v2.0-i2v","operationId":"vidu_v20_i2v_api_v1_vidu_v2_0_i2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ViduI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images using Vidu v2.0. Input: image, text prompt. Output: video."}},"/api/v1/vidu-v2.0-t2v":{"post":{"tags":["Video: Text-to-Video"],"summary":"vidu-v2.0-t2v","operationId":"vidu_v20_t2v_api_v1_vidu_v2_0_t2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ViduT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using Vidu v2.0. Input: text prompt. Output: video. Use for: Vidu-quality video generation."}},"/api/v1/qwen-image":{"post":{"tags":["Image: Text-to-Image"],"summary":"qwen-image","operationId":"qwen_image_api_v1_qwen_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/QwenImageRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images from text using Qwen image model. Input: text prompt. Output: image. Use for: text-to-image generation, creative visuals."}},"/api/v1/qwen-image-edit":{"post":{"tags":["Image: Edit & Reference"],"summary":"qwen-image-edit","operationId":"qwen_image_edit_api_v1_qwen_image_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/QwenImageEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images using Qwen image edit model. Input: image, edit prompt. Output: edited image. Use for: Qwen-powered image editing."}},"/api/v1/minimax-01-subject-reference":{"post":{"tags":["Image: Edit & Reference"],"summary":"minimax-image-01-subject-reference","operationId":"minimax_01_subject_reference_api_v1_minimax_01_subject_reference_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MinimaxSubjectImageRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images with subject reference using MiniMax Image 01. Input: subject reference image, text prompt. Output: image. Use for: consistent subject generation."}},"/api/v1/ideogram-character":{"post":{"tags":["Image: Edit & Reference"],"summary":"ideogram-character","operationId":"ideogram_character_api_v1_ideogram_character_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/IdeogramCharacterRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate character-consistent images using Ideogram Character. Input: text prompt, character reference. Output: image. Use for: consistent character generation, character sheets, mascot creation."}},"/api/v1/flux-pulid":{"post":{"tags":["Image: Edit & Reference"],"summary":"flux-pulid (balanced)","operationId":"flux_pulid_api_v1_flux_pulid_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/FluxPulidRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images with consistent face/identity using Flux PuLID (Pure Identity). Input: text prompt, reference face image. Output: image with matching identity. Use for: face-consistent generation, portrait generation, person in scene."}},"/api/v1/sync-lipsync":{"post":{"tags":["Video: Lipsync"],"summary":"sync-lipsync (balanced)","operationId":"sync_lipsync_api_v1_sync_lipsync_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/LipsyncVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Synchronize lip movements to audio using Sync.so lipsync. Input: video, audio. Output: lip-synced video. Use for: dubbing, voiceover, multilingual video."}},"/api/v1/latentsync-video":{"post":{"tags":["Video: Lipsync"],"summary":"latent-sync (fast)","operationId":"latentsync_video_api_v1_latentsync_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/LipsyncVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Synchronize lip movements to audio using LatentSync. Input: video, audio. Output: lip-synced video. Use for: AI dubbing, speech-to-lip sync."}},"/api/v1/creatify-lipsync":{"post":{"tags":["Video: Lipsync"],"summary":"creatify-lipsync (balanced)","operationId":"creatify_lipsync_api_v1_creatify_lipsync_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/LipsyncVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Synchronize lip movements to audio using Creatify lipsync. Input: video, audio. Output: lip-synced video. Use for: influencer content, marketing videos with dubbing."}},"/api/v1/veed-lipsync":{"post":{"tags":["Video: Lipsync"],"summary":"veed-lipsync (fast)","operationId":"veed_lipsync_api_v1_veed_lipsync_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/LipsyncVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Synchronize lip movements to audio using Veed lipsync. Input: video, audio. Output: lip-synced video."}},"/api/v1/luma-modify-video":{"post":{"tags":["Video: Edit & Effects"],"summary":"luma-modify-video","operationId":"luma_modify_video_api_v1_luma_modify_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/LumaModifyVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Modify video with novel view generation, object add/remove/replace using Luma Aleph. Input: video, modification instruction. Output: modified video. Use for: video object editing, scene modification, view synthesis."}},"/api/v1/luma-flash-reframe":{"post":{"tags":["Video: Edit & Effects"],"summary":"luma-flash-reframe","operationId":"luma_flash_reframe_api_v1_luma_flash_reframe_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/LumaFlashReframe"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Reframe/recompose video content using Luma Flash. Input: video, reframe parameters. Output: reframed video. Use for: changing video aspect ratio, recomposing shots."}},"/api/v1/vidu-q1-reference":{"post":{"tags":["Video: Image-to-Video"],"summary":"vidu-q1-reference","operationId":"vidu_q1_reference_api_v1_vidu_q1_reference_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ViduQ1ReferenceRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate video from reference images using Vidu Q1. Input: reference images, text prompt. Output: video."}},"/api/v1/vidu-q3-pro-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"vidu-q3-pro-text-to-video (best)","operationId":"vidu_q3_pro_text_to_video_api_v1_vidu_q3_pro_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ViduQ3T2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using Vidu Q3 Pro (Jan 2026 release, ranked #2 globally on Artificial Analysis Video Arena). Extended to 16s max at 1080p/24fps and adds native audio generation — lip-synced dialogue, sound effects, and background music produced in a single inference pass. Supports frame-level director commands (push-ins, pans, tracking shots). Input: text prompt. Output: up to 16s video with synced audio. Use for: cinematic content with dialogue + ambient sound, multi-shot scenes with camera direction, production-grade Vidu output."}},"/api/v1/vidu-q3-pro-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"vidu-q3-pro-image-to-video (best)","operationId":"vidu_q3_pro_image_to_video_api_v1_vidu_q3_pro_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ViduQ3I2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate a still image with Vidu Q3 Pro (Jan 2026 release, ranked #2 on Artificial Analysis Video Arena). Up to 16s at 1080p/24fps with native audio (lip-sync, SFX, music) in a single pass, plus frame-level camera commands (push-ins, pans, tracking). Input: prompt + image_url. Output: up to 16s video with synced audio. Use for: cinematic photo-to-video with native sound, multi-shot scenes with camera direction."}},"/api/v1/vidu-q3-pro-first-last-frames":{"post":{"tags":["Video: Edit & Effects"],"summary":"vidu-q3-pro-first-last-frames (best)","operationId":"vidu_q3_pro_first_last_frames_api_v1_vidu_q3_pro_first_last_frames_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ViduQ3FlfRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"First-and-last-frame video using Vidu Q3 Pro. Input: prompt + image_url (first frame) + last_image (last frame). Output: video interpolating between the two frames at Q3 Pro quality (up to 16s, native audio, camera commands). Use for: controlled morph/transition shots, before-and-after animation, smooth interpolation between two stills."}},"/api/v1/vidu-q3-turbo-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"vidu-q3-turbo-text-to-video (fast)","operationId":"vidu_q3_turbo_text_to_video_api_v1_vidu_q3_turbo_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ViduQ3T2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using Vidu Q3 Turbo (smaller parameter count than Pro, faster). Same 16s + native-audio + camera-command capabilities, lower latency, lower quality. Input: text prompt. Output: video with synced audio. Use for: rapid Q3-tier iteration before promoting to Pro."}},"/api/v1/vidu-q3-turbo-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"vidu-q3-turbo-image-to-video (fast)","operationId":"vidu_q3_turbo_image_to_video_api_v1_vidu_q3_turbo_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ViduQ3I2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate a still image with Vidu Q3 Turbo (smaller params than Pro, faster). Same 16s + native-audio + camera-command capabilities, lower latency. Input: prompt + image_url. Output: video with synced audio. Use for: rapid Q3-tier image animation."}},"/api/v1/vidu-q3-turbo-first-last-frames":{"post":{"tags":["Video: Edit & Effects"],"summary":"vidu-q3-turbo-first-last-frames (fast)","operationId":"vidu_q3_turbo_first_last_frames_api_v1_vidu_q3_turbo_first_last_frames_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ViduQ3FlfRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"First-and-last-frame video using Vidu Q3 Turbo (faster than Pro). Input: prompt + image_url (first frame) + last_image (last frame). Output: video, lower latency. Use for: rapid morph/transition prototyping."}},"/api/v1/wan2.2-5b-fast-t2v":{"post":{"tags":["Video: Text-to-Video"],"summary":"wan2.2-5b-fast-t2v (fast)","operationId":"wan22_5b_fast_t2v_api_v1_wan2_2_5b_fast_t2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan22Fast5bT2V"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos quickly from text using Wan 2.2 5B Fast. Input: text prompt. Output: video. Use for: fast 5B-model video generation."}},"/api/v1/minimax-hailuo-02-standard-i2v":{"post":{"tags":["Video: Image-to-Video"],"summary":"minimax-hailuo-02-standard-i2v (budget)","operationId":"minimax_hailuo_02_standard_i2v_api_v1_minimax_hailuo_02_standard_i2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Minimax02StdI2V"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images using MiniMax Hailuo 0.2 Standard. Input: image, text prompt. Output: 768p video."}},"/api/v1/minimax-hailuo-02-standard-t2v":{"post":{"tags":["Video: Text-to-Video"],"summary":"minimax-hailuo-02-standard-t2v (budget)","operationId":"minimax_hailuo_02_standard_t2v_api_v1_minimax_hailuo_02_standard_t2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Minimax02StdT2V"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using MiniMax Hailuo 0.2 Standard. Input: text prompt. Output: 768p video."}},"/api/v1/minimax-hailuo-02-pro-i2v":{"post":{"tags":["Video: Image-to-Video"],"summary":"minimax-hailuo-02-pro-i2v (balanced)","operationId":"minimax_hailuo_02_pro_i2v_api_v1_minimax_hailuo_02_pro_i2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Minimax02ProI2V"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images using MiniMax Hailuo 0.2 Pro. Input: image, text prompt. Output: 1080p video."}},"/api/v1/minimax-hailuo-02-pro-t2v":{"post":{"tags":["Video: Text-to-Video"],"summary":"minimax-hailuo-02-pro-t2v (balanced)","operationId":"minimax_hailuo_02_standard_t2v_api_v1_minimax_hailuo_02_pro_t2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Minimax02ProT2V"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using MiniMax Hailuo 0.2 Pro. Input: text prompt. Output: 1080p video. Use for: professional video generation."}},"/api/v1/ai-dance-effects":{"post":{"tags":["Video: Edit & Effects"],"summary":"ai-dance-effects","operationId":"ai_dance_effects_api_v1_ai_dance_effects_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AIDanceEffectsRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate a person to dance using AI dance effects. Input: person image or video, dance style. Output: dancing video. Use for: dance animation, character dancing."}},"/api/v1/video-effects":{"post":{"tags":["Video: Edit & Effects"],"summary":"video-effects","operationId":"video_effects_api_v1_video_effects_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/VideoEffectsRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Apply video effects and filters to videos. Input: video, effect type. Output: styled video. Use for: color grading, filter application, video processing."}},"/api/v1/image-effects":{"post":{"tags":["Image: Edit & Reference"],"summary":"image-effects","operationId":"image_effects_api_v1_image_effects_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ImageEffectsRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Apply creative effects to images. Input: image, effect type. Output: stylized image. Use for: image filters, style effects, visual transformation."}},"/api/v1/portrait-stylist":{"post":{"tags":["Image: Enhance"],"summary":"portrait-stylist","operationId":"portrait_stylist_api_v1_portrait_stylist_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PortraitStylistRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Style/transform portrait photos with different looks. Input: portrait image, style description. Output: styled portrait. Use for: portrait transformation, beauty shots."}},"/api/v1/sdxl-lora-image":{"post":{"tags":["Image: Text-to-Image"],"summary":"sdxl-lora","operationId":"sdxl_lora_image_api_v1_sdxl_lora_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SdxlLoRARequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images with custom LoRA fine-tuning using SDXL. Input: text prompt, LoRA weights URL. Output: image. Use for: style fine-tuning, custom model generation."}},"/api/v1/ideogram-v3-t2i":{"post":{"tags":["Image: Text-to-Image"],"summary":"ideogram-v3-t2i (best)","operationId":"ideogram_v3_t2i_api_v1_ideogram_v3_t2i_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/IdeogramV3Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images with state-of-the-art typography using Ideogram v3. Input: text prompt. Output: image. Use for: logos, text-heavy designs, graphic art."}},"/api/v1/nano-banana-edit":{"post":{"tags":["Image: Edit & Reference"],"summary":"nano-banana-edit (balanced)","operationId":"nano_banana_edit_api_v1_nano_banana_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NanoBananaEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images using Nano Banana (Gemini 3). Input: image, edit instruction. Output: edited image. Use for: Gemini-powered image editing."}},"/api/v1/nano-banana":{"post":{"tags":["Image: Text-to-Image"],"summary":"nano-banana (balanced)","operationId":"nano_banana_api_v1_nano_banana_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NanoBananaRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images from text using Nano Banana (Google DeepMind Gemini 3). Input: text prompt. Output: image. Use for: high-quality generation with Gemini AI."}},"/api/v1/nano-banana-effects":{"post":{"tags":["Image: Edit & Reference"],"summary":"nano-banana-effects","operationId":"nano_banana_effects_api_v1_nano_banana_effects_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NanoBananaEffectsRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Apply creative effects to images using Nano Banana Effects. Input: image, effect description. Output: stylized image. Use for: Gemini AI image effects."}},"/api/v1/google-imagen4":{"post":{"tags":["Image: Text-to-Image"],"summary":"google-imagen4 (balanced)","operationId":"google_imagen4_api_v1_google_imagen4_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GoogleImagen4"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images from text using Google Imagen 4. Input: text prompt. Output: image. Use for: Google AI image generation, photorealistic images."}},"/api/v1/elevenlabs-text-to-dialogue-v3":{"post":{"tags":["API"],"summary":"Elevenlabs Text To Dialogue V3","operationId":"elevenlabs_text_to_dialogue_v3_api_v1_elevenlabs_text_to_dialogue_v3_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ElevenlabsTextToDialogueV3Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/elevenlabs-tts-turbo-2-5":{"post":{"tags":["Audio"],"summary":"Elevenlabs Tts Turbo 2 5","operationId":"elevenlabs_tts_turbo_2_5_api_v1_elevenlabs_tts_turbo_2_5_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ElevenlabsTtsTurbo25Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gemini-3-1-flash-tts":{"post":{"tags":["Audio"],"summary":"Gemini 3 1 Flash Tts","operationId":"gemini_3_1_flash_tts_api_v1_gemini_3_1_flash_tts_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GeminiTTSRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gemini-2-5-pro-tts":{"post":{"tags":["Audio"],"summary":"Gemini 2 5 Pro Tts","operationId":"gemini_2_5_pro_tts_api_v1_gemini_2_5_pro_tts_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GeminiTTSRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/get-template-workflows":{"get":{"tags":["Utilities"],"summary":"Get Template Workflows","operationId":"get_template_workflows_api_v1_get_template_workflows_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/api/v1/google-imagen4-fast":{"post":{"tags":["Image: Text-to-Image"],"summary":"google-imagen4-fast (fast)","operationId":"google_imagen4_api_v1_google_imagen4_fast_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GoogleImagen4"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images quickly from text using Google Imagen 4 Fast. Input: text prompt. Output: image. Use for: rapid Imagen generation."}},"/api/v1/google-imagen4-ultra":{"post":{"tags":["Image: Text-to-Image"],"summary":"google-imagen4-ultra (best)","operationId":"google_imagen4_api_v1_google_imagen4_ultra_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GoogleImagen4Ultra"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate ultra-quality images from text using Google Imagen 4 Ultra. Input: text prompt. Output: highest-quality image. Use for: best Google image generation, commercial photography."}},"/api/v1/pixverse-v5-i2v":{"post":{"tags":["Video: Image-to-Video"],"summary":"pixverse-v5-i2v","operationId":"pixverse_v5_i2v_api_v1_pixverse_v5_i2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PixverseV5I2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images using Pixverse v5. Input: image, text prompt. Output: video."}},"/api/v1/pixverse-v5-t2v":{"post":{"tags":["Video: Text-to-Video"],"summary":"pixverse-v5-t2v","operationId":"pixverse_v5_t2v_api_v1_pixverse_v5_t2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PixverseV5T2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using Pixverse v5. Input: text prompt. Output: video."}},"/api/v1/wan2.1-reference-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"wan2.1-reference-video","operationId":"wan21_reference_video_api_v1_wan2_1_reference_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan21R2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate video from reference images using Wan 2.1. Input: reference images, text prompt. Output: video."}},"/api/v1/seedance-lite-reference-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"seedance-lite-reference-video (budget)","operationId":"seedance_lite_reference_video_api_v1_seedance_lite_reference_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeedanceLiteR2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate video from reference image using Seedance Lite. Input: reference image, text prompt. Output: video."}},"/api/v1/infinitetalk-image-to-video":{"post":{"tags":["Video: Edit & Effects"],"summary":"infinitetalk-image-to-video","operationId":"infinitetalk_image_to_video_api_v1_infinitetalk_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/InfiniteTalkI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Create talking head video from portrait image using InfiniteTalk (lipsync, portrait animation). Input: portrait image, audio or text. Output: talking head video. Use for: avatar video, face animation, virtual presenter."}},"/api/v1/infinitetalk-video-to-video":{"post":{"tags":["Video: Edit & Effects"],"summary":"infinitetalk-video-to-video","operationId":"infinitetalk_video_to_video_api_v1_infinitetalk_video_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/InfiniteTalkV2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Create talking head video from existing video using InfiniteTalk. Input: video, audio or text. Output: re-lip-synced video. Use for: video dubbing, speech replacement."}},"/api/v1/ideogram-v3-reframe":{"post":{"tags":["Image: Edit & Reference"],"summary":"ideogram-v3-reframe","operationId":"ideogram_v3_reframe_api_v1_ideogram_v3_reframe_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/IdeogramV3ReframeRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Extend/reframe images using Ideogram v3 Reframe (smart outpainting). Input: image, new canvas size/direction. Output: expanded image. Use for: image outpainting, expanding canvas, changing aspect ratio."}},"/api/v1/sdxl-image":{"post":{"tags":["Image: Text-to-Image"],"summary":"sdxl-image (budget)","operationId":"sdxl_image_api_v1_sdxl_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SdxlImageRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images from text using SDXL (Stable Diffusion XL). Input: text prompt. Output: image. Use for: open-source image generation, fine-grained control."}},"/api/v1/bytedance-seedream-v4":{"post":{"tags":["Image: Text-to-Image"],"summary":"bytedance-seedream-v4 (balanced)","operationId":"bytedance_seedream_v4_api_v1_bytedance_seedream_v4_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedreamv4T2IRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate 4K images from text using Seedream v4 with excellent text rendering. Input: text prompt. Output: 4K image. Use for: ultra-high-resolution generation, marketing images."}},"/api/v1/bytedance-seedream-edit-v4":{"post":{"tags":["Image: Edit & Reference"],"summary":"bytedance-seedream-v4-edit","operationId":"bytedance_seedream_edit_v4_api_v1_bytedance_seedream_edit_v4_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeedreamEditv4I2IRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images using Seedream v4 (4K editing). Input: image, edit prompt. Output: edited image. Use for: high-resolution image editing."}},"/api/v1/hunyuan-image-2.1":{"post":{"tags":["Image: Text-to-Image"],"summary":"hunyuan-image-2.1 (balanced)","operationId":"hunyuan_image_21_api_v1_hunyuan_image_2_1_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/HunyuanT2IRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images from text using Hunyuan Image 2.1 (Tencent). Input: text prompt. Output: image. Use for: Chinese-style generation, detailed image creation."}},"/api/v1/chroma-image":{"post":{"tags":["Image: Text-to-Image"],"summary":"chroma-image","operationId":"chroma_image_api_v1_chroma_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ChromaT2IRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate vibrant colorful images from text using Chroma. Input: text prompt. Output: image. Use for: colorful illustrations, vibrant visual art."}},"/api/v1/ai-video-upscaler":{"post":{"tags":["Image: Enhance"],"summary":"ai-video-upscaler","operationId":"ai_video_upscaler_api_v1_ai_video_upscaler_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AiVideoUpscalerRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Upscale video to higher resolution using AI. Input: video. Output: upscaled video. Use for: video quality enhancement, resolution boost."}},"/api/v1/video-background-remover":{"post":{"tags":["Video: Edit & Effects"],"summary":"video-background-remover (budget)","operationId":"video_background_remover_api_v1_video_background_remover_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/VideoBackgroundRemoverRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Remove the background from a video with frame-accurate matting. Input: video, background_color, output_container_and_codec, preserve_audio. Output: background-removed video (transparent or solid color). Use for: video background removal, transparent video cutout, green-screen-free compositing."}},"/api/v1/neta-lumina":{"post":{"tags":["Image: Text-to-Image"],"summary":"neta-lumina","operationId":"neta_lumina_image_api_v1_neta_lumina_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NetaLuminaRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate artistic images from text using Neta Lumina. Input: text prompt. Output: image. Use for: artistic image generation."}},"/api/v1/perfect-pony-xl":{"post":{"tags":["Image: Text-to-Image"],"summary":"perfect-pony-xl","operationId":"perfect_pony_xl_image_api_v1_perfect_pony_xl_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PerfectPonyXLRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images from text using Perfect Pony XL (SDXL-based). Input: text prompt. Output: image. Use for: SDXL-quality image generation."}},"/api/v1/flux-krea-dev":{"post":{"tags":["Image: Text-to-Image"],"summary":"flux-krea-dev (balanced)","operationId":"flux_krea_dev_api_v1_flux_krea_dev_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/FluxKreaDevRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images with Flux Krea Dev, optimized for creative/artistic outputs. Input: text prompt. Output: image. Use for: artistic generation, creative AI visuals."}},"/api/v1/flux-redux":{"post":{"tags":["Image: Edit & Reference"],"summary":"flux-redux (balanced)","operationId":"flux_redux_api_v1_flux_redux_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/FluxReduxRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate image variations and remixes using Flux Redux. Input: reference image, optional prompt. Output: varied image. Use for: image variation, style transfer, visual remixing."}},"/api/v1/wan2.2-edit-video":{"post":{"tags":["Video: Edit & Effects"],"summary":"wan2.2-edit-video","operationId":"wan22_edit_video_api_v1_wan2_2_edit_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan22EditVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit video content using Wan 2.2 (scene modification, object change). Input: video, edit instruction. Output: edited video. Use for: video editing, content modification."}},"/api/v1/kling-v1-avatar-standard":{"post":{"tags":["Video: Avatars"],"summary":"kling-v1-avatar-standard (balanced)","operationId":"kling_v1_avatar_standard_api_v1_kling_v1_avatar_standard_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingAvatarStandardRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate AI avatar video using Kling v1 Avatar Standard. Input: avatar image, script. Output: talking avatar video."}},"/api/v1/kling-v1-avatar-pro":{"post":{"tags":["Video: Avatars"],"summary":"kling-v1-avatar-pro (best)","operationId":"kling_v1_avatar_pro_api_v1_kling_v1_avatar_pro_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingAvatarProRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate professional AI avatar video using Kling v1 Avatar Pro. Input: avatar image, script/audio. Output: talking avatar video. Use for: AI presenter, virtual spokesperson, avatar video."}},"/api/v1/wan2.2-animate":{"post":{"tags":["Video: Edit & Effects"],"summary":"wan2.2-animate","operationId":"wan22_animate_api_v1_wan2_2_animate_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan22AnimateRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images/videos with dynamic motion using Wan 2.2. Input: image or video, animation prompt. Output: animated video."}},"/api/v1/heygen-video-translate":{"post":{"tags":["Video: Lipsync"],"summary":"heygen-video-translate (best)","operationId":"heygen_video_translate_api_v1_heygen_video_translate_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/HeygenVideoTranslate"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Translate video to another language with lipsync using HeyGen. Input: video, target language. Output: translated + lip-synced video. Use for: video translation, multilingual dubbing, localization."}},"/api/v1/qwen-image-edit-plus":{"post":{"tags":["Image: Edit & Reference"],"summary":"qwen-image-edit-plus (best)","operationId":"qwen_image_edit_plus_api_v1_qwen_image_edit_plus_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/QwenImageEditPlusRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images with enhanced capabilities using Qwen Image Edit Plus. Input: image, edit prompt. Output: edited image. Use for: advanced Qwen image editing."}},"/api/v1/kling-v2.5-turbo-std-i2v":{"post":{"tags":["Video: Image-to-Video"],"summary":"kling-v2.5-turbo-std-i2v (fast)","operationId":"kling_v25_turbo_std_i2v_api_v1_kling_v2_5_turbo_std_i2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingTurboStdI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images quickly using Kling v2.5 Turbo Standard. Input: image, text prompt. Output: video."}},"/api/v1/kling-v2.5-turbo-pro-i2v":{"post":{"tags":["Video: Image-to-Video"],"summary":"kling-v2.5-turbo-pro-i2v (fast)","operationId":"kling_v25_turbo_pro_i2v_api_v1_kling_v2_5_turbo_pro_i2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingTurboI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images quickly using Kling v2.5 Turbo Pro. Input: image, text prompt. Output: video."}},"/api/v1/kling-v2.5-turbo-pro-t2v":{"post":{"tags":["Video: Text-to-Video"],"summary":"kling-v2.5-turbo-pro-t2v (fast)","operationId":"kling_v25_turbo_pro_t2v_api_v1_kling_v2_5_turbo_pro_t2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingTurboT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text quickly using Kling v2.5 Turbo Pro. Input: text prompt. Output: video. Use for: fast professional video generation."}},"/api/v1/wan2.5-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"wan2.5-image-to-video (budget)","operationId":"wan25_image_to_video_api_v1_wan2_5_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan25I2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images into video using Wan 2.5. Input: image, text prompt. Output: video."}},"/api/v1/wan2.5-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"wan2.5-text-to-video (budget)","operationId":"wan25_text_to_video_api_v1_wan2_5_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan25T2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using Wan 2.5. Input: text prompt. Output: video. Use for: Wan 2.5 text-to-video."}},"/api/v1/wan2.5-image-to-video-fast":{"post":{"tags":["Video: Image-to-Video"],"summary":"wan2.5-image-to-video-fast (fast)","operationId":"wan25_image_to_video_fast_api_v1_wan2_5_image_to_video_fast_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan25I2VFastRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images quickly using Wan 2.5 Fast. Input: image, text prompt. Output: video."}},"/api/v1/wan2.5-text-to-video-fast":{"post":{"tags":["Video: Text-to-Video"],"summary":"wan2.5-text-to-video-fast (fast)","operationId":"wan25_text_to_video_fast_api_v1_wan2_5_text_to_video_fast_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan25T2VFastRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos quickly from text using Wan 2.5 Fast. Input: text prompt. Output: video. Use for: fast Wan video generation."}},"/api/v1/wan2.5-text-to-image":{"post":{"tags":["Image: Text-to-Image"],"summary":"wan2.5-text-to-image (balanced)","operationId":"wan25_text_to_image_api_v1_wan2_5_text_to_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan25T2IRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images from text using Wan 2.5. Input: text prompt. Output: image. Use for: improved Wan image generation."}},"/api/v1/topaz-video-upscale":{"post":{"tags":["Image: Enhance"],"summary":"topaz-video-upscale (best)","operationId":"topaz_video_upscale_api_v1_topaz_video_upscale_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TopazUpscaleV2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Upscale video resolution using Topaz AI. Input: video, scale parameters. Output: upscaled video. Use for: video enhancement, resolution upgrade, 4K video output."}},"/api/v1/topaz-image-upscale":{"post":{"tags":["Image: Enhance"],"summary":"topaz-image-upscale (best)","operationId":"topaz_image_upscale_api_v1_topaz_image_upscale_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TopazUpscaleI2IRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Upscale images to ultra-high resolution using Topaz AI. Input: image, scale factor. Output: upscaled image. Use for: professional upscaling, print preparation, 4K/8K output."}},"/api/v1/wan2.5-image-edit":{"post":{"tags":["Image: Edit & Reference"],"summary":"wan2.5-image-edit","operationId":"wan25_image_edit_api_v1_wan2_5_image_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan25EditImageRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images using Wan 2.5. Input: image, edit prompt. Output: edited image."}},"/api/v1/openai-sora":{"post":{"tags":["Video: Text-to-Video"],"summary":"openai-sora","operationId":"openai_sora_api_v1_openai_sora_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OpenAISoraRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate high-quality videos from text using OpenAI Sora. Input: text prompt. Output: video. Use for: cinematic video generation, realistic scenes."}},"/api/v1/hunyuan-image-3.0":{"post":{"tags":["Image: Text-to-Image"],"summary":"hunyuan-image-3.0 (best)","operationId":"hunyuan_image_30_api_v1_hunyuan_image_3_0_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/HunyuanImage3Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images from text using Hunyuan Image 3.0 (Tencent, latest). Input: text prompt. Output: image. Use for: state-of-the-art Tencent image generation."}},"/api/v1/openai-sora-2-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"openai-sora-2-image-to-video (balanced)","operationId":"openai_sora_2_image_to_video_api_v1_openai_sora_2_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OpenAISora2I2V"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images using OpenAI Sora 2. Input: image, text prompt. Output: video."}},"/api/v1/openai-sora-2-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"openai-sora-2-text-to-video (balanced)","operationId":"openai_sora_2_text_to_video_api_v1_openai_sora_2_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OpenAISora2T2V"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using OpenAI Sora 2. Input: text prompt. Output: video. Use for: improved Sora video generation."}},"/api/v1/ai-video-upscaler-pro":{"post":{"tags":["Image: Enhance"],"summary":"ai-video-upscaler-pro (best)","operationId":"ai_video_upscaler_pro_api_v1_ai_video_upscaler_pro_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AiVideoUpscalerProRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Upscale video with professional quality using AI Pro upscaler. Input: video. Output: professional upscaled video."}},"/api/v1/gemini-3-flash":{"post":{"tags":["LLM / Multimodal"],"summary":"gemini-3-flash","operationId":"gemini_3_flash_api_v1_gemini_3_flash_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gemini3FlashRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate text or analyze content using Google Gemini 3 Flash (multimodal, fast). Input: text prompt, optional images. Output: text. Use for: fast multimodal tasks, image understanding."}},"/api/v1/gemini-3-flash/stream":{"post":{"tags":["LLM / Multimodal"],"summary":"Gemini 3 Flash Stream","operationId":"gemini_3_flash_stream_api_v1_gemini_3_flash_stream_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gemini3FlashRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gemini-3-5-flash":{"post":{"tags":["LLM / Multimodal"],"summary":"gemini-3-5-flash (balanced)","operationId":"gemini_3_5_flash_api_v1_gemini_3_5_flash_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gemini35FlashRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate text or analyze content using Google Gemini 3.5 Flash (multimodal, fast). Input: text prompt, optional images. Output: text. Use for: fast multimodal tasks, image understanding."}},"/api/v1/gemini-3-5-flash/stream":{"post":{"tags":["LLM / Multimodal"],"summary":"Gemini 3 5 Flash Stream","operationId":"gemini_3_5_flash_stream_api_v1_gemini_3_5_flash_stream_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gemini35FlashRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gemini-3-5-flash-openai":{"post":{"tags":["LLM / Multimodal"],"summary":"gemini-3-5-flash-openai (balanced)","operationId":"gemini_3_5_flash_openai_api_v1_gemini_3_5_flash_openai_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gemini35FlashOpenAIRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate text or analyze content using Google Gemini 3.5 Flash (OpenAI-compatible, fast). Input: text prompt, optional images. Output: text. Use for: fast multimodal tasks, image understanding."}},"/api/v1/gemini-3-5-flash-openai/stream":{"post":{"tags":["LLM / Multimodal"],"summary":"Gemini 3 5 Flash Openai Stream","operationId":"gemini_3_5_flash_openai_stream_api_v1_gemini_3_5_flash_openai_stream_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gemini35FlashOpenAIRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gemini-3-6-flash":{"post":{"tags":["LLM / Multimodal"],"summary":"gemini-3-6-flash (balanced)","operationId":"gemini_3_6_flash_api_v1_gemini_3_6_flash_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gemini36FlashRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate text or analyze content using Google Gemini 3.6 Flash (multimodal, fast). Input: text prompt, optional images. Output: text. Use for: fast multimodal tasks, image understanding."}},"/api/v1/gemini-3-6-flash/stream":{"post":{"tags":["LLM / Multimodal"],"summary":"Gemini 3 6 Flash Stream","operationId":"gemini_3_6_flash_stream_api_v1_gemini_3_6_flash_stream_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gemini36FlashRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gemini-3-6-flash-openai":{"post":{"tags":["LLM / Multimodal"],"summary":"gemini-3-6-flash-openai (balanced)","operationId":"gemini_3_6_flash_openai_api_v1_gemini_3_6_flash_openai_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gemini36FlashOpenAIRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate text or analyze content using Google Gemini 3.6 Flash (OpenAI-compatible, fast). Input: text prompt, optional images. Output: text. Use for: fast multimodal tasks, image understanding."}},"/api/v1/gemini-3-6-flash-openai/stream":{"post":{"tags":["LLM / Multimodal"],"summary":"Gemini 3 6 Flash Openai Stream","operationId":"gemini_3_6_flash_openai_stream_api_v1_gemini_3_6_flash_openai_stream_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gemini36FlashOpenAIRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gemini-3-7-flash":{"post":{"tags":["LLM / Multimodal"],"summary":"gemini-3-7-flash (balanced)","operationId":"gemini_3_7_flash_api_v1_gemini_3_7_flash_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gemini37FlashRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate text or analyze content using Google Gemini 3.7 Flash (multimodal, fast). Input: text prompt, optional images. Output: text. Use for: fast multimodal tasks, image understanding, real-time reasoning."}},"/api/v1/gemini-3-7-flash/stream":{"post":{"tags":["LLM / Multimodal"],"summary":"Gemini 3 7 Flash Stream","operationId":"gemini_3_7_flash_stream_api_v1_gemini_3_7_flash_stream_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gemini37FlashRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gemini-3-7-flash-openai":{"post":{"tags":["LLM / Multimodal"],"summary":"gemini-3-7-flash-openai (balanced)","operationId":"gemini_3_7_flash_openai_api_v1_gemini_3_7_flash_openai_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gemini37FlashOpenAIRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate text or analyze content using Google Gemini 3.7 Flash (OpenAI-compatible, fast). Input: text prompt, optional images. Output: text. Use for: fast multimodal tasks, image understanding, real-time reasoning."}},"/api/v1/gemini-3-7-flash-openai/stream":{"post":{"tags":["LLM / Multimodal"],"summary":"Gemini 3 7 Flash Openai Stream","operationId":"gemini_3_7_flash_openai_stream_api_v1_gemini_3_7_flash_openai_stream_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gemini37FlashOpenAIRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/kimi-k3":{"post":{"tags":["Other"],"summary":"kimi-k3","operationId":"kimi_k3_api_v1_kimi_k3_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KimiK3Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate text using Moonshot AI Kimi K3 (2.8T MoE language model with 1M context window). Input: text prompt, optional system_prompt or image_url. Output: text response. Use for: long-context reasoning, coding, deep content creation, and agentic workflows."}},"/api/v1/kimi-k3/stream":{"post":{"tags":["LLM / Multimodal"],"summary":"Kimi K3 Stream","operationId":"kimi_k3_stream_api_v1_kimi_k3_stream_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KimiK3Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/deepseek-v4-flash":{"post":{"tags":["API"],"summary":"Deepseek V4 Flash","operationId":"deepseek_v4_flash_api_v1_deepseek_v4_flash_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DeepSeekV4FlashRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/deepseek-v4-flash/stream":{"post":{"tags":["LLM / Multimodal"],"summary":"Deepseek V4 Flash Stream","operationId":"deepseek_v4_flash_stream_api_v1_deepseek_v4_flash_stream_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DeepSeekV4FlashRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/deepseek-v4-pro":{"post":{"tags":["API"],"summary":"Deepseek V4 Pro","operationId":"deepseek_v4_pro_api_v1_deepseek_v4_pro_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DeepSeekV4ProRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/deepseek-v4-pro/stream":{"post":{"tags":["LLM / Multimodal"],"summary":"Deepseek V4 Pro Stream","operationId":"deepseek_v4_pro_stream_api_v1_deepseek_v4_pro_stream_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DeepSeekV4ProRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gemini-3-1-pro":{"post":{"tags":["API"],"summary":"Gemini 3 1 Pro","operationId":"gemini_3_1_pro_api_v1_gemini_3_1_pro_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gemini31ProRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gemini-3-1-pro/stream":{"post":{"tags":["LLM / Multimodal"],"summary":"Gemini 3 1 Pro Stream","operationId":"gemini_3_1_pro_stream_api_v1_gemini_3_1_pro_stream_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gemini31ProRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gemini-3-pro":{"post":{"tags":["API"],"summary":"Gemini 3 Pro","operationId":"gemini_3_pro_api_v1_gemini_3_pro_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gemini3ProRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gemini-3-pro/stream":{"post":{"tags":["LLM / Multimodal"],"summary":"Gemini 3 Pro Stream","operationId":"gemini_3_pro_stream_api_v1_gemini_3_pro_stream_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gemini3ProRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gemini-2-5-pro":{"post":{"tags":["API"],"summary":"Gemini 2 5 Pro","operationId":"gemini_2_5_pro_api_v1_gemini_2_5_pro_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gemini25ProRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gemini-2-5-pro/stream":{"post":{"tags":["LLM / Multimodal"],"summary":"Gemini 2 5 Pro Stream","operationId":"gemini_2_5_pro_stream_api_v1_gemini_2_5_pro_stream_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gemini25ProRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gemini-2-5-flash":{"post":{"tags":["API"],"summary":"Gemini 2 5 Flash","operationId":"gemini_2_5_flash_api_v1_gemini_2_5_flash_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gemini25FlashRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gemini-2-5-flash/stream":{"post":{"tags":["LLM / Multimodal"],"summary":"Gemini 2 5 Flash Stream","operationId":"gemini_2_5_flash_stream_api_v1_gemini_2_5_flash_stream_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gemini25FlashRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gemini-video-vision":{"post":{"tags":["LLM / Multimodal"],"summary":"gemini-video-vision","operationId":"gemini_video_vision_api_v1_gemini_video_vision_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GeminiVideoVisionRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Analyze and describe video content using Google Gemini's native video understanding. Input: text prompt, video_url, optional system_prompt, model (gemini-2.5-flash or gemini-2.5-pro). Output: detailed text analysis. Use for: video QA, content moderation, shot-list generation, video captioning, continuity analysis."}},"/api/v1/gemini-audio-vision":{"post":{"tags":["LLM / Multimodal"],"summary":"gemini-audio-vision","operationId":"gemini_audio_vision_api_v1_gemini_audio_vision_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GeminiAudioVisionRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Analyze and describe audio content using Google Gemini's native audio understanding. Input: text prompt, audio_url, optional system_prompt, model (gemini-2.5-flash). Output: detailed text analysis. Use for: transcription QA, audio content moderation, speaker/tone analysis, podcast summarization, sound-event detection."}},"/api/v1/claude-sonnet-4-6":{"post":{"tags":["LLM / Multimodal"],"summary":"claude-sonnet-4-6 (balanced)","operationId":"claude_sonnet_46_api_v1_claude_sonnet_4_6_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClaudeSonnet46Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate text using Claude Sonnet 4.6 (Anthropic, balanced). Input: text prompt. Output: text. Use for: general text generation, writing tasks."}},"/api/v1/claude-sonnet-4-6/stream":{"post":{"tags":["LLM / Multimodal"],"summary":"Claude Sonnet 46 Stream","operationId":"claude_sonnet_46_stream_api_v1_claude_sonnet_4_6_stream_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClaudeSonnet46Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/claude-opus-4-6":{"post":{"tags":["LLM / Multimodal"],"summary":"claude-opus-4-6 (best)","operationId":"claude_opus_46_api_v1_claude_opus_4_6_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClaudeOpus46Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate text using Claude Opus 4.6 (Anthropic, most capable). Input: text prompt. Output: text. Use for: complex reasoning, creative writing, analysis."}},"/api/v1/claude-opus-4-6/stream":{"post":{"tags":["LLM / Multimodal"],"summary":"Claude Opus 46 Stream","operationId":"claude_opus_46_stream_api_v1_claude_opus_4_6_stream_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClaudeOpus46Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/claude-opus-4-8":{"post":{"tags":["LLM / Multimodal"],"summary":"claude-opus-4-8 (best)","operationId":"claude_opus_48_api_v1_claude_opus_4_8_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClaudeOpus48Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate text using Claude Opus 4.8 (Anthropic, most capable). Input: text prompt. Output: text. Use for: complex reasoning, creative writing, analysis."}},"/api/v1/claude-opus-4-8/stream":{"post":{"tags":["LLM / Multimodal"],"summary":"Claude Opus 48 Stream","operationId":"claude_opus_48_stream_api_v1_claude_opus_4_8_stream_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClaudeOpus48Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/claude-opus-4-7":{"post":{"tags":["API"],"summary":"Claude Opus 47","operationId":"claude_opus_47_api_v1_claude_opus_4_7_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClaudeOpus47Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/claude-opus-4-7/stream":{"post":{"tags":["LLM / Multimodal"],"summary":"Claude Opus 47 Stream","operationId":"claude_opus_47_stream_api_v1_claude_opus_4_7_stream_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClaudeOpus47Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/claude-opus-4-5":{"post":{"tags":["API"],"summary":"Claude Opus 45","operationId":"claude_opus_45_api_v1_claude_opus_4_5_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClaudeOpus45Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/claude-opus-4-5/stream":{"post":{"tags":["LLM / Multimodal"],"summary":"Claude Opus 45 Stream","operationId":"claude_opus_45_stream_api_v1_claude_opus_4_5_stream_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClaudeOpus45Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/claude-sonnet-4-5":{"post":{"tags":["API"],"summary":"Claude Sonnet 45","operationId":"claude_sonnet_45_api_v1_claude_sonnet_4_5_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClaudeSonnet45Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/claude-sonnet-4-5/stream":{"post":{"tags":["LLM / Multimodal"],"summary":"Claude Sonnet 45 Stream","operationId":"claude_sonnet_45_stream_api_v1_claude_sonnet_4_5_stream_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClaudeSonnet45Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/claude-haiku-4-5":{"post":{"tags":["API"],"summary":"Claude Haiku 45","operationId":"claude_haiku_45_api_v1_claude_haiku_4_5_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClaudeHaiku45Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/claude-haiku-4-5/stream":{"post":{"tags":["LLM / Multimodal"],"summary":"Claude Haiku 45 Stream","operationId":"claude_haiku_45_stream_api_v1_claude_haiku_4_5_stream_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClaudeHaiku45Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/claude-fable-5":{"post":{"tags":["LLM / Multimodal"],"summary":"claude-fable-5 (best)","operationId":"claude_fable_5_api_v1_claude_fable_5_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClaudeFable5Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate text using Claude Fable 5 (Anthropic, flagship). Input: text prompt, optional image. Output: text. Use for: complex reasoning, creative writing, advanced analysis."}},"/api/v1/claude-fable-5/stream":{"post":{"tags":["LLM / Multimodal"],"summary":"Claude Fable 5 Stream","operationId":"claude_fable_5_stream_api_v1_claude_fable_5_stream_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClaudeFable5Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/claude-sonnet-5":{"post":{"tags":["LLM / Multimodal"],"summary":"claude-sonnet-5 (best)","operationId":"claude_sonnet_5_api_v1_claude_sonnet_5_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClaudeSonnet5Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate text using Claude Sonnet 5 (Anthropic, flagship balanced). Input: text prompt, optional image. Output: text. Use for: general text generation, complex reasoning, writing, coding."}},"/api/v1/claude-sonnet-5/stream":{"post":{"tags":["LLM / Multimodal"],"summary":"Claude Sonnet 5 Stream","operationId":"claude_sonnet_5_stream_api_v1_claude_sonnet_5_stream_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClaudeSonnet5Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/claude-opus-5":{"post":{"tags":["LLM / Multimodal"],"summary":"claude-opus-5 (best)","operationId":"claude_opus_5_api_v1_claude_opus_5_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClaudeOpus5Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate text using Claude Opus 5 (Anthropic, flagship most capable). Input: text prompt, optional image. Output: text. Use for: complex reasoning, coding, writing, advanced analysis."}},"/api/v1/claude-opus-5/stream":{"post":{"tags":["LLM / Multimodal"],"summary":"Claude Opus 5 Stream","operationId":"claude_opus_5_stream_api_v1_claude_opus_5_stream_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClaudeOpus5Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/grok-4-3":{"post":{"tags":["LLM / Multimodal"],"summary":"grok-4-3 (best)","operationId":"grok_4_3_api_v1_grok_4_3_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Grok43Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate text, analyze images, and browse the web using xAI Grok 4.3. Input: text prompt, optional image_url, reasoning_effort, web_search. Output: text."}},"/api/v1/grok-4-3/stream":{"post":{"tags":["LLM / Multimodal"],"summary":"Grok 4 3 Stream","operationId":"grok_4_3_stream_api_v1_grok_4_3_stream_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Grok43Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/grok-4-5":{"post":{"tags":["LLM / Multimodal"],"summary":"grok-4-5 (best)","operationId":"grok_4_5_api_v1_grok_4_5_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Grok45Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate text, analyze images, and browse the web using xAI Grok 4.5. Input: text prompt, optional image_url, reasoning_effort, web_search. Output: text."}},"/api/v1/grok-4-5/stream":{"post":{"tags":["LLM / Multimodal"],"summary":"Grok 4 5 Stream","operationId":"grok_4_5_stream_api_v1_grok_4_5_stream_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Grok45Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/grok-4-6":{"post":{"tags":["LLM / Multimodal"],"summary":"grok-4-6 (best)","operationId":"grok_4_6_api_v1_grok_4_6_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Grok46Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate text, analyze images, and browse the web using xAI Grok 4.6. Input: text prompt, optional image_url, reasoning_effort, web_search. Output: text."}},"/api/v1/grok-4-6/stream":{"post":{"tags":["LLM / Multimodal"],"summary":"Grok 4 6 Stream","operationId":"grok_4_6_stream_api_v1_grok_4_6_stream_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Grok46Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gpt-5-4":{"post":{"tags":["LLM / Multimodal"],"summary":"gpt-5-4 (best)","operationId":"gpt_54_api_v1_gpt_5_4_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gpt54Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate text or analyze content using GPT-5.4. Input: text prompt, optional images. Output: text. Use for: advanced reasoning, multimodal analysis."}},"/api/v1/gpt-5-4/stream":{"post":{"tags":["LLM / Multimodal"],"summary":"Gpt 54 Stream","operationId":"gpt_54_stream_api_v1_gpt_5_4_stream_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gpt54Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gpt-5-2":{"post":{"tags":["API"],"summary":"Gpt 52","operationId":"gpt_52_api_v1_gpt_5_2_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gpt52Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gpt-5-2/stream":{"post":{"tags":["LLM / Multimodal"],"summary":"Gpt 52 Stream","operationId":"gpt_52_stream_api_v1_gpt_5_2_stream_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gpt52Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gpt-5-5":{"post":{"tags":["API"],"summary":"Gpt 55","operationId":"gpt_55_api_v1_gpt_5_5_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gpt55Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gpt-5-5/stream":{"post":{"tags":["LLM / Multimodal"],"summary":"Gpt 55 Stream","operationId":"gpt_55_stream_api_v1_gpt_5_5_stream_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gpt55Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gpt-5-6-luna":{"post":{"tags":["LLM / Multimodal"],"summary":"gpt-5-6-luna (fast)","operationId":"gpt_56_luna_api_v1_gpt_5_6_luna_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gpt56LunaRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate text using GPT 5.6 Luna (fast, cost-effective multimodal reasoning). Input: text prompt, optional image, system prompt, reasoning effort. Output: text. Use for: high-volume classification, screening, simple extraction."}},"/api/v1/gpt-5-6-luna/stream":{"post":{"tags":["LLM / Multimodal"],"summary":"Gpt 56 Luna Stream","operationId":"gpt_56_luna_stream_api_v1_gpt_5_6_luna_stream_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gpt56LunaRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gpt-5-6-terra":{"post":{"tags":["LLM / Multimodal"],"summary":"gpt-5-6-terra (balanced)","operationId":"gpt_56_terra_api_v1_gpt_5_6_terra_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gpt56TerraRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate text using GPT 5.6 Terra (balanced multimodal reasoning). Input: text prompt, optional image, system prompt, reasoning effort. Output: text. Use for: general business, analytical, and writing tasks."}},"/api/v1/gpt-5-6-terra/stream":{"post":{"tags":["LLM / Multimodal"],"summary":"Gpt 56 Terra Stream","operationId":"gpt_56_terra_stream_api_v1_gpt_5_6_terra_stream_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gpt56TerraRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gpt-5-6-sol":{"post":{"tags":["LLM / Multimodal"],"summary":"gpt-5-6-sol (best)","operationId":"gpt_56_sol_api_v1_gpt_5_6_sol_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gpt56SolRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate text using GPT 5.6 Sol (flagship reasoning model). Input: text prompt, optional image, system prompt, reasoning effort. Output: text. Use for: complex math, programming, and scientific reasoning."}},"/api/v1/gpt-5-6-sol/stream":{"post":{"tags":["LLM / Multimodal"],"summary":"Gpt 56 Sol Stream","operationId":"gpt_56_sol_stream_api_v1_gpt_5_6_sol_stream_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Gpt56SolRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gpt-codex":{"post":{"tags":["LLM / Multimodal"],"summary":"gpt-codex","operationId":"gpt_codex_api_v1_gpt_codex_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GptCodexRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate code using GPT Codex. Input: code description or prompt. Output: code. Use for: code generation, programming assistance."}},"/api/v1/gpt-codex/stream":{"post":{"tags":["LLM / Multimodal"],"summary":"Gpt Codex Stream","operationId":"gpt_codex_stream_api_v1_gpt_codex_stream_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GptCodexRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gpt-5-nano":{"post":{"tags":["LLM / Multimodal"],"summary":"gpt-5-nano (fast)","operationId":"gpt_5_nano_api_v1_gpt_5_nano_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TextRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate text using GPT-5 Nano (smallest, fastest). Input: text prompt. Output: text. Use for: ultra-fast text tasks."}},"/api/v1/gpt-5-mini":{"post":{"tags":["LLM / Multimodal"],"summary":"gpt-5-mini (balanced)","operationId":"gpt_5_mini_api_v1_gpt_5_mini_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TextRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate text using GPT-5 Mini (fast, cost-effective). Input: text prompt. Output: text. Use for: quick text generation, summaries."}},"/api/v1/video-watermark-remover":{"post":{"tags":["Video: Edit & Effects"],"summary":"video-watermark-remover","operationId":"video_watermark_remover_api_v1_video_watermark_remover_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/VideoWatermarkRemoverRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Remove watermarks from videos. Input: video. Output: clean video without watermark."}},"/api/v1/seedance-2.0-watermark-remover":{"post":{"tags":["Video: Edit & Effects"],"summary":"sd-2-watermark-remover","operationId":"seedance2_watermark_remover_api_v1_seedance_2_0_watermark_remover_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2WatermarkRemoverRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Remove watermarks from videos using Seedance 2. Input: video. Output: watermark-free video."}},"/api/v1/seedance-2-video-watermark-remover-pro":{"post":{"tags":["Image: Enhance"],"summary":"seedance-2-video-watermark-remover-pro (best)","operationId":"seedance2_video_watermark_remover_pro_api_v1_seedance_2_video_watermark_remover_pro_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2VideoWatermarkRemoverProRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Remove watermarks from videos using Seedance 2 Pro (higher-quality removal). Input: video_url. Output: clean video with watermark removed. Use for: premium watermark removal, hero footage cleanup."}},"/api/v1/ovi-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"ovi-image-to-video","operationId":"ovi_image_to_video_api_v1_ovi_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OviImageToVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images using OVI model. Input: image, text prompt. Output: video."}},"/api/v1/ovi-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"ovi-text-to-video","operationId":"ovi_text_to_video_api_v1_ovi_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OviTextToVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using OVI model. Input: text prompt. Output: video."}},"/api/v1/openai-sora-2-pro-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"openai-sora-2-pro-image-to-video (best)","operationId":"openai_sora_2_pro_image_to_video_api_v1_openai_sora_2_pro_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OpenAISora2ProI2V"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images using OpenAI Sora 2 Pro (high quality). Input: image, text prompt. Output: video."}},"/api/v1/openai-sora-2-pro-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"openai-sora-2-pro-text-to-video (best)","operationId":"openai_sora_2_pro_text_to_video_api_v1_openai_sora_2_pro_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OpenAISora2ProT2V"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate pro-quality videos from text using OpenAI Sora 2 Pro. Input: text prompt. Output: high-quality video. Use for: premium Sora video generation."}},"/api/v1/hf-soul-image-to-image":{"post":{"tags":["Image: Enhance"],"summary":"hf-soul-image-to-image","operationId":"hf_soul_image_to_image_api_v1_hf_soul_image_to_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/HfSoulImageRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Transform images using HF Soul style transfer. Input: image, style prompt. Output: image. Use for: artistic style transfer."}},"/api/v1/leonardoai-phoenix-1.0":{"post":{"tags":["Image: Text-to-Image"],"summary":"leonardoai-phoenix-1.0","operationId":"leonardoai_phoenix_10_api_v1_leonardoai_phoenix_1_0_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/LeonardoAIPhoenixRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images from text using Leonardo AI Phoenix 1.0. Input: text prompt. Output: image. Use for: Leonardo AI generation, artistic images."}},"/api/v1/leonardoai-lucid-origin":{"post":{"tags":["Image: Text-to-Image"],"summary":"leonardoai-lucid-origin","operationId":"leonardoai_lucid_origin_api_v1_leonardoai_lucid_origin_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/LeonardoAILucidOriginRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate surreal/lucid images using Leonardo AI Lucid Origin. Input: text prompt. Output: image. Use for: dreamlike images, surreal art."}},"/api/v1/leonardoai-motion-2.0":{"post":{"tags":["Video: Image-to-Video"],"summary":"leonardoai-motion-2.0","operationId":"leonardoai_motion_20_api_v1_leonardoai_motion_2_0_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/LeonardoAIMotionRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images using Leonardo AI Motion 2.0. Input: image, text prompt. Output: video."}},"/api/v1/hf-dop-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"hf-dop-image-to-video","operationId":"hf_dop_image_to_video_api_v1_hf_dop_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/HfDopVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images using HF DOP model. Input: image, text prompt. Output: video."}},"/api/v1/remix-video":{"post":{"tags":["Video: Edit & Effects"],"summary":"remix-video","operationId":"remix_video_api_v1_remix_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RemixVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Remix/stylize existing video using AI. Input: video, style prompt. Output: remixed video. Use for: video style transfer, creative remixing."}},"/api/v1/veo3.1-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"veo3.1-image-to-video (best)","operationId":"veo31_image_to_video_api_v1_veo3_1_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Veo31ImageToVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images into high-quality video using Google Veo 3.1 (native audio, 35% better motion, up to 4K). Input: image, text prompt. Output: video with audio. Use for: premium image animation, product video from photo."}},"/api/v1/veo3.1-fast-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"veo3.1-fast-image-to-video (fast)","operationId":"veo31_fast_image_to_video_api_v1_veo3_1_fast_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Veo31FastImageToVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images quickly using Google Veo 3.1 Fast. Input: image, text prompt. Output: video. Use for: fast Veo 3.1 image animation."}},"/api/v1/veo3.1-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"veo3.1-text-to-video (best)","operationId":"veo31_text_to_video_api_v1_veo3_1_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Veo31TextToVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using Google Veo 3.1 (best, native audio+lipsync, 35% better motion, up to 4K, 8s). Input: text prompt. Output: video with native audio. Use for: best-in-class video generation, ads, social media, cinematic videos."}},"/api/v1/veo3.1-fast-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"veo3.1-fast-text-to-video (fast)","operationId":"veo31_fast_text_to_video_api_v1_veo3_1_fast_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Veo31FastTextToVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text quickly using Google Veo 3.1 Fast (30% faster). Input: text prompt. Output: video. Use for: fast Veo 3.1 generation, cost-efficient video creation."}},"/api/v1/veo3.1-lite-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"veo3.1-lite-text-to-video (fast)","operationId":"veo31_lite_text_to_video_api_v1_veo3_1_lite_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Veo31TextToVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using Google Veo 3.1 Lite (cost-effective). Input: text prompt. Output: video. Use for: budget video generation, high-volume content."}},"/api/v1/veo3.1-lite-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"veo3.1-lite-image-to-video (fast)","operationId":"veo31_lite_image_to_video_api_v1_veo3_1_lite_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Veo31ImageToVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images into video using Google Veo 3.1 Lite. Input: image, text prompt. Output: video. Use for: cost-effective image animation."}},"/api/v1/veo3.1-reference-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"veo3.1-reference-to-video","operationId":"veo31_reference_to_video_api_v1_veo3_1_reference_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Veo31ReferenceToVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from multiple reference images using Google Veo 3.1. Input: reference images, text prompt. Output: video. Use for: multi-reference video generation, character/scene consistency."}},"/api/v1/create-story-board-data":{"post":{"tags":["Video: Edit & Effects"],"summary":"sora2-storyboard","operationId":"create_story_board_data_api_v1_create_story_board_data_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/StoryboardDataRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Create storyboard data for Sora 2 video generation. Input: story description, scenes. Output: structured storyboard. Use for: video pre-production, storyboard planning."}},"/api/v1/modify-sora2-storyboard-data":{"post":{"tags":["Video: Edit & Effects"],"summary":"Modify Sora2 Storyboard Data","operationId":"modify_sora2_storyboard_data_api_v1_modify_sora2_storyboard_data_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ModifyStoryboardDataRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/expand-sora2-storyboard-data":{"post":{"tags":["Video: Edit & Effects"],"summary":"Expand Sora2 Storyboard","operationId":"expand_sora2_storyboard_api_v1_expand_sora2_storyboard_data_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ExpandStoryboardDataRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/adjust-duration-sora2-storyboard":{"post":{"tags":["Video: Edit & Effects"],"summary":"Adjust Duration Sora2 Storyboard","operationId":"adjust_duration_sora2_storyboard_api_v1_adjust_duration_sora2_storyboard_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AdjustStoryboardDurationRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/openai-sora-2-pro-storyboard":{"post":{"tags":["Video: Edit & Effects"],"summary":"openai-sora-2-pro-storyboard","operationId":"openai_sora2_pro_storyboard_api_v1_openai_sora_2_pro_storyboard_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/StoryboardRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate multi-shot storyboard video using OpenAI Sora 2 Pro. Input: storyboard panels with prompts. Output: multi-scene video. Use for: narrative videos, story-driven content, multi-scene production."}},"/api/v1/veo3.1-extend-video":{"post":{"tags":["Video: Edit & Effects"],"summary":"veo3.1-extend-video","operationId":"veo31_extend_video_api_v1_veo3_1_extend_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Veo31ExtendVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Extend videos using Google Veo 3.1. Input: video. Output: extended video. Use for: making Veo-quality videos longer."}},"/api/v1/seedance-pro-i2v-fast":{"post":{"tags":["Video: Image-to-Video"],"summary":"seedance-pro-i2v-fast (fast)","operationId":"seedance_pro_i2v_fast_api_v1_seedance_pro_i2v_fast_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeedanceProFastI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images quickly using Seedance Pro Fast. Input: image, text prompt. Output: video."}},"/api/v1/seedance-pro-t2v-fast":{"post":{"tags":["Video: Text-to-Video"],"summary":"seedance-pro-t2v-fast (fast)","operationId":"seedance_pro_t2v_fast_api_v1_seedance_pro_t2v_fast_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeedanceProFastT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos quickly from text using Seedance Pro Fast. Input: text prompt. Output: video. Use for: fast Seedance Pro generation."}},"/api/v1/ltx-2-pro-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"ltx-2-pro-image-to-video (budget)","operationId":"ltx_2_pro_image_to_video_api_v1_ltx_2_pro_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Ltx2ProI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images professionally using LTX 2 Pro. Input: image, text prompt. Output: video."}},"/api/v1/ltx-2-pro-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"ltx-2-pro-text-to-video (budget)","operationId":"ltx_2_pro_text_to_video_api_v1_ltx_2_pro_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Ltx2ProT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate professional videos from text using LTX 2 Pro. Input: text prompt. Output: video."}},"/api/v1/ltx-2-fast-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"ltx-2-fast-image-to-video (fast)","operationId":"ltx_2_fast_image_to_video_api_v1_ltx_2_fast_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Ltx2FastI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images quickly using LTX 2 Fast. Input: image, text prompt. Output: video."}},"/api/v1/ltx-2-fast-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"ltx-2-fast-text-to-video (fast)","operationId":"ltx_2_fast_text_to_video_api_v1_ltx_2_fast_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Ltx2FastT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos quickly from text using LTX 2 Fast. Input: text prompt. Output: video. Use for: fast open-source video generation."}},"/api/v1/vidu-q2-reference":{"post":{"tags":["Video: Image-to-Video"],"summary":"vidu-q2-reference","operationId":"vidu_q2_reference_api_v1_vidu_q2_reference_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ViduQ2ReferenceRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate content from references using Vidu Q2 (strong facial expressions, up to 7 references, first+last frame, 3x faster). Input: reference images, prompt. Output: video/image. Use for: consistent character video."}},"/api/v1/vidu-q2-turbo-start-end-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"vidu-q2-turbo-start-end-video","operationId":"vidu_q2_turbo_start_end_video_api_v1_vidu_q2_turbo_start_end_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ViduQ2TurboRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate video with first+last frame control using Vidu Q2 Turbo (faster). Input: start frame, end frame, prompt. Output: video."}},"/api/v1/vidu-q2-pro-start-end-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"vidu-q2-pro-start-end-video","operationId":"vidu_q2_pro_start_end_video_api_v1_vidu_q2_pro_start_end_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ViduQ2ProRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate video with first+last frame control using Vidu Q2 Pro. Input: start frame, end frame, prompt. Output: video. Use for: controlled video interpolation."}},"/api/v1/vidu-q2-pro-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"vidu-q2-pro-text-to-video (balanced)","operationId":"vidu_q2_pro_text_to_video_api_v1_vidu_q2_pro_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ViduQ2T2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using Vidu Q2 Pro (cinematic detail tier, up to 1080p, ~10s max, multi-reference support for character/scene consistency). Input: text prompt. Output: video. Use for: cinematic detail, scenes with consistent characters across shots via multi-reference."}},"/api/v1/vidu-q2-pro-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"vidu-q2-pro-image-to-video (balanced)","operationId":"vidu_q2_pro_image_to_video_api_v1_vidu_q2_pro_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ViduQ2I2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate a still image with Vidu Q2 Pro (cinematic detail tier, 1080p, up to ~10s, multi-reference support). Input: prompt + image_url. Output: video. Use for: cinematic detail image-to-video, scenes with consistent characters across shots."}},"/api/v1/vidu-q2-turbo-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"vidu-q2-turbo-text-to-video (fast)","operationId":"vidu_q2_turbo_text_to_video_api_v1_vidu_q2_turbo_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ViduQ2T2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using Vidu Q2 Turbo (fast-paced action tier, faster than Pro, up to 1080p). Input: text prompt. Output: video, lower latency. Use for: action-heavy clips, rapid Vidu generation, sketch-to-final iteration."}},"/api/v1/vidu-q2-turbo-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"vidu-q2-turbo-image-to-video (fast)","operationId":"vidu_q2_turbo_image_to_video_api_v1_vidu_q2_turbo_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ViduQ2I2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate a still image with Vidu Q2 Turbo (fast-paced tier, lower latency than Pro). Input: prompt + image_url. Output: video. Use for: action-heavy image-to-video, rapid iteration."}},"/api/v1/minimax-hailuo-2.3-standard-i2v":{"post":{"tags":["Video: Image-to-Video"],"summary":"minimax-hailuo-2.3-standard-i2v (budget)","operationId":"minimax_hailuo_23_standard_i2v_api_v1_minimax_hailuo_2_3_standard_i2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Hailuo23StdI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images using MiniMax Hailuo 2.3 Standard (768p). Input: image, text prompt. Output: 768p video."}},"/api/v1/minimax-hailuo-2.3-standard-t2v":{"post":{"tags":["Video: Text-to-Video"],"summary":"minimax-hailuo-2.3-standard-t2v (budget)","operationId":"minimax_hailuo_23_standard_t2v_api_v1_minimax_hailuo_2_3_standard_t2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Hailuo23StdT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate 768p videos from text using MiniMax Hailuo 2.3 Standard. Input: text prompt. Output: 768p video."}},"/api/v1/minimax-hailuo-2.3-pro-i2v":{"post":{"tags":["Video: Image-to-Video"],"summary":"minimax-hailuo-2.3-pro-i2v (best)","operationId":"minimax_hailuo_23_pro_i2v_api_v1_minimax_hailuo_2_3_pro_i2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Hailuo23ProI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images using MiniMax Hailuo 2.3 Pro (1080p). Input: image, text prompt. Output: 1080p video."}},"/api/v1/minimax-hailuo-2.3-pro-t2v":{"post":{"tags":["Video: Text-to-Video"],"summary":"minimax-hailuo-2.3-pro-t2v (best)","operationId":"minimax_hailuo_23_pro_t2v_api_v1_minimax_hailuo_2_3_pro_t2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Hailuo23ProT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate 1080p videos from text using MiniMax Hailuo 2.3 Pro. Input: text prompt. Output: 1080p video. Use for: high-quality video generation."}},"/api/v1/minimax-hailuo-2.3-fast":{"post":{"tags":["Video: Image-to-Video"],"summary":"minimax-hailuo-2.3-fast (fast)","operationId":"minimax_hailuo_23_fast_api_v1_minimax_hailuo_2_3_fast_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Hailuo23FastI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images quickly using MiniMax Hailuo 2.3 Fast (cheaper). Input: image, text prompt. Output: video."}},"/api/v1/minimax-h3-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"Minimax H3 Text To Video","operationId":"minimax_h3_text_to_video_api_v1_minimax_h3_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MiniMaxH3T2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/minimax-h3-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"Minimax H3 Image To Video","operationId":"minimax_h3_image_to_video_api_v1_minimax_h3_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MiniMaxH3I2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/minimax-h3-reference-to-video":{"post":{"tags":["Video: Edit & Effects"],"summary":"Minimax H3 Reference To Video","operationId":"minimax_h3_reference_to_video_api_v1_minimax_h3_reference_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MiniMaxH3ReferenceToVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/minimax-h3-open-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"minimax-h3-open-text-to-video (balanced)","operationId":"minimax_h3_open_text_to_video_api_v1_minimax_h3_open_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MiniMaxH3OpenTextToVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate coherent videos from text with native audio using MiniMax H3 Open Text to Video (480p/768p, 5-15s, aspect ratios). Input: text prompt, aspect_ratio, resolution, duration. Output: video with audio. Use for: open-weights text-to-video, AI video generation with audio."}},"/api/v1/minimax-h3-open-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"minimax-h3-open-image-to-video (balanced)","operationId":"minimax_h3_open_image_to_video_api_v1_minimax_h3_open_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MiniMaxH3OpenImageToVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images into video with native stereo audio using MiniMax H3 Open Image to Video (480p/768p, 5-15s, optional last frame). Input: image_url, prompt, optional last_image_url, resolution, duration. Output: video with audio. Use for: open-weights image-to-video with audio."}},"/api/v1/minimax-h3-open-reference-to-video":{"post":{"tags":["Other"],"summary":"minimax-h3-open-reference-to-video","operationId":"minimax_h3_open_reference_to_video_api_v1_minimax_h3_open_reference_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MiniMaxH3OpenReferenceToVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos with native stereo audio from text and multimodal references using MiniMax H3 Open Reference to Video (up to 9 images, 3 videos, 3 audios, 480p/768p, 5-15s). Input: prompt, images_list, videos_list, audios_list, aspect_ratio, resolution, duration. Output: video with audio."}},"/api/v1/grok-imagine-video-1-5-preview":{"post":{"tags":["Video: Image-to-Video"],"summary":"grok-imagine-video-1-5-preview","operationId":"grok_imagine_video_15_api_v1_grok_imagine_video_1_5_preview_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GrokImagineVideo15Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images into video using Grok Imagine Video 1.5 Preview (xAI). Input: images_list, optional prompt, aspect_ratio, resolution, duration (1-15s). Output: video up to 15 seconds. Use for: image-to-video with flexible duration and aspect ratio."}},"/api/v1/grok-imagine-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"grok-imagine-image-to-video","operationId":"grok_imagine_image_to_video_api_v1_grok_imagine_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GrokImagineI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images using Grok Imagine (xAI, 10s, 720p, native audio). Input: image, text prompt. Output: 10-second video with audio."}},"/api/v1/grok-imagine-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"grok-imagine-text-to-video","operationId":"grok_imagine_text_to_video_api_v1_grok_imagine_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GrokImagineT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using Grok Imagine (xAI Aurora, 10s, 720p, native audio, fun/normal/spicy modes). Input: text prompt, mode. Output: 10-second video with audio. Use for: fun/experimental video generation, xAI video."}},"/api/v1/grok-imagine-text-to-image":{"post":{"tags":["Image: Text-to-Image"],"summary":"grok-imagine-text-to-image","operationId":"grok_imagine_text_to_image_api_v1_grok_imagine_text_to_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GrokImagineT2IRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images from text using Grok Imagine (xAI Aurora engine). Input: text prompt, mode (fun/normal/spicy). Output: image. Use for: creative generation with xAI, fun/experimental images."}},"/api/v1/grok-imagine-text-to-image-quality":{"post":{"tags":["Image: Text-to-Image"],"summary":"grok-imagine-text-to-image-quality","operationId":"grok_imagine_text_to_image_quality_api_v1_grok_imagine_text_to_image_quality_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GrokImagineT2IRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images from text using Grok Imagine in quality mode (enable_pro=true). Input: text prompt, aspect ratio. Output: image. Use for: highest-fidelity Grok Imagine generations where accuracy matters more than speed."}},"/api/v1/grok-imagine-extend":{"post":{"tags":["Video: Edit & Effects"],"summary":"grok-imagine-extend","operationId":"grok_imagine_extend_api_v1_grok_imagine_extend_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GrokImagineExtendRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Extend video using Grok Imagine (xAI). Input: video. Output: extended video. Use for: video extension with xAI."}},"/api/v1/grok-imagine-image-2":{"post":{"tags":["Image: Text-to-Image"],"summary":"grok-imagine-image-2","operationId":"grok_imagine_image_2_api_v1_grok_imagine_image_2_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GrokImagineImage2T2IRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images from text using Grok Imagine Image 2.0 (xAI). Input: text prompt, aspect ratio. Output: image. Use for: precise instruction-following, sharp typography and dense layout, commercial poster/infographic-style generation."}},"/api/v1/grok-imagine-image-2-edit":{"post":{"tags":["Image: Edit & Reference"],"summary":"grok-imagine-image-2-edit","operationId":"grok_imagine_image_2_edit_api_v1_grok_imagine_image_2_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GrokImagineImage2EditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Apply a targeted follow-up edit to a prior Grok Imagine Image 2.0 generation. Input: edit prompt, request_id of the prior grok-imagine-image-2 generation, optional mask_indexs. Output: edited image. Use for: iterative refinement of a Grok Imagine Image 2.0 image without regenerating from scratch."}},"/api/v1/seedvr2-image-upscale":{"post":{"tags":["Image: Enhance"],"summary":"seedvr2-image-upscale","operationId":"seedvr2_image_upscale_api_v1_seedvr2_image_upscale_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeedVR2I2IRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Upscale images using SeedVR2 model. Input: image. Output: upscaled image."}},"/api/v1/qwen-image-edit-plus-lora":{"post":{"tags":["Image: Edit & Reference"],"summary":"qwen-image-edit-plus-lora","operationId":"qwen_image_edit_plus_lora_api_v1_qwen_image_edit_plus_lora_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/QwenImageEditPlusLoraRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images using Qwen Image Edit Plus with LoRA fine-tuning. Input: image, edit prompt, LoRA weights. Output: edited image. Use for: custom style image editing."}},"/api/v1/qwen-image-edit-2511-lora":{"post":{"tags":["Image: Edit & Reference"],"summary":"qwen-image-edit-2511-lora","operationId":"qwen_image_edit_2511_lora_api_v1_qwen_image_edit_2511_lora_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/QwenImageEdit2511LoraRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images using Qwen Image Edit 2511 with LoRA fine-tuning. Input: image, edit prompt, LoRA weights. Output: edited image. Use for: custom style image editing with Qwen 2511."}},"/api/v1/qwen-image-edit-lora":{"post":{"tags":["Image: Edit & Reference"],"summary":"qwen-image-edit-lora","operationId":"qwen_image_edit_lora_api_v1_qwen_image_edit_lora_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/QwenImageEditLoraRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images using Qwen Image Edit with LoRA fine-tuning. Input: image, edit prompt, LoRA weights. Output: edited image. Use for: custom style image editing with Qwen."}},"/api/v1/face-expression-change":{"post":{"tags":["Image: Edit & Reference"],"summary":"qwen-image-face-expression-change","operationId":"qwen_image_face_expression_change_api_v1_face_expression_change_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/QwenImageFaceExpressionChangeRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Change face expressions and camera angles using Qwen Image Edit. Input: image, prompt, camera controls. Output: edited image."}},"/api/v1/nano-banana-pro-edit":{"post":{"tags":["Image: Edit & Reference"],"summary":"nano-banana-pro-edit (best)","operationId":"nano_banana_pro_edit_api_v1_nano_banana_pro_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NanoBananaProEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images using Nano Banana Pro (Gemini 3 Pro). Input: image, edit instruction. Output: edited image. Use for: complex reasoning-based image editing."}},"/api/v1/nano-banana-pro":{"post":{"tags":["Image: Text-to-Image"],"summary":"nano-banana-pro (best)","operationId":"nano_banana_pro_api_v1_nano_banana_pro_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NanoBananaProRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate professional-grade images using Nano Banana Pro (Gemini 3 Pro). Input: text prompt. Output: image. Use for: complex reasoning, professional image generation, multimodal understanding."}},"/api/v1/kling-o1-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"kling-o1-image-to-video (best)","operationId":"kling_o1_image_to_video_api_v1_kling_o1_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingO1I2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images into video using Kling O1 (unified gen+edit, native audio, video reference input). Input: image, text prompt, optional video reference. Output: video. Use for: advanced image animation with references."}},"/api/v1/kling-o1-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"kling-o1-text-to-video (best)","operationId":"kling_o1_text_to_video_api_v1_kling_o1_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingO1T2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using Kling O1 (unified generation+editing, native audio, video reference). Input: text prompt, optional video reference. Output: video. Use for: advanced AI video generation, reference-based video creation."}},"/api/v1/kling-o1-reference-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"kling-o1-reference-to-video","operationId":"kling_o1_reference_to_video_api_v1_kling_o1_reference_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingO1ReferenceRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate video from reference images using Kling O1. Input: reference images, text prompt. Output: video. Use for: multi-reference video generation."}},"/api/v1/kling-o1-video-edit":{"post":{"tags":["Video: Edit & Effects"],"summary":"kling-o1-video-edit","operationId":"kling_o1_video_edit_api_v1_kling_o1_video_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingO1VideoEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit video using Kling O1 (unified generation+editing). Input: video, edit instruction. Output: edited video. Use for: AI-guided video editing."}},"/api/v1/kling-o1-video-edit-fast":{"post":{"tags":["Video: Edit & Effects"],"summary":"kling-o1-video-edit-fast (fast)","operationId":"kling_o1_video_edit_fast_api_v1_kling_o1_video_edit_fast_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingO1VideoEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit video quickly using Kling O1 Fast. Input: video, edit instruction. Output: edited video."}},"/api/v1/z-image-turbo":{"post":{"tags":["Image: Text-to-Image"],"summary":"z-image-turbo (fast)","operationId":"z_image_turbo_api_v1_z_image_turbo_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ZImageRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images from text quickly using Z Image Turbo. Input: text prompt. Output: image. Use for: fast turbo-speed image generation."}},"/api/v1/kling-o1-text-to-image":{"post":{"tags":["Image: Text-to-Image"],"summary":"kling-o1-text-to-image","operationId":"kling_o1_text_to_image_api_v1_kling_o1_text_to_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingO1T2IRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images from text using Kling O1. Input: text prompt. Output: image."}},"/api/v1/kling-o1-edit-image":{"post":{"tags":["Image: Edit & Reference"],"summary":"kling-o1-edit-image","operationId":"kling_o1_edit_image_api_v1_kling_o1_edit_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingO1EditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images using Kling O1. Input: image, edit instruction. Output: edited image."}},"/api/v1/flux-2-dev":{"post":{"tags":["Image: Text-to-Image"],"summary":"flux-2-dev (balanced)","operationId":"flux_2_dev_api_v1_flux_2_dev_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Flux2DevRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate 4MP images from text using Flux 2 Dev with multi-reference input (up to 10 images). Input: text prompt, optional reference images. Output: high-resolution image. Use for: professional image generation, brand consistency, style reference."}},"/api/v1/flux-2-dev-edit":{"post":{"tags":["Image: Edit & Reference"],"summary":"flux-2-dev-edit (balanced)","operationId":"flux_2_dev_edit_api_v1_flux_2_dev_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Flux2DevEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images using Flux 2 Dev (image-to-image editing). Input: image, edit prompt. Output: edited image. Use for: image editing with Flux 2 Dev quality."}},"/api/v1/flux-2-flex":{"post":{"tags":["Image: Text-to-Image"],"summary":"flux-2-flex (balanced)","operationId":"flux_2_flex_api_v1_flux_2_flex_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Flux2FlexT2IRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate flexible-format images from text using Flux 2 Flex. Input: text prompt. Output: image. Use for: versatile text-to-image, various aspect ratios."}},"/api/v1/flux-2-flex-edit":{"post":{"tags":["Image: Edit & Reference"],"summary":"flux-2-flex-edit (balanced)","operationId":"flux_2_flex_edit_api_v1_flux_2_flex_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Flux2FlexEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images using Flux 2 Flex (flexible image editing). Input: image, edit prompt. Output: edited image."}},"/api/v1/flux-2-pro":{"post":{"tags":["Image: Text-to-Image"],"summary":"flux-2-pro (best)","operationId":"flux_2_pro_api_v1_flux_2_pro_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Flux2ProT2IRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate ultra-high-quality 4MP images from text using Flux 2 Pro with excellent text rendering. Input: text prompt, up to 10 reference images. Output: 4MP image. Use for: commercial photography, marketing visuals, detailed text in images, product shots."}},"/api/v1/flux-2-pro-edit":{"post":{"tags":["Image: Edit & Reference"],"summary":"flux-2-pro-edit (best)","operationId":"flux_2_pro_edit_api_v1_flux_2_pro_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Flux2ProEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images professionally using Flux 2 Pro with multi-reference support. Input: image, edit prompt. Output: edited image. Use for: professional image editing, reference-guided edits."}},"/api/v1/vidu-q2-text-to-image":{"post":{"tags":["Image: Text-to-Image"],"summary":"vidu-q2-text-to-image","operationId":"vidu_q2_text_to_image_api_v1_vidu_q2_text_to_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ViduQ2T2IRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images from text using Vidu Q2. Input: text prompt. Output: image. Use for: Vidu-quality image generation."}},"/api/v1/vidu-q2-reference-to-image":{"post":{"tags":["Video: Image-to-Video"],"summary":"vidu-q2-reference","operationId":"vidu_q2_reference_to_image_api_v1_vidu_q2_reference_to_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ViduQ2ReferenceImageRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate content from references using Vidu Q2 (strong facial expressions, up to 7 references, first+last frame, 3x faster). Input: reference images, prompt. Output: video/image. Use for: consistent character video."}},"/api/v1/bytedance-seedream-v4.5":{"post":{"tags":["Image: Text-to-Image"],"summary":"bytedance-seedream-v4 (balanced)","operationId":"bytedance_seedream_v45_api_v1_bytedance_seedream_v4_5_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedreamv45Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate 4K images from text using Seedream v4 with excellent text rendering. Input: text prompt. Output: 4K image. Use for: ultra-high-resolution generation, marketing images."}},"/api/v1/bytedance-seedream-v4.5-edit":{"post":{"tags":["Image: Edit & Reference"],"summary":"bytedance-seedream-v4.5-edit","operationId":"bytedance_seedream_v45_edit_api_v1_bytedance_seedream_v4_5_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedreamv45EditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images using Seedream v4.5. Input: image, edit prompt. Output: edited image. Use for: Seedream-powered image editing."}},"/api/v1/pixverse-v5.5-t2v":{"post":{"tags":["Video: Text-to-Video"],"summary":"pixverse-v5.5-t2v","operationId":"pixverse_v5_5_t2v_api_v1_pixverse_v5_5_t2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PixverseV55T2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using Pixverse v5.5. Input: text prompt. Output: video. Use for: Pixverse v5.5 text-to-video."}},"/api/v1/pixverse-v5.5-i2v":{"post":{"tags":["Video: Image-to-Video"],"summary":"pixverse-v5.5-i2v","operationId":"pixverse_v55_i2v_api_v1_pixverse_v5_5_i2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PixverseV55I2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images using Pixverse v5.5. Input: image, text prompt. Output: video."}},"/api/v1/kling-v2.6-pro-t2v":{"post":{"tags":["Video: Text-to-Video"],"summary":"kling-v2.6-pro-t2v (balanced)","operationId":"kling_v26_pro_t2v_api_v1_kling_v2_6_pro_t2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingV26ProT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate professional videos from text using Kling v2.6 Pro. Input: text prompt. Output: video. Use for: professional video generation."}},"/api/v1/kling-v2.6-pro-i2v":{"post":{"tags":["Video: Image-to-Video"],"summary":"kling-v2.6-pro-i2v (balanced)","operationId":"kling_v26_pro_i2v_api_v1_kling_v2_6_pro_i2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingV26ProI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images into professional video using Kling v2.6 Pro. Input: image, text prompt. Output: video."}},"/api/v1/kling-v2-avatar-standard":{"post":{"tags":["Video: Avatars"],"summary":"kling-v2-avatar-standard (balanced)","operationId":"kling_v2_avatar_standard_api_v1_kling_v2_avatar_standard_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingV2AvatarStandardRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate AI avatar video using Kling v2 Avatar Standard. Input: avatar image, script. Output: talking avatar video."}},"/api/v1/kling-v2-avatar-pro":{"post":{"tags":["Video: Avatars"],"summary":"kling-v2-avatar-pro (best)","operationId":"kling_v2_avatar_pro_api_v1_kling_v2_avatar_pro_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingV2AvatarProRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate professional AI avatar video using Kling v2 Avatar Pro. Input: avatar image, script/audio. Output: high-quality talking avatar video."}},"/api/v1/wan2.2-spicy-image-to-video":{"post":{"tags":["Video: Edit & Effects"],"summary":"wan2.2-spicy-image-to-video","operationId":"wan22_spicy_image_to_video_api_v1_wan2_2_spicy_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan22SpicyI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images with dynamic/dramatic effects using Wan 2.2 Spicy. Input: image, motion prompt. Output: dynamic video."}},"/api/v1/wan2.2-spicy-video-extend":{"post":{"tags":["Video: Edit & Effects"],"summary":"wan2.2-spicy-video-extend","operationId":"wan22_spicy_video_extend_api_v1_wan2_2_spicy_video_extend_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan22SpicyExtendVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Extend videos with dynamic effects using Wan 2.2 Spicy. Input: video. Output: extended dynamic video."}},"/api/v1/minimax-voice-clone":{"post":{"tags":["Audio"],"summary":"minimax-voice-clone","operationId":"minimax_voice_clone_api_v1_minimax_voice_clone_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MinimxVoiceCloneRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Clone a voice from an audio sample using MiniMax. Input: audio sample. Output: cloned voice model. Use for: voice cloning, personalized TTS."}},"/api/v1/minimax-speech-2.6-hd":{"post":{"tags":["Audio"],"summary":"minimax-speech-2.6-hd (best)","operationId":"minimax_speech_26_hd_api_v1_minimax_speech_2_6_hd_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MinimaxSpeechHDRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate high-definition speech from text using MiniMax Speech 2.6 HD (TTS). Input: text, voice parameters. Output: HD audio. Use for: text-to-speech, voiceover, narration."}},"/api/v1/minimax-music-3.0":{"post":{"tags":["Audio"],"summary":"minimax-music-3.0 (balanced)","operationId":"minimax_music_3_0_api_v1_minimax_music_3_0_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MinimaxMusic3Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate a full song with vocals or an instrumental track from a prompt and lyrics using MiniMax Music 3.0. Input: prompt, lyrics, bitrate, sample rate, instrumental flag. Output: audio track. Use for: text-to-music, song generation, instrumental background music."}},"/api/v1/minimax-speech-2.6-turbo":{"post":{"tags":["Audio"],"summary":"minimax-speech-2.6-turbo (fast)","operationId":"minimax_speech_26_turbo_api_v1_minimax_speech_2_6_turbo_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MinimaxSpeechTurboRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate speech from text quickly using MiniMax Speech 2.6 Turbo (fast TTS). Input: text, voice parameters. Output: audio. Use for: fast text-to-speech."}},"/api/v1/gpt-image-1.5":{"post":{"tags":["Image: Text-to-Image"],"summary":"gpt-image-1.5 (best)","operationId":"gpt_image_15_api_v1_gpt_image_1_5_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GPTImage15Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate high-quality images from text using GPT Image 1.5. Input: text prompt. Output: image. Use for: OpenAI image generation, detailed realistic images."}},"/api/v1/wan2.6-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"wan2.6-image-to-video (balanced)","operationId":"wan26_image_to_video_api_v1_wan2_6_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan26I2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images using Wan 2.6 (24fps cinematic). Input: image, text prompt. Output: 24fps video."}},"/api/v1/wan2.6-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"wan2.6-text-to-video (balanced)","operationId":"wan26_text_to_video_api_v1_wan2_6_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan26T2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using Wan 2.6 (24fps, cinematic quality). Input: text prompt. Output: video. Use for: cinematic video generation."}},"/api/v1/kling-o1-standard-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"kling-o1-standard-image-to-video (fast)","operationId":"kling_o1_standard_image_to_video_api_v1_kling_o1_standard_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingO1StandardI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images using Kling O1 Standard. Input: image, text prompt. Output: video."}},"/api/v1/kling-o1-standard-reference-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"kling-o1-standard-reference-to-video","operationId":"kling_o1_standard_reference_to_video_api_v1_kling_o1_standard_reference_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingO1StandardReferenceRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate video from reference images using Kling O1 Standard. Input: reference images, text prompt. Output: video."}},"/api/v1/kling-o1-standard-video-edit":{"post":{"tags":["Video: Edit & Effects"],"summary":"kling-o1-standard-video-edit","operationId":"kling_o1_standard_video_edit_api_v1_kling_o1_standard_video_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingO1StandardVideoEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit video using Kling O1 Standard. Input: video, edit instruction. Output: edited video."}},"/api/v1/openrouter-vision":{"post":{"tags":["LLM / Multimodal"],"summary":"openrouter-vision","operationId":"openrouter_vision_api_v1_openrouter_vision_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OpenRouterVisionRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Analyze images with vision using OpenRouter (access to many models). Input: image, question or prompt. Output: text analysis. Use for: image understanding, visual Q&A."}},"/api/v1/any-llm-models":{"post":{"tags":["LLM / Multimodal"],"summary":"any-llm","operationId":"any_llm_models_api_v1_any_llm_models_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AnyLlmModelRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate text/answers using any LLM model. Input: text prompt, model selection. Output: text response. Use for: text generation, Q&A, creative writing, content creation."}},"/api/v1/seedance-v1.5-pro-t2v":{"post":{"tags":["Video: Text-to-Video"],"summary":"seedance-v1.5-pro-t2v (best)","operationId":"seedance_v15_pro_t2v_api_v1_seedance_v1_5_pro_t2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeedanceV15ProT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using Seedance v1.5 Pro (Dec 2025, 4.5B dual-branch, native audio+video sync, 1080p, multilingual lipsync). Input: text prompt. Output: 1080p video with audio. Use for: premium video ads, multilingual content."}},"/api/v1/seedance-v1.5-pro-i2v":{"post":{"tags":["Video: Image-to-Video"],"summary":"seedance-v1.5-pro-i2v (balanced)","operationId":"seedance_v15_pro_i2v_api_v1_seedance_v1_5_pro_i2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeedanceV15ProI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images using Seedance v1.5 Pro (Dec 2025, 4.5B, native audio+video sync, 1080p, multilingual). Input: image, text prompt. Output: 1080p video with audio."}},"/api/v1/seedance-v1.5-pro-t2v-fast":{"post":{"tags":["Video: Text-to-Video"],"summary":"seedance-v1.5-pro-t2v-fast (balanced)","operationId":"seedance_v15_pro_t2v_fast_api_v1_seedance_v1_5_pro_t2v_fast_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeedanceV15ProFastT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos quickly from text using Seedance v1.5 Pro Fast. Input: text prompt. Output: video. Use for: fast Seedance v1.5 generation."}},"/api/v1/seedance-v1.5-pro-i2v-fast":{"post":{"tags":["Video: Image-to-Video"],"summary":"seedance-v1.5-pro-i2v-fast (fast)","operationId":"seedance_v15_pro_i2v_fast_api_v1_seedance_v1_5_pro_i2v_fast_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeedanceV15ProFastI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images quickly using Seedance v1.5 Pro Fast. Input: image, text prompt. Output: video."}},"/api/v1/seedance-v1.5-pro-video-extend":{"post":{"tags":["Video: Edit & Effects"],"summary":"seedance-v1.5-pro-video-extend","operationId":"seedance_v15_pro_video_extend_api_v1_seedance_v1_5_pro_video_extend_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeedanceV15ProVideoExtendRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Extend videos using Seedance v1.5 Pro. Input: video. Output: extended video."}},"/api/v1/seedance-v1.5-pro-video-extend-fast":{"post":{"tags":["Video: Edit & Effects"],"summary":"seedance-v1.5-pro-video-extend-fast (fast)","operationId":"seedance_v15_pro_video_extend_fast_api_v1_seedance_v1_5_pro_video_extend_fast_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SeedanceV15ProVideoExtendFastRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Extend videos quickly using Seedance v1.5 Pro Fast. Input: video. Output: extended video."}},"/api/v1/kling-v2.6-pro-motion-control":{"post":{"tags":["Video: Image-to-Video"],"summary":"kling-v2.6-pro-motion-control","operationId":"kling_v26_pro_motion_control_api_v1_kling_v2_6_pro_motion_control_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingV26ProMotionControlRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images with motion control using Kling v2.6 Pro. Input: image, motion parameters. Output: video."}},"/api/v1/qwen-image-edit-2511":{"post":{"tags":["Image: Edit & Reference"],"summary":"qwen-image-edit-2511","operationId":"qwen_image_edit_2511_api_v1_qwen_image_edit_2511_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/QwenImageEdit2511Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images using Qwen 2511 image edit. Input: image, edit prompt. Output: edited image."}},"/api/v1/wan2.6-text-to-image":{"post":{"tags":["Image: Text-to-Image"],"summary":"wan2.6-text-to-image (balanced)","operationId":"wan26_text_to_image_api_v1_wan2_6_text_to_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan26T2IRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images from text using Wan 2.6 (24fps-class quality). Input: text prompt. Output: image. Use for: cinematic-quality image generation."}},"/api/v1/wan2.6-image-edit":{"post":{"tags":["Image: Edit & Reference"],"summary":"wan2.6-image-edit (balanced)","operationId":"wan26_image_edit_api_v1_wan2_6_image_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan26ImageEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images using Wan 2.6. Input: image, edit prompt. Output: edited image."}},"/api/v1/qwen-text-to-image-2512":{"post":{"tags":["Image: Text-to-Image"],"summary":"qwen-text-to-image-2512","operationId":"qwen_text_to_image_2512_api_v1_qwen_text_to_image_2512_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/QwenTextToImage2512Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images from text using Qwen 2512 model. Input: text prompt. Output: image. Use for: latest Qwen image generation."}},"/api/v1/gpt-image-1.5-edit":{"post":{"tags":["Image: Edit & Reference"],"summary":"gpt-image-1.5-edit","operationId":"gpt_image_15_edit_api_v1_gpt_image_1_5_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GPTImage15EditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images using GPT Image 1.5. Input: image, edit prompt. Output: edited image. Use for: OpenAI-powered image editing."}},"/api/v1/kling-v2.6-std-motion-control":{"post":{"tags":["Video: Image-to-Video"],"summary":"kling-v2.6-std-motion-control","operationId":"kling_v26_std_motion_control_api_v1_kling_v2_6_std_motion_control_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingV26StdMotionControlRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images with motion control using Kling v2.6 Standard. Input: image, motion parameters. Output: video."}},"/api/v1/grok-imagine-image-to-image":{"post":{"tags":["Image: Edit & Reference"],"summary":"grok-imagine-image-to-image","operationId":"grok_imagine_image_to_image_api_v1_grok_imagine_image_to_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GrokImagineI2IRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Transform images using Grok Imagine (xAI). Input: image, transformation prompt. Output: image. Use for: image transformation with xAI."}},"/api/v1/storyboard-projects":{"post":{"tags":["Video: Storyboard"],"summary":"Create Storyboard Project","description":"Create a new Storyboard Project (Series).","operationId":"create_storyboard_project_api_v1_storyboard_projects_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/StoryboardProjectCreate"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StoryboardProjectResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"get":{"tags":["Video: Storyboard"],"summary":"List Storyboard Projects","description":"List all Storyboard Projects for the authenticated user.","operationId":"list_storyboard_projects_api_v1_storyboard_projects_get","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/StoryboardProjectResponse"},"title":"Response List Storyboard Projects Api V1 Storyboard Projects Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/storyboard-projects/{id}":{"get":{"tags":["Video: Storyboard"],"summary":"Get Storyboard Project","description":"Get a Storyboard Project with its episodes.","operationId":"get_storyboard_project_api_v1_storyboard_projects__id__get","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","title":"Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Video: Storyboard"],"summary":"Delete Storyboard Project","description":"Delete a Storyboard Project and all its associated data.","operationId":"delete_storyboard_project_api_v1_storyboard_projects__id__delete","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","title":"Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/storyboard-projects/generate":{"post":{"tags":["Video: Storyboard"],"summary":"Generate Storyboard Project","description":"Generate a complete multi-episode storyboard project.","operationId":"generate_storyboard_project_api_v1_storyboard_projects_generate_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/StoryboardProjectGenerateRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/storyboard-projects/{id}/generate-scripts":{"post":{"tags":["Video: Storyboard"],"summary":"Generate Project Scripts","description":"Stage 2: Generate full scripts for all episodes in a project.","operationId":"generate_project_scripts_api_v1_storyboard_projects__id__generate_scripts_post","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","title":"Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/StoryboardStepRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StoryboardTaskResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/storyboard-projects/{id}/generate-library":{"post":{"tags":["Video: Storyboard"],"summary":"Generate Project Library","description":"Stage 3: Scan all episode scripts and build shared resource libraries (Characters, Outfits, Backgrounds).","operationId":"generate_project_library_api_v1_storyboard_projects__id__generate_library_post","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","title":"Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/StoryboardStepRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StoryboardTaskResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/storyboard-projects/{id}/generate-shots":{"post":{"tags":["Video: Storyboard"],"summary":"Generate Storyboard Project Shots","description":"Step 4: Generate shots for all episodes in a series project.","operationId":"generate_storyboard_project_shots_api_v1_storyboard_projects__id__generate_shots_post","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","title":"Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/StoryboardStepRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StoryboardTaskResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/storyboard-projects/{id}/generate-pdf":{"post":{"tags":["Video: Storyboard"],"summary":"Generate Project Pdf","description":"Generate consolidated PDF for a series project.","operationId":"generate_project_pdf_api_v1_storyboard_projects__id__generate_pdf_post","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","title":"Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/StoryboardStepRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StoryboardTaskResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/storyboard-projects/{id}/scripts":{"get":{"tags":["Video: Storyboard"],"summary":"Get Project Scripts","description":"Poll for script generation progress and results.","operationId":"get_project_scripts_api_v1_storyboard_projects__id__scripts_get","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","title":"Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/storyboard-projects/{id}/library":{"get":{"tags":["Video: Storyboard"],"summary":"Get Project Library","description":"Poll for character and background library generation.","operationId":"get_project_library_api_v1_storyboard_projects__id__library_get","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","title":"Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/storyboard-projects/{id}/shots":{"get":{"tags":["Video: Storyboard"],"summary":"Get Project Shots","description":"Poll for shot planning and image generation progress.","operationId":"get_project_shots_api_v1_storyboard_projects__id__shots_get","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","title":"Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/storyboard-projects/{id}/pdf":{"get":{"tags":["Video: Storyboard"],"summary":"Get Project Pdf Status","description":"Poll for PDF generation status.","operationId":"get_project_pdf_status_api_v1_storyboard_projects__id__pdf_get","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","title":"Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/ltx-2-19b-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"ltx-2-19b-image-to-video","operationId":"ltx_2_19b_image_to_video_api_v1_ltx_2_19b_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/LTX219BImageToVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images using LTX 2 19B (open-source). Input: image, text prompt. Output: video."}},"/api/v1/ltx-2-19b-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"ltx-2-19b-text-to-video","operationId":"ltx_2_19b_text_to_video_api_v1_ltx_2_19b_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/LTX219BTextToVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using LTX 2 19B (open-source). Input: text prompt. Output: video. Use for: open-source video generation."}},"/api/v1/veo3.1-4k-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"veo3.1-4k-video (best)","operationId":"veo31_4k_video_api_v1_veo3_1_4k_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Veo314KVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate 4K ultra-high-resolution videos using Google Veo 3.1 4K. Input: text prompt or image. Output: 4K video. Use for: premium 4K video production, broadcast quality."}},"/api/v1/add-image-watermark":{"post":{"tags":["Image: Enhance"],"summary":"add-image-watermark","operationId":"add_image_watermark_api_v1_add_image_watermark_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AddImageWatermarkRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Add watermark to images. Input: image, watermark text/image. Output: watermarked image. Use for: branding, copyright protection."}},"/api/v1/add-video-watermark":{"post":{"tags":["Video: Edit & Effects"],"summary":"add-video-watermark","operationId":"add_video_watermark_api_v1_add_video_watermark_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AddVideoWatermarkRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Add watermark to videos. Input: video, watermark text/image. Output: watermarked video. Use for: video branding, copyright."}},"/api/v1/flux-2-klein-4b":{"post":{"tags":["Image: Text-to-Image"],"summary":"flux-2-klein-4b (fast)","operationId":"flux_2_klein_4b_api_v1_flux_2_klein_4b_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Flux2Klein4BRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images in near-real-time using Flux 2 Klein 4B (sub-second). Input: text prompt. Output: image. Use for: real-time image generation, interactive applications, rapid iteration."}},"/api/v1/flux-2-klein-4b-edit":{"post":{"tags":["Image: Edit & Reference"],"summary":"flux-2-klein-4b-edit (fast)","operationId":"flux_2_klein_4b_edit_api_v1_flux_2_klein_4b_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Flux2Klein4BEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images in real-time using Flux 2 Klein 4B (sub-second editing). Input: image, edit prompt. Output: edited image. Use for: real-time image editing."}},"/api/v1/flux-2-klein-4b-turbo":{"post":{"tags":["Image: Text-to-Image"],"summary":"flux-2-klein-4b-turbo (fast)","operationId":"flux_2_klein_4b_turbo_api_v1_flux_2_klein_4b_turbo_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Flux2Klein4BTurboRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Ultra-fast image generation using Flux 2 Klein 4B Turbo. Input: text prompt. Output: image. Use for: fastest image generation at low cost."}},"/api/v1/flux-2-klein-4b-turbo-edit":{"post":{"tags":["Image: Edit & Reference"],"summary":"flux-2-klein-4b-turbo-edit (fast)","operationId":"flux_2_klein_4b_turbo_edit_api_v1_flux_2_klein_4b_turbo_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Flux2Klein4BTurboEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images ultra-fast using Flux 2 Klein 4B Turbo. Input: image, edit prompt. Output: edited image."}},"/api/v1/flux-2-klein-9b":{"post":{"tags":["Image: Text-to-Image"],"summary":"flux-2-klein-9b (fast)","operationId":"flux_2_klein_9b_api_v1_flux_2_klein_9b_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Flux2Klein9BRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images in sub-second speed using Flux 2 Klein 9B (larger, higher quality). Input: text prompt. Output: image. Use for: real-time high-quality generation, live applications."}},"/api/v1/flux-2-klein-9b-edit":{"post":{"tags":["Image: Edit & Reference"],"summary":"flux-2-klein-9b-edit (fast)","operationId":"flux_2_klein_9b_edit_api_v1_flux_2_klein_9b_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Flux2Klein9BEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images in real-time using Flux 2 Klein 9B (sub-second, higher quality). Input: image, edit prompt. Output: edited image."}},"/api/v1/flux-2-klein-9b-turbo":{"post":{"tags":["Image: Text-to-Image"],"summary":"flux-2-klein-9b-turbo (fast)","operationId":"flux_2_klein_9b_turbo_api_v1_flux_2_klein_9b_turbo_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Flux2Klein9BTurboRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Ultra-fast image generation using Flux 2 Klein 9B Turbo. Input: text prompt. Output: image. Use for: fastest possible generation at 9B quality level."}},"/api/v1/flux-2-klein-9b-turbo-edit":{"post":{"tags":["Image: Edit & Reference"],"summary":"flux-2-klein-9b-turbo-edit (fast)","operationId":"flux_2_klein_9b_turbo_edit_api_v1_flux_2_klein_9b_turbo_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Flux2Klein9BTurboEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images ultra-fast using Flux 2 Klein 9B Turbo. Input: image, edit prompt. Output: edited image."}},"/api/v1/flux-2-klein-4b-text-to-image-lora":{"post":{"tags":["Other"],"summary":"flux-2-klein-4b-text-to-image-lora","operationId":"flux_2_klein_4b_text_to_image_lora_api_v1_flux_2_klein_4b_text_to_image_lora_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Flux2Klein4BT2ILoraRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images with custom LoRA adapters using Flux 2 Klein 4B. Input: text prompt, list of LoRA weights. Output: image. Use for: stylized or character-specific image generation, fine-tuned aesthetics."}},"/api/v1/flux-2-klein-9b-text-to-image-lora":{"post":{"tags":["Other"],"summary":"flux-2-klein-9b-text-to-image-lora","operationId":"flux_2_klein_9b_text_to_image_lora_api_v1_flux_2_klein_9b_text_to_image_lora_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Flux2Klein9BT2ILoraRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate higher-quality images with custom LoRA adapters using Flux 2 Klein 9B. Input: text prompt, list of LoRA weights. Output: image. Use for: high-fidelity stylized generation, premium LoRA-driven outputs."}},"/api/v1/flux-2-klein-4b-edit-lora":{"post":{"tags":["Other"],"summary":"flux-2-klein-4b-edit-lora","operationId":"flux_2_klein_4b_edit_lora_api_v1_flux_2_klein_4b_edit_lora_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Flux2Klein4BEditLoraRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images with custom LoRA adapters using Flux 2 Klein 4B. Input: reference images, edit prompt, list of LoRA weights. Output: edited image. Use for: style-conditioned image edits."}},"/api/v1/flux-2-klein-9b-edit-lora":{"post":{"tags":["Other"],"summary":"flux-2-klein-9b-edit-lora","operationId":"flux_2_klein_9b_edit_lora_api_v1_flux_2_klein_9b_edit_lora_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Flux2Klein9BEditLoraRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images with custom LoRA adapters using Flux 2 Klein 9B for higher detail retention. Input: reference images, edit prompt, list of LoRA weights. Output: edited image. Use for: premium style-conditioned edits."}},"/api/v1/qwen-image-text-to-image-lora":{"post":{"tags":["Other"],"summary":"qwen-image-text-to-image-lora","operationId":"qwen_image_text_to_image_lora_api_v1_qwen_image_text_to_image_lora_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/QwenImageT2ILoraRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate high-resolution images with custom LoRA adapters using Qwen-Image 20B MMDiT. Input: text prompt, list of LoRAs, size. Output: image. Use for: stylized image generation, fine-tuned aesthetics, and character consistency."}},"/api/v1/qwen-image-text-to-image-2512-lora":{"post":{"tags":["Other"],"summary":"qwen-image-text-to-image-2512-lora","operationId":"qwen_image_text_to_image_2512_lora_api_v1_qwen_image_text_to_image_2512_lora_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/QwenImageT2I2512LoraRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate high-resolution images with custom LoRA adapters using Qwen-Image 2512 LoRA model. Input: text prompt, list of LoRAs, aspect_ratio. Output: image. Use for: enhanced 2512 resolution stylized image generation, fine-tuned aesthetics, and character consistency."}},"/api/v1/storyboard-characters/{character_id}/regenerate":{"post":{"tags":["Video: Storyboard"],"summary":"Regenerate Character","description":"Regenerate a character's reference images based on a text description.","operationId":"regenerate_character_api_v1_storyboard_characters__character_id__regenerate_post","parameters":[{"name":"character_id","in":"path","required":true,"schema":{"type":"integer","title":"Character Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegenerateCharacterRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegenerateCharacterResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/storyboard-shots/add":{"post":{"tags":["Video: Storyboard"],"summary":"Add Shot","description":"Add a new shot at a specific position in a scene.","operationId":"add_shot_api_v1_storyboard_shots_add_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AddShotRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShotOperationResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/storyboard-scenes/add":{"post":{"tags":["Video: Storyboard"],"summary":"Add Scene","description":"Add a new scene at a specific position in an episode.","operationId":"add_scene_api_v1_storyboard_scenes_add_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AddSceneRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/storyboard-shots/{shot_id}/regenerate":{"post":{"tags":["Video: Storyboard"],"summary":"Regenerate Shot","description":"Regenerate an existing shot with optional description changes.","operationId":"regenerate_shot_api_v1_storyboard_shots__shot_id__regenerate_post","parameters":[{"name":"shot_id","in":"path","required":true,"schema":{"type":"integer","title":"Shot Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegenerateShotRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ShotOperationResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/storyboard-episodes/add":{"post":{"tags":["Video: Storyboard"],"summary":"Add Episode","description":"Add a new episode at a specific position in a project.","operationId":"add_episode_api_v1_storyboard_episodes_add_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AddEpisodeRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EpisodeOperationResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/storyboard-shots/{shot_id}":{"delete":{"tags":["Video: Storyboard"],"summary":"Delete Shot","description":"Delete a shot and renumber remaining shots in the scene.","operationId":"delete_shot_api_v1_storyboard_shots__shot_id__delete","parameters":[{"name":"shot_id","in":"path","required":true,"schema":{"type":"integer","title":"Shot Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DeleteResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/storyboard-scenes/{scene_id}":{"delete":{"tags":["Video: Storyboard"],"summary":"Delete Scene","description":"Delete a scene and renumber remaining scenes in the episode.","operationId":"delete_scene_api_v1_storyboard_scenes__scene_id__delete","parameters":[{"name":"scene_id","in":"path","required":true,"schema":{"type":"integer","title":"Scene Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DeleteResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/storyboard-episodes/{episode_id}":{"delete":{"tags":["Video: Storyboard"],"summary":"Delete Episode","description":"Delete an episode and renumber remaining episodes in the project.","operationId":"delete_episode_api_v1_storyboard_episodes__episode_id__delete","parameters":[{"name":"episode_id","in":"path","required":true,"schema":{"type":"integer","title":"Episode Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DeleteResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/z-image-base":{"post":{"tags":["Image: Text-to-Image"],"summary":"z-image-base (budget)","operationId":"z_image_base_api_v1_z_image_base_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ZImageBaseRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images from text using Z Image Base model. Input: text prompt. Output: image. Use for: baseline image generation."}},"/api/v1/ltx-2-19b-lipsync":{"post":{"tags":["Video: Lipsync"],"summary":"ltx-2-19b-lipsync","operationId":"ltx_2_19b_lipsync_api_v1_ltx_2_19b_lipsync_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Ltx219BLipsyncRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate lipsync video using LTX 2 19B. Input: image or video, audio. Output: lip-synced video."}},"/api/v1/kling-v3.0-pro-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"kling-v3.0-pro-image-to-video (best)","operationId":"kling_v30_pro_image_to_video_api_v1_kling_v3_0_pro_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingV30ProI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images into best-quality video using Kling v3.0 Pro (15s, native audio, multi-shot storyboarding). Input: image, text prompt. Output: up to 15-second video with audio. Use for: premium product animation, brand video, character animation."}},"/api/v1/kling-v3.0-pro-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"kling-v3.0-pro-text-to-video (best)","operationId":"kling_v30_pro_text_to_video_api_v1_kling_v3_0_pro_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingV30ProT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate best-quality videos from text using Kling v3.0 Pro (15s, native audio, multi-shot storyboarding). Input: text prompt. Output: up to 15-second video with audio. Use for: high-quality video ads, product videos, brand content."}},"/api/v1/kling-v3.0-standard-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"kling-v3.0-standard-image-to-video (balanced)","operationId":"kling_v30_standard_image_to_video_api_v1_kling_v3_0_standard_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingV30StandardI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images into video using Kling v3.0 Standard (faster, native audio). Input: image, text prompt. Output: video with audio. Use for: cost-effective Kling v3 animation."}},"/api/v1/kling-v3.0-standard-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"kling-v3.0-standard-text-to-video (balanced)","operationId":"kling_v30_standard_text_to_video_api_v1_kling_v3_0_standard_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingV30StandardT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate quality videos from text using Kling v3.0 Standard (faster, native audio). Input: text prompt. Output: video with audio. Use for: cost-effective Kling v3 generation."}},"/api/v1/kling-v3.0-4k-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"kling-v3.0-4k-image-to-video (best)","operationId":"kling_v30_4k_image_to_video_api_v1_kling_v3_0_4k_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingV304kI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate a still image to 4K video using Kling v3.0 4K. Input: image_url + prompt. Output: 4K video. Use for: ultra-high-resolution photo-to-video."}},"/api/v1/kling-v3.0-4k-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"kling-v3.0-4k-text-to-video (best)","operationId":"kling_v30_4k_text_to_video_api_v1_kling_v3_0_4k_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingV304kT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate native 4K videos from text using Kling 3.0 4K (Kuaishou, Feb 4 2026 release — first model to output native 4K at 60fps, not upscaled). Multi-shot support, native audio sync, up to 15-second video. Input: text prompt. Output: 4K 60fps video. Use for: ultra-high-resolution production video, hero shots, commercial work where 4K is required."}},"/api/v1/kling-v3.0-omni-standard-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"kling-v3.0-omni-standard-text-to-video (balanced)","operationId":"kling_v3_omni_standard_t2v_api_v1_kling_v3_0_omni_standard_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingV3OmniStandardT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using Kling 3.0 Omni Standard (balanced cost/quality variant of the Omni line, O1 architecture). Input: text prompt, aspect_ratio, duration (3-15s), optional generate_audio. Output: video. Use for: balanced-cost Kling video, paired Omni Edit workflows."}},"/api/v1/kling-v3.0-omni-standard-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"kling-v3.0-omni-standard-image-to-video (balanced)","operationId":"kling_v3_omni_standard_i2v_api_v1_kling_v3_0_omni_standard_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingV3OmniStandardI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate one or more reference images with Kling v3.0 Omni Standard. Input: prompt + images_list (1-4 images, <<<image_N>>> syntax in prompt). Output: video. Use for: balanced reference-driven photo-to-video."}},"/api/v1/kling-v3.0-omni-pro-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"kling-v3.0-omni-pro-text-to-video (best)","operationId":"kling_v3_omni_pro_t2v_api_v1_kling_v3_0_omni_pro_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingV3OmniProT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using Kling 3.0 Omni Pro (built on the Kling O1 architecture — the 'Omni' line specializes in reference-driven generation and is the recommended pick when you want consistency with external assets, though at T2V there's no reference input). Input: text prompt, aspect_ratio, duration (3-15s), optional generate_audio. Output: video, optional native audio sync. Use for: premium Kling video, narrative shots, generation paired with Omni Edit workflows that modify existing video."}},"/api/v1/kling-v3.0-omni-pro-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"kling-v3.0-omni-pro-image-to-video (best)","operationId":"kling_v3_omni_pro_i2v_api_v1_kling_v3_0_omni_pro_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingV3OmniProI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate one or more reference images with Kling v3.0 Omni Pro. Input: prompt + images_list (1-4 images, addressed in prompt as <<<image_1>>> … <<<image_4>>>; if not referenced, <<<image_1>>> is auto-prepended). Output: video. Use for: multi-reference video, character-locked photo-to-video, premium reference-driven animation."}},"/api/v1/kling-v3.0-omni-4k-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"kling-v3.0-omni-4k-text-to-video (best)","operationId":"kling_v3_omni_4k_t2v_api_v1_kling_v3_0_omni_4k_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingV3Omni4kT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate native 4K videos from text using Kling 3.0 Omni 4K (Omni-line flagship resolution). Combines native 4K 60fps output with the Omni reference-driven pipeline. Input: text prompt, aspect_ratio, duration (3-15s). Output: 4K video. Use for: ultra-high-resolution premium video with the Omni pipeline."}},"/api/v1/kling-v3.0-omni-4k-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"kling-v3.0-omni-4k-image-to-video (best)","operationId":"kling_v3_omni_4k_i2v_api_v1_kling_v3_0_omni_4k_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingV3Omni4kI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate one or more reference images to 4K with Kling v3.0 Omni 4K. Input: prompt + images_list (1-4 images, <<<image_N>>> syntax in prompt). Output: 4K video. Use for: ultra-high-resolution multi-reference animation."}},"/api/v1/kling-v3-turbo-standard-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"kling-v3-turbo-standard-image-to-video (fast)","operationId":"kling_v3_turbo_standard_image_to_video_api_v1_kling_v3_turbo_standard_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingV3TurboStandardI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate a single image into a fast video using Kling v3 Turbo Standard (720p, 3-15s). No audio generation. Input: image_url, text prompt, duration. Output: video. Use for: rapid image animation, social media clips, cost-efficient photo-to-video."}},"/api/v1/kling-v3-turbo-pro-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"kling-v3-turbo-pro-image-to-video (balanced)","operationId":"kling_v3_turbo_pro_image_to_video_api_v1_kling_v3_turbo_pro_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingV3TurboProI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate a single image into a fast premium video using Kling v3 Turbo Pro (1080p, 3-15s). No audio generation. Input: image_url, text prompt, duration. Output: video. Use for: rapid premium image animation, high-resolution social media clips, photo-to-video."}},"/api/v1/kling-v3-turbo-standard-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"kling-v3-turbo-standard-text-to-video (fast)","operationId":"kling_v3_turbo_standard_text_to_video_api_v1_kling_v3_turbo_standard_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingV3TurboStandardT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate fast videos from text using Kling v3 Turbo Standard (720p, 3-15s, 16:9/9:16/1:1). No audio generation. Input: text prompt, aspect_ratio, duration. Output: video. Use for: high-throughput video generation, rapid iteration, cost-efficient content creation."}},"/api/v1/kling-v3-turbo-pro-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"kling-v3-turbo-pro-text-to-video (balanced)","operationId":"kling_v3_turbo_pro_text_to_video_api_v1_kling_v3_turbo_pro_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingV3TurboProT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate premium fast videos from text using Kling v3 Turbo Pro (1080p, 3-15s, 16:9/9:16/1:1). No audio generation. Input: text prompt, aspect_ratio, duration. Output: video. Use for: high-throughput video generation, high-resolution content creation, rapid premium iteration."}},"/api/v1/seedream-5.0":{"post":{"tags":["Image: Text-to-Image"],"summary":"bytedance-seedream-v5.0 (best)","operationId":"seedream_5lite_image_api_v1_seedream_5_0_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedream5LiteRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images from text using Seedream v5.0 Lite with CoT reasoning and web search integration, up to 14 reference images. Input: text prompt, reference images. Output: image. Use for: reference-guided generation, complex reasoning tasks."}},"/api/v1/seedream-5.0-edit":{"post":{"tags":["Image: Edit & Reference"],"summary":"bytedance-seedream-v5.0-edit","operationId":"seedream_5lite_edit_api_v1_seedream_5_0_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedream5LiteEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images using Seedream v5.0 Lite with CoT reasoning. Input: image, edit prompt, optional references. Output: edited image. Use for: reasoning-guided image editing."}},"/api/v1/seedream-5.0-pro":{"post":{"tags":["Image: Text-to-Image"],"summary":"bytedance-seedream-5.0-pro (best)","operationId":"seedream_5pro_image_api_v1_seedream_5_0_pro_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedream5ProRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images from text using Seedream 5.0 Pro, ByteDance's flagship model with deeper visual reasoning and up to 2K output. Input: text prompt. Output: image. Use for: high-fidelity production generation, precise typography."}},"/api/v1/seedream-5.0-pro-edit":{"post":{"tags":["Image: Edit & Reference"],"summary":"bytedance-seedream-5.0-pro-edit (best)","operationId":"seedream_5pro_edit_api_v1_seedream_5_0_pro_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedream5ProEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images using Seedream 5.0 Pro with deeper visual reasoning and up to 2K output. Input: one or more reference images, edit prompt. Output: edited image. Use for: high-fidelity production image editing."}},"/api/v1/bytedance-seedream-5.0-pro-layer":{"post":{"tags":["Image: Edit & Reference"],"summary":"bytedance-seedream-5.0-pro-layer (best)","operationId":"bytedance_seedream_50_pro_layer_api_v1_bytedance_seedream_5_0_pro_layer_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedream5ProLayerDecompositionRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Decompose a composite raster image into separate, clean multi-layer image assets using ByteDance Seedream 5 Pro Layer Decomposition. Input: source image URL, optional prompt. Output: array of isolated layer images (PNG/JPEG). Use for: image layer decomposition, background removal, graphic element extraction, text layer separation."}},"/api/v1/nano-banana-2":{"post":{"tags":["Image: Text-to-Image"],"summary":"nano-banana-2 (best)","operationId":"nano_banana_2_api_v1_nano_banana_2_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NanoBanana2Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images using Nano Banana 2 with 5-character and 14-object consistency, up to 4K. Input: text prompt, optional references. Output: 4K image. Use for: character/object consistent generation, high-resolution images."}},"/api/v1/nano-banana-2-edit":{"post":{"tags":["Image: Edit & Reference"],"summary":"nano-banana-2-edit (balanced)","operationId":"nano_banana_2_edit_api_v1_nano_banana_2_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NanoBanana2EditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images using Nano Banana 2 with character/object consistency. Input: image, edit instruction. Output: edited image. Use for: consistent character editing."}},"/api/v1/seedance-v2.0-t2v":{"post":{"tags":["Video: Text-to-Video"],"summary":"sd-2-t2v (best)","operationId":"seedance_v20_t2v_api_v1_seedance_v2_0_t2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2T2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using Seedance 2 (Feb 2026, #1 I2V benchmark, up to 15s, native audio). Input: text prompt. Output: up to 15-second video. Use for: benchmark-quality video generation, long-form video."}},"/api/v1/seedance-v2.0-i2v":{"post":{"tags":["Video: Image-to-Video"],"summary":"sd-2-i2v (best)","operationId":"seedance_v20_i2v_api_v1_seedance_v2_0_i2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2I2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images using Seedance 2 (Feb 2026, #1 I2V benchmark, multimodal 9-image+3-video input, 15s). Input: image, text prompt. Output: up to 15-second video. Use for: best-in-class image animation, long video creation."}},"/api/v1/seedance-2.0-t2v-480p":{"post":{"tags":["Video: Text-to-Video"],"summary":"sd-2-t2v-480p (budget)","operationId":"seedance_20_t2v_480p_api_v1_seedance_2_0_t2v_480p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2T2V480pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate 480p videos from text using Seedance 2 at lower resolution. Input: text prompt. Output: 480p video. Use for: cost-effective Seedance 2 generation."}},"/api/v1/seedance-2.0-i2v-480p":{"post":{"tags":["Video: Image-to-Video"],"summary":"sd-2-i2v-480p (budget)","operationId":"seedance_20_i2v_480p_api_v1_seedance_2_0_i2v_480p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2I2V480pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images using Seedance 2 at 480p. Input: image, text prompt. Output: 480p video."}},"/api/v1/seedance-v2.0-video-edit":{"post":{"tags":["Video: Edit & Effects"],"summary":"sd-2-video-edit","operationId":"seedance_v20_video_edit_api_v1_seedance_v2_0_video_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2VideoEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit videos using Seedance 2. Input: video, edit instruction. Output: edited video."}},"/api/v1/seedance-v2.0-extend":{"post":{"tags":["Video: Edit & Effects"],"summary":"sd-2-extend","operationId":"seedance_v20_extend_api_v1_seedance_v2_0_extend_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2ExtendRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Extend videos using Seedance 2. Input: video. Output: extended video."}},"/api/v1/seedance-2-vip-extend":{"post":{"tags":["Video: Edit & Effects"],"summary":"sd-2-vip-extend (best)","operationId":"sd_2_vip_extend_api_v1_seedance_2_vip_extend_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2ExtendRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Extend a previously-generated Seedance 2 video by appending continued motion (SD-2 VIP, 720p output). Input: request_id of a completed Seedance 2 generation + optional prompt, reference images, video clips, audio clips (referenced in the prompt via @image2…@image9, @video1…@video3, @audio1…@audio3 — @image1 is automatically the source video's last frame). Output: extended video. Use for: turning short clips into longer takes, continuing scenes; must be called after another Seedance 2 endpoint to get a request_id."}},"/api/v1/sd-2-vip-extend":{"post":{"tags":["Video: Edit & Effects"],"summary":"sd-2-vip-extend (best)","operationId":"sd_2_vip_extend_api_v1_sd_2_vip_extend_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2ExtendRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Extend a previously-generated Seedance 2 video by appending continued motion (SD-2 VIP, 720p output). Input: request_id of a completed Seedance 2 generation + optional prompt, reference images, video clips, audio clips (referenced in the prompt via @image2…@image9, @video1…@video3, @audio1…@audio3 — @image1 is automatically the source video's last frame). Output: extended video. Use for: turning short clips into longer takes, continuing scenes; must be called after another Seedance 2 endpoint to get a request_id."}},"/api/v1/seedance-2-vip-extend-1080p":{"post":{"tags":["Video: Edit & Effects"],"summary":"sd-2-vip-extend-1080p (best)","operationId":"sd_2_vip_extend_1080p_api_v1_seedance_2_vip_extend_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2ExtendRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Extend a previously-generated Seedance 2 video at 1080p (SD-2 VIP). Input: request_id of a completed Seedance 2 generation + optional prompt, reference images, video clips, audio clips (same @image/@video/@audio prompt-reference syntax as sd-2-vip-extend). Output: extended 1080p video. Use for: continuing scenes at full-HD; requires a prior Seedance 2 request_id."}},"/api/v1/sd-2-vip-extend-1080p":{"post":{"tags":["Video: Edit & Effects"],"summary":"sd-2-vip-extend-1080p (best)","operationId":"sd_2_vip_extend_1080p_api_v1_sd_2_vip_extend_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2ExtendRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Extend a previously-generated Seedance 2 video at 1080p (SD-2 VIP). Input: request_id of a completed Seedance 2 generation + optional prompt, reference images, video clips, audio clips (same @image/@video/@audio prompt-reference syntax as sd-2-vip-extend). Output: extended 1080p video. Use for: continuing scenes at full-HD; requires a prior Seedance 2 request_id."}},"/api/v1/ai-captions":{"post":{"tags":["Utilities"],"summary":"Ai Captions","operationId":"ai_captions_api_v1_ai_captions_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AICaptionsRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/qwen-image-2.0":{"post":{"tags":["Image: Text-to-Image"],"summary":"qwen-image-2.0","operationId":"qwen_image_20_api_v1_qwen_image_2_0_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/QwenImage20Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images from text using Qwen Image 2.0. Input: text prompt. Output: image. Use for: creative image generation, Alibaba AI generation."}},"/api/v1/qwen-image-2.0-edit":{"post":{"tags":["Image: Edit & Reference"],"summary":"qwen-image-2.0-edit","operationId":"qwen_image_20_edit_api_v1_qwen_image_2_0_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/QwenImage20EditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images using Qwen Image 2.0. Input: image, edit prompt. Output: edited image."}},"/api/v1/qwen-image-2.0-pro":{"post":{"tags":["Image: Text-to-Image"],"summary":"qwen-image-2.0-pro","operationId":"qwen_image_20_pro_api_v1_qwen_image_2_0_pro_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/QwenImage20Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate professional-quality images from text using Qwen Image 2.0 Pro. Input: text prompt. Output: image. Use for: high-quality Qwen image generation."}},"/api/v1/qwen-image-2.0-pro-edit":{"post":{"tags":["Image: Edit & Reference"],"summary":"qwen-image-2.0-pro-edit (balanced)","operationId":"qwen_image_20_pro_edit_api_v1_qwen_image_2_0_pro_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/QwenImage20EditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images professionally using Qwen Image 2.0 Pro. Input: image, edit prompt. Output: edited image."}},"/api/v1/ltx-2.3-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"ltx-2.3-text-to-video (best)","operationId":"ltx_23_text_to_video_api_v1_ltx_2_3_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/LTX23TextToVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate 4K 50fps videos from text using LTX 2.3 (March 2026, native audio, open-source). Input: text prompt. Output: 4K 50fps video. Use for: high-framerate video generation, 4K content."}},"/api/v1/ltx-2.3-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"ltx-2.3-image-to-video (best)","operationId":"ltx_23_image_to_video_api_v1_ltx_2_3_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/LTX23ImageToVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images using LTX 2.3 (March 2026, 4K 50fps, native audio). Input: image, text prompt. Output: 4K 50fps video."}},"/api/v1/ltx-2.5-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"ltx-2.5-text-to-video (best)","operationId":"ltx_25_text_to_video_api_v1_ltx_2_5_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/LTX25TextToVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate high-fidelity synchronized audio-video from text using LTX 2.5 (720p/1080p/2K/4K up to 20s). Input: text prompt. Output: video with audio. Use for: cinematic video, ads, social content, production workflows."}},"/api/v1/ltx-2.5-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"ltx-2.5-image-to-video (best)","operationId":"ltx_25_image_to_video_api_v1_ltx_2_5_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/LTX25ImageToVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images into high-fidelity audio-video using LTX 2.5 with optional last-frame guidance (720p/1080p/2K/4K up to 20s). Input: image, prompt, optional last_image. Output: video with audio."}},"/api/v1/ltx-2.3-lipsync":{"post":{"tags":["Video: Lipsync"],"summary":"ltx-2.3-lipsync (best)","operationId":"ltx_23_lipsync_api_v1_ltx_2_3_lipsync_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/LTX23LipsyncRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate lipsync video using LTX 2.3 (native lipsync support). Input: image or video, audio. Output: 4K lip-synced video."}},"/api/v1/volcengine-video-to-video-lip-sync":{"post":{"tags":["Video: Lipsync"],"summary":"volcengine-video-to-video-lip-sync (balanced)","operationId":"volcengine_video_to_video_lip_sync_api_v1_volcengine_video_to_video_lip_sync_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/VolcengineVideoToVideoLipSyncRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Sync a video's lip movements to a new target audio track using Volcengine. Input: video_url, audio_url, mode ('lite' or 'basic'). Output: lip-synced MP4 video at 25fps. Use for: dubbing, re-voicing, redubbing existing footage into a new language."}},"/api/v1/omnihuman-1-5":{"post":{"tags":["Video: Avatars"],"summary":"omnihuman-1-5 (balanced)","operationId":"omnihuman_1_5_api_v1_omnihuman_1_5_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OmnihumanRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate talking head video from portrait image and audio using OmniHuman 1.5. Input: portrait image, audio. Output: talking head video. Use for: virtual presenter, avatar video, lipsync animation."}},"/api/v1/ltx-2.3-video-extend":{"post":{"tags":["Video: Edit & Effects"],"summary":"ltx-2.3-video-extend","operationId":"ltx_23_video_extend_api_v1_ltx_2_3_video_extend_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/LTX23VideoExtendRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Extend videos using LTX 2.3. Input: video. Output: extended video."}},"/api/v1/kling-v3.0-std-motion-control":{"post":{"tags":["Video: Image-to-Video"],"summary":"kling-v3.0-std-motion-control","operationId":"kling_v30_std_motion_control_api_v1_kling_v3_0_std_motion_control_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingV30StdMotionControlRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images with camera motion control using Kling v3.0 Standard. Input: image, motion parameters. Output: video with controlled motion. Use for: camera movement control, pan/tilt/zoom videos."}},"/api/v1/kling-v3.0-pro-motion-control":{"post":{"tags":["Video: Image-to-Video"],"summary":"kling-v3.0-pro-motion-control","operationId":"kling_v30_pro_motion_control_api_v1_kling_v3_0_pro_motion_control_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KlingV30ProMotionControlRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images with professional camera motion control using Kling v3.0 Pro. Input: image, motion parameters. Output: video with controlled camera motion."}},"/api/v1/photo-pack":{"post":{"tags":["Image: Enhance"],"summary":"photo-pack","operationId":"photo_pack_api_v1_photo_pack_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PhotoPackRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate a pack of diverse photos from single input. Input: image or prompt. Output: multiple photo variations. Use for: content batch generation, photo variety."}},"/api/v1/openai-sora-2-pro-characters":{"post":{"tags":["Video: Storyboard"],"summary":"Sora 2 Characters Pro","operationId":"sora_2_characters_pro_api_v1_openai_sora_2_pro_characters_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Sora2CharactersProRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.0-omni-reference":{"post":{"tags":["Video: Image-to-Video"],"summary":"sd-2-omni-reference (best)","operationId":"seedance_2_omni_reference_api_v1_seedance_2_0_omni_reference_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2OmniReferenceRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate video with multiple modality references using Seedance 2 Omni (9 images + 3 videos + 3 audio). Input: multiple images/videos/audio, text prompt. Output: video. Use for: multi-reference video synthesis."}},"/api/v1/seedance-2.0-omni-reference-480p":{"post":{"tags":["Video: Edit & Effects"],"summary":"seedance-2.0-omni-reference-480p (budget)","operationId":"seedance_2_omni_reference_480p_api_v1_seedance_2_0_omni_reference_480p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2OmniReference480pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"480p Seedance 2.0 omni-mode video. Input: prompt + optional reference media (images, audio). Output: 480p video. Use for: budget multi-reference generation."}},"/api/v1/seedance-2-omni-reference-train":{"post":{"tags":["Video: Edit & Effects"],"summary":"Omni Reference Train Character","operationId":"omni_reference_train_character_api_v1_seedance_2_omni_reference_train_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OmniReferenceTrainCharacterRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"seedance-2.5-text-to-video (balanced)","operationId":"seedance_2_5_text_to_video_api_v1_seedance_2_5_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25T2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate video from a text prompt with Seedance 2.5. Input: prompt (required), duration (4-30s), aspect_ratio, seed. Output: 720p video. Use for: cinematic text-to-video generation, prompt-only drafts."}},"/api/v1/seedance-2.5-text-to-video-480p":{"post":{"tags":["Video: Text-to-Video"],"summary":"Seedance 2 5 Text To Video 480P","operationId":"seedance_2_5_text_to_video_480p_api_v1_seedance_2_5_text_to_video_480p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25T2V480pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"seedance-2.5-image-to-video (balanced)","operationId":"seedance_2_5_image_to_video_api_v1_seedance_2_5_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25I2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate a single image into video with Seedance 2.5. Input: prompt, image_url (required), duration (4-30s), aspect_ratio, seed. Output: 720p video. Use for: photo animation, product video from a single image."}},"/api/v1/seedance-2.5-image-to-video-480p":{"post":{"tags":["Video: Image-to-Video"],"summary":"Seedance 2 5 Image To Video 480P","operationId":"seedance_2_5_image_to_video_480p_api_v1_seedance_2_5_image_to_video_480p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25I2V480pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-first-last-frame":{"post":{"tags":["Video: Edit & Effects"],"summary":"seedance-2.5-first-last-frame (balanced)","operationId":"seedance_2_5_first_last_frame_api_v1_seedance_2_5_first_last_frame_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25FirstLastRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate a video transition between two images with Seedance 2.5. Input: prompt, images_list (required, exactly 2: [first_frame, last_frame]), duration (4-30s), aspect_ratio, seed. Output: 720p video. Use for: keyframe-driven scene transitions, before/after animation."}},"/api/v1/seedance-2.5-first-last-frame-480p":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 First Last Frame 480P","operationId":"seedance_2_5_first_last_frame_480p_api_v1_seedance_2_5_first_last_frame_480p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25FirstLast480pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-omni-reference":{"post":{"tags":["Video: Edit & Effects"],"summary":"seedance-2.5-omni-reference (balanced)","operationId":"seedance_2_5_omni_reference_api_v1_seedance_2_5_omni_reference_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25OmniReferenceRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate video guided by multiple reference images, videos, and audio with Seedance 2.5. Input: prompt (required) + optional images_list (up to 20), videos_list (up to 6), audios_list (up to 6), duration (4-30s), aspect_ratio, seed. Output: 720p video. Use for: style-consistent multi-reference video, camera-motion transfer, audio-guided mood."}},"/api/v1/seedance-2.5-omni-reference-480p":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Omni Reference 480P","operationId":"seedance_2_5_omni_reference_480p_api_v1_seedance_2_5_omni_reference_480p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25OmniReference480pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-text-to-video-1080p":{"post":{"tags":["Video: Text-to-Video"],"summary":"Seedance 2 5 Text To Video 1080P","operationId":"seedance_2_5_text_to_video_1080p_api_v1_seedance_2_5_text_to_video_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25T2V1080pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-text-to-video-4k":{"post":{"tags":["Video: Text-to-Video"],"summary":"Seedance 2 5 Text To Video 4K","operationId":"seedance_2_5_text_to_video_4k_api_v1_seedance_2_5_text_to_video_4k_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25T2V4kRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-image-to-video-1080p":{"post":{"tags":["Video: Image-to-Video"],"summary":"Seedance 2 5 Image To Video 1080P","operationId":"seedance_2_5_image_to_video_1080p_api_v1_seedance_2_5_image_to_video_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25I2V1080pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-image-to-video-4k":{"post":{"tags":["Video: Image-to-Video"],"summary":"Seedance 2 5 Image To Video 4K","operationId":"seedance_2_5_image_to_video_4k_api_v1_seedance_2_5_image_to_video_4k_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25I2V4kRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-first-last-frame-1080p":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 First Last Frame 1080P","operationId":"seedance_2_5_first_last_frame_1080p_api_v1_seedance_2_5_first_last_frame_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25FirstLast1080pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-first-last-frame-4k":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 First Last Frame 4K","operationId":"seedance_2_5_first_last_frame_4k_api_v1_seedance_2_5_first_last_frame_4k_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25FirstLast4kRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-omni-reference-1080p":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Omni Reference 1080P","operationId":"seedance_2_5_omni_reference_1080p_api_v1_seedance_2_5_omni_reference_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25OmniReference1080pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-omni-reference-4k":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Omni Reference 4K","operationId":"seedance_2_5_omni_reference_4k_api_v1_seedance_2_5_omni_reference_4k_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25OmniReference4kRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-video-edit":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Video Edit","operationId":"seedance_2_5_video_edit_api_v1_seedance_2_5_video_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25VideoEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-video-edit-480p":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Video Edit 480P","operationId":"seedance_2_5_video_edit_480p_api_v1_seedance_2_5_video_edit_480p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25VideoEdit480pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-video-edit-1080p":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Video Edit 1080P","operationId":"seedance_2_5_video_edit_1080p_api_v1_seedance_2_5_video_edit_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25VideoEdit1080pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-video-edit-4k":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Video Edit 4K","operationId":"seedance_2_5_video_edit_4k_api_v1_seedance_2_5_video_edit_4k_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25VideoEdit4kRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-video-extend":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Video Extend","operationId":"seedance_2_5_video_extend_api_v1_seedance_2_5_video_extend_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25VideoExtendRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-video-extend-480p":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Video Extend 480P","operationId":"seedance_2_5_video_extend_480p_api_v1_seedance_2_5_video_extend_480p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25VideoExtend480pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-video-extend-1080p":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Video Extend 1080P","operationId":"seedance_2_5_video_extend_1080p_api_v1_seedance_2_5_video_extend_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25VideoExtend1080pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-video-extend-4k":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Video Extend 4K","operationId":"seedance_2_5_video_extend_4k_api_v1_seedance_2_5_video_extend_4k_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25VideoExtend4kRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-spicy-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"Seedance 2 5 Spicy Text To Video","operationId":"seedance_2_5_spicy_text_to_video_api_v1_seedance_2_5_spicy_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25T2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-spicy-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"Seedance 2 5 Spicy Image To Video","operationId":"seedance_2_5_spicy_image_to_video_api_v1_seedance_2_5_spicy_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25I2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-intl-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"Seedance 2 5 Intl Text To Video","operationId":"seedance_2_5_intl_text_to_video_api_v1_seedance_2_5_intl_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25T2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-intl-text-to-video-480p":{"post":{"tags":["Video: Text-to-Video"],"summary":"Seedance 2 5 Intl Text To Video 480P","operationId":"seedance_2_5_intl_text_to_video_480p_api_v1_seedance_2_5_intl_text_to_video_480p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25T2V480pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-spicy-text-to-video-480p":{"post":{"tags":["Video: Text-to-Video"],"summary":"Seedance 2 5 Spicy Text To Video 480P","operationId":"seedance_2_5_spicy_text_to_video_480p_api_v1_seedance_2_5_spicy_text_to_video_480p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25T2V480pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-intl-text-to-video-1080p":{"post":{"tags":["Video: Text-to-Video"],"summary":"Seedance 2 5 Intl Text To Video 1080P","operationId":"seedance_2_5_intl_text_to_video_1080p_api_v1_seedance_2_5_intl_text_to_video_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25T2V1080pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-spicy-text-to-video-1080p":{"post":{"tags":["Video: Text-to-Video"],"summary":"Seedance 2 5 Spicy Text To Video 1080P","operationId":"seedance_2_5_spicy_text_to_video_1080p_api_v1_seedance_2_5_spicy_text_to_video_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25T2V1080pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-intl-text-to-video-4k":{"post":{"tags":["Video: Text-to-Video"],"summary":"Seedance 2 5 Intl Text To Video 4K","operationId":"seedance_2_5_intl_text_to_video_4k_api_v1_seedance_2_5_intl_text_to_video_4k_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25T2V4kRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-spicy-text-to-video-4k":{"post":{"tags":["Video: Text-to-Video"],"summary":"Seedance 2 5 Spicy Text To Video 4K","operationId":"seedance_2_5_spicy_text_to_video_4k_api_v1_seedance_2_5_spicy_text_to_video_4k_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25T2V4kRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-intl-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"Seedance 2 5 Intl Image To Video","operationId":"seedance_2_5_intl_image_to_video_api_v1_seedance_2_5_intl_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25I2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-intl-image-to-video-480p":{"post":{"tags":["Video: Image-to-Video"],"summary":"Seedance 2 5 Intl Image To Video 480P","operationId":"seedance_2_5_intl_image_to_video_480p_api_v1_seedance_2_5_intl_image_to_video_480p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25I2V480pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-spicy-image-to-video-480p":{"post":{"tags":["Video: Image-to-Video"],"summary":"Seedance 2 5 Spicy Image To Video 480P","operationId":"seedance_2_5_spicy_image_to_video_480p_api_v1_seedance_2_5_spicy_image_to_video_480p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25I2V480pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-intl-image-to-video-1080p":{"post":{"tags":["Video: Image-to-Video"],"summary":"Seedance 2 5 Intl Image To Video 1080P","operationId":"seedance_2_5_intl_image_to_video_1080p_api_v1_seedance_2_5_intl_image_to_video_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25I2V1080pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-spicy-image-to-video-1080p":{"post":{"tags":["Video: Image-to-Video"],"summary":"Seedance 2 5 Spicy Image To Video 1080P","operationId":"seedance_2_5_spicy_image_to_video_1080p_api_v1_seedance_2_5_spicy_image_to_video_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25I2V1080pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-intl-image-to-video-4k":{"post":{"tags":["Video: Image-to-Video"],"summary":"Seedance 2 5 Intl Image To Video 4K","operationId":"seedance_2_5_intl_image_to_video_4k_api_v1_seedance_2_5_intl_image_to_video_4k_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25I2V4kRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-spicy-image-to-video-4k":{"post":{"tags":["Video: Image-to-Video"],"summary":"Seedance 2 5 Spicy Image To Video 4K","operationId":"seedance_2_5_spicy_image_to_video_4k_api_v1_seedance_2_5_spicy_image_to_video_4k_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25I2V4kRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-intl-first-last-frame":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Intl First Last Frame","operationId":"seedance_2_5_intl_first_last_frame_api_v1_seedance_2_5_intl_first_last_frame_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25FirstLastRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-spicy-first-last-frame":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Spicy First Last Frame","operationId":"seedance_2_5_spicy_first_last_frame_api_v1_seedance_2_5_spicy_first_last_frame_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25FirstLastRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-intl-first-last-frame-480p":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Intl First Last Frame 480P","operationId":"seedance_2_5_intl_first_last_frame_480p_api_v1_seedance_2_5_intl_first_last_frame_480p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25FirstLast480pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-spicy-first-last-frame-480p":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Spicy First Last Frame 480P","operationId":"seedance_2_5_spicy_first_last_frame_480p_api_v1_seedance_2_5_spicy_first_last_frame_480p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25FirstLast480pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-intl-first-last-frame-1080p":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Intl First Last Frame 1080P","operationId":"seedance_2_5_intl_first_last_frame_1080p_api_v1_seedance_2_5_intl_first_last_frame_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25FirstLast1080pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-spicy-first-last-frame-1080p":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Spicy First Last Frame 1080P","operationId":"seedance_2_5_spicy_first_last_frame_1080p_api_v1_seedance_2_5_spicy_first_last_frame_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25FirstLast1080pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-intl-first-last-frame-4k":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Intl First Last Frame 4K","operationId":"seedance_2_5_intl_first_last_frame_4k_api_v1_seedance_2_5_intl_first_last_frame_4k_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25FirstLast4kRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-spicy-first-last-frame-4k":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Spicy First Last Frame 4K","operationId":"seedance_2_5_spicy_first_last_frame_4k_api_v1_seedance_2_5_spicy_first_last_frame_4k_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25FirstLast4kRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-intl-omni-reference":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Intl Omni Reference","operationId":"seedance_2_5_intl_omni_reference_api_v1_seedance_2_5_intl_omni_reference_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25OmniReferenceRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-spicy-omni-reference":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Spicy Omni Reference","operationId":"seedance_2_5_spicy_omni_reference_api_v1_seedance_2_5_spicy_omni_reference_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25OmniReferenceRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-intl-omni-reference-480p":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Intl Omni Reference 480P","operationId":"seedance_2_5_intl_omni_reference_480p_api_v1_seedance_2_5_intl_omni_reference_480p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25OmniReference480pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-spicy-omni-reference-480p":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Spicy Omni Reference 480P","operationId":"seedance_2_5_spicy_omni_reference_480p_api_v1_seedance_2_5_spicy_omni_reference_480p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25OmniReference480pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-intl-omni-reference-1080p":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Intl Omni Reference 1080P","operationId":"seedance_2_5_intl_omni_reference_1080p_api_v1_seedance_2_5_intl_omni_reference_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25OmniReference1080pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-spicy-omni-reference-1080p":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Spicy Omni Reference 1080P","operationId":"seedance_2_5_spicy_omni_reference_1080p_api_v1_seedance_2_5_spicy_omni_reference_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25OmniReference1080pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-intl-omni-reference-4k":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Intl Omni Reference 4K","operationId":"seedance_2_5_intl_omni_reference_4k_api_v1_seedance_2_5_intl_omni_reference_4k_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25OmniReference4kRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-spicy-omni-reference-4k":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Spicy Omni Reference 4K","operationId":"seedance_2_5_spicy_omni_reference_4k_api_v1_seedance_2_5_spicy_omni_reference_4k_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25OmniReference4kRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-intl-video-edit":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Intl Video Edit","operationId":"seedance_2_5_intl_video_edit_api_v1_seedance_2_5_intl_video_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25VideoEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-spicy-video-edit":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Spicy Video Edit","operationId":"seedance_2_5_spicy_video_edit_api_v1_seedance_2_5_spicy_video_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25VideoEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-intl-video-edit-480p":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Intl Video Edit 480P","operationId":"seedance_2_5_intl_video_edit_480p_api_v1_seedance_2_5_intl_video_edit_480p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25VideoEdit480pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-spicy-video-edit-480p":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Spicy Video Edit 480P","operationId":"seedance_2_5_spicy_video_edit_480p_api_v1_seedance_2_5_spicy_video_edit_480p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25VideoEdit480pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-intl-video-edit-1080p":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Intl Video Edit 1080P","operationId":"seedance_2_5_intl_video_edit_1080p_api_v1_seedance_2_5_intl_video_edit_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25VideoEdit1080pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-spicy-video-edit-1080p":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Spicy Video Edit 1080P","operationId":"seedance_2_5_spicy_video_edit_1080p_api_v1_seedance_2_5_spicy_video_edit_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25VideoEdit1080pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-intl-video-edit-4k":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Intl Video Edit 4K","operationId":"seedance_2_5_intl_video_edit_4k_api_v1_seedance_2_5_intl_video_edit_4k_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25VideoEdit4kRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-spicy-video-edit-4k":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Spicy Video Edit 4K","operationId":"seedance_2_5_spicy_video_edit_4k_api_v1_seedance_2_5_spicy_video_edit_4k_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25VideoEdit4kRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-intl-video-extend":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Intl Video Extend","operationId":"seedance_2_5_intl_video_extend_api_v1_seedance_2_5_intl_video_extend_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25VideoExtendRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-spicy-video-extend":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Spicy Video Extend","operationId":"seedance_2_5_spicy_video_extend_api_v1_seedance_2_5_spicy_video_extend_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25VideoExtendRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-intl-video-extend-480p":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Intl Video Extend 480P","operationId":"seedance_2_5_intl_video_extend_480p_api_v1_seedance_2_5_intl_video_extend_480p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25VideoExtend480pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-spicy-video-extend-480p":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Spicy Video Extend 480P","operationId":"seedance_2_5_spicy_video_extend_480p_api_v1_seedance_2_5_spicy_video_extend_480p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25VideoExtend480pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-intl-video-extend-1080p":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Intl Video Extend 1080P","operationId":"seedance_2_5_intl_video_extend_1080p_api_v1_seedance_2_5_intl_video_extend_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25VideoExtend1080pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-spicy-video-extend-1080p":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Spicy Video Extend 1080P","operationId":"seedance_2_5_spicy_video_extend_1080p_api_v1_seedance_2_5_spicy_video_extend_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25VideoExtend1080pRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-intl-video-extend-4k":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Intl Video Extend 4K","operationId":"seedance_2_5_intl_video_extend_4k_api_v1_seedance_2_5_intl_video_extend_4k_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25VideoExtend4kRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2.5-spicy-video-extend-4k":{"post":{"tags":["Video: Edit & Effects"],"summary":"Seedance 2 5 Spicy Video Extend 4K","operationId":"seedance_2_5_spicy_video_extend_4k_api_v1_seedance_2_5_spicy_video_extend_4k_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance25VideoExtend4kRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/video-combiner":{"post":{"tags":["Video: Edit & Effects"],"summary":"video-combiner","operationId":"video_combiner_api_v1_video_combiner_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/VideoCombinerRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Combine/merge multiple videos into one. Input: multiple videos. Output: combined video. Use for: video stitching, compilation, montage creation."}},"/api/v1/pixverse-v6-t2v":{"post":{"tags":["Video: Text-to-Video"],"summary":"pixverse-v6-t2v (best)","operationId":"pixverse_v6_t2v_api_v1_pixverse_v6_t2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PixverseV6T2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using Pixverse v6 (March 2026, 15s, 1080p, 20+ cinematic cameras, multi-shot, native audio). Input: text prompt. Output: 1080p 15-second video. Use for: cinematic video with camera controls, multi-shot videos."}},"/api/v1/pixverse-v6-i2v":{"post":{"tags":["Video: Image-to-Video"],"summary":"pixverse-v6-i2v (best)","operationId":"pixverse_v6_i2v_api_v1_pixverse_v6_i2v_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PixverseV6I2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images using Pixverse v6 (15s, 1080p, 20+ camera controls, multi-shot, native audio). Input: image, text prompt. Output: 1080p 15-second video."}},"/api/v1/pixverse-v6-extend":{"post":{"tags":["Video: Edit & Effects"],"summary":"pixverse-v6-extend","operationId":"pixverse_v6_extend_api_v1_pixverse_v6_extend_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PixverseV6ExtendRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Extend/lengthen existing video using Pixverse v6. Input: video. Output: extended video. Use for: video extension, making videos longer."}},"/api/v1/pixverse-v6-transition":{"post":{"tags":["Video: Image-to-Video"],"summary":"pixverse-v6-transition","operationId":"pixverse_v6_transition_api_v1_pixverse_v6_transition_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PixverseV6TransitionRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Create transition video between two images using Pixverse v6. Input: start image, end image, text prompt. Output: transition video. Use for: scene transitions, morphing effects."}},"/api/v1/wan2.7-text-to-image":{"post":{"tags":["Image: Text-to-Image"],"summary":"wan2.7-text-to-image (balanced)","operationId":"wan27_text_to_image_api_v1_wan2_7_text_to_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan27T2IRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate images from text using Wan 2.7 (March 2026, thinking mode). Input: text prompt. Output: image. Use for: state-of-the-art image generation, complex compositions."}},"/api/v1/wan2.7-image-edit":{"post":{"tags":["Image: Edit & Reference"],"summary":"wan2.7-image-edit (balanced)","operationId":"wan27_image_edit_api_v1_wan2_7_image_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan27ImageEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images using Wan 2.7 (March 2026, thinking mode). Input: image, edit prompt. Output: edited image. Use for: state-of-the-art image editing."}},"/api/v1/wan2.7-text-to-image-pro":{"post":{"tags":["Image: Text-to-Image"],"summary":"wan2.7-text-to-image-pro (best)","operationId":"wan27_text_to_image_pro_api_v1_wan2_7_text_to_image_pro_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan27T2IRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate pro-quality images from text using Wan 2.7 Pro. Input: text prompt. Output: 4K image. Use for: 4K image generation, professional-grade output."}},"/api/v1/wan2.7-image-edit-pro":{"post":{"tags":["Image: Edit & Reference"],"summary":"wan2.7-image-edit-pro (best)","operationId":"wan27_image_edit_pro_api_v1_wan2_7_image_edit_pro_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan27ImageEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit images using Wan 2.7 Pro. Input: image, edit prompt. Output: pro-quality edited image. Use for: highest quality image editing."}},"/api/v1/wan2.7-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"wan2.7-text-to-video (best)","operationId":"wan27_text_to_video_api_v1_wan2_7_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan27T2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using Wan 2.7 (March 2026, thinking mode, 60fps native, 4K Pro, audio sync). Input: text prompt. Output: video. Use for: state-of-the-art video generation, 60fps videos."}},"/api/v1/wan2.7-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"wan2.7-image-to-video (best)","operationId":"wan27_image_to_video_api_v1_wan2_7_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan27I2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images using Wan 2.7 (March 2026, 60fps, thinking mode, 4K). Input: image, text prompt. Output: 60fps video. Use for: 60fps animation, state-of-the-art image-to-video."}},"/api/v1/wan2.7-image-to-video-spicy":{"post":{"tags":["Video: Image-to-Video"],"summary":"wan2.7-image-to-video-spicy (balanced)","operationId":"wan27_image_to_video_spicy_api_v1_wan2_7_image_to_video_spicy_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WanSpicyI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images using Wan 2.7 Spicy — bold, high-contrast, high-motion video with optional audio-guided generation. Input: image, text prompt. Output: video. Use for: bold/dramatic image-to-video."}},"/api/v1/wan2.6-image-to-video-spicy":{"post":{"tags":["Video: Image-to-Video"],"summary":"wan2.6-image-to-video-spicy (balanced)","operationId":"wan26_image_to_video_spicy_api_v1_wan2_6_image_to_video_spicy_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WanSpicyI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images using Wan 2.6 Spicy — bold, high-contrast, high-motion video with optional audio-guided generation. Input: image, text prompt. Output: video. Use for: bold/dramatic image-to-video."}},"/api/v1/wan2.7-reference-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"wan2.7-reference-to-video","operationId":"wan27_reference_to_video_api_v1_wan2_7_reference_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan27R2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate video from reference images using Wan 2.7. Input: reference images, text prompt. Output: video."}},"/api/v1/wan2.7-video-extend":{"post":{"tags":["Video: Edit & Effects"],"summary":"wan2.7-video-extend","operationId":"wan27_video_extend_api_v1_wan2_7_video_extend_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan27VideoExtendRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Extend videos using Wan 2.7. Input: video. Output: extended video. Use for: making videos longer."}},"/api/v1/wan2.7-video-edit":{"post":{"tags":["Video: Edit & Effects"],"summary":"wan2.7-video-edit","operationId":"wan27_video_edit_api_v1_wan2_7_video_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan27VideoEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit videos using Wan 2.7 (March 2026, thinking mode). Input: video, edit instruction. Output: edited video. Use for: AI video editing."}},"/api/v1/wan3.0-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"wan3.0-text-to-video (best)","operationId":"wan30_text_to_video_api_v1_wan3_0_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan30T2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate video with synchronized audio from text using Wan 3.0 (thinking mode, up to 1080p, 2-30s). Input: text prompt. Output: video with audio. Use for: state-of-the-art text-to-video with sound."}},"/api/v1/wan3.0-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"wan3.0-image-to-video (best)","operationId":"wan30_image_to_video_api_v1_wan3_0_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan30I2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate an image into video with synchronized audio using Wan 3.0 (thinking mode, optional end-frame, up to 1080p, 2-30s). Input: image, text prompt. Output: video with audio. Use for: state-of-the-art image-to-video with sound."}},"/api/v1/wan3.0-reference-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"wan3.0-reference-to-video (best)","operationId":"wan30_reference_to_video_api_v1_wan3_0_reference_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan30R2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate video with synchronized audio from up to 10 reference images, 5 reference videos, and 5 reference audios using Wan 3.0. Input: reference images/videos/audios, text prompt. Output: video with audio. Use for: character/style-consistent video generation."}},"/api/v1/wan3.0-prime-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"wan3.0-prime-text-to-video (best)","operationId":"wan30_prime_text_to_video_api_v1_wan3_0_prime_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan30T2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate premium higher-fidelity video with synchronized audio from text using Wan 3.0 Prime (thinking mode, up to 1080p, 2-30s). Input: text prompt. Output: video with audio. Use for: premium text-to-video with sound."}},"/api/v1/wan3.0-prime-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"wan3.0-prime-image-to-video (best)","operationId":"wan30_prime_image_to_video_api_v1_wan3_0_prime_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan30I2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate an image into premium higher-fidelity video with synchronized audio using Wan 3.0 Prime (thinking mode, optional end-frame, up to 1080p, 2-30s). Input: image, text prompt. Output: video with audio. Use for: premium image-to-video with sound."}},"/api/v1/wan3.0-prime-reference-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"wan3.0-prime-reference-to-video (best)","operationId":"wan30_prime_reference_to_video_api_v1_wan3_0_prime_reference_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan30R2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate premium higher-fidelity video with synchronized audio from up to 10 reference images, 5 reference videos, and 5 reference audios using Wan 3.0 Prime. Input: reference images/videos/audios, text prompt. Output: video with audio. Use for: premium character/style-consistent video generation."}},"/api/v1/wan3.0-spicy-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"wan3.0-spicy-text-to-video (balanced)","operationId":"wan30_spicy_text_to_video_api_v1_wan3_0_spicy_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan30T2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate a bold, high-contrast, high-motion video with synchronized audio from text using Wan 3.0 Spicy (thinking mode, up to 1080p, 2-30s). Input: text prompt. Output: video with audio. Use for: bold/dramatic text-to-video with sound."}},"/api/v1/wan3.0-spicy-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"wan3.0-spicy-image-to-video (balanced)","operationId":"wan30_spicy_image_to_video_api_v1_wan3_0_spicy_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan30I2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate an image into a bold, high-contrast, high-motion video with synchronized audio using Wan 3.0 Spicy (thinking mode, optional end-frame, up to 1080p, 2-30s). Input: image, text prompt. Output: video with audio. Use for: bold/dramatic image-to-video with sound."}},"/api/v1/wan3.0-spicy-reference-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"wan3.0-spicy-reference-to-video (balanced)","operationId":"wan30_spicy_reference_to_video_api_v1_wan3_0_spicy_reference_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Wan30R2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate a bold, high-contrast, high-motion video with synchronized audio from up to 10 reference images, 5 reference videos, and 5 reference audios using Wan 3.0 Spicy. Input: reference images/videos/audios, text prompt. Output: video with audio. Use for: bold/dramatic character/style-consistent video generation."}},"/api/v1/seedance-2-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"seedance-2-text-to-video (balanced)","operationId":"seedance_2_text_to_video_api_v1_seedance_2_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2PiapiT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using ByteDance Seedance 2 (balanced 480-720p). Input: text prompt. Output: video. Use for: cost-effective video generation, social-media-format clips, prototyping."}},"/api/v1/seedance-2-text-to-video-fast":{"post":{"tags":["Video: Text-to-Video"],"summary":"seedance-2-text-to-video-fast (fast)","operationId":"seedance_2_text_to_video_fast_api_v1_seedance_2_text_to_video_fast_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2PiapiT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using Seedance 2 Fast (optimized for speed). Input: text prompt. Output: video, lower latency. Use for: rapid iteration, draft video generation."}},"/api/v1/seedance-2-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"seedance-2-image-to-video (balanced)","operationId":"seedance_2_image_to_video_api_v1_seedance_2_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2PiapiI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate a still image with Seedance 2 (balanced 480-720p). Input: prompt + images_list (1 image = start frame; 2-9 = reference via @image1…@image9). Output: video. Use for: cost-effective image animation, photo-to-video prototyping, multi-reference video generation."}},"/api/v1/seedance-2-image-to-video-fast":{"post":{"tags":["Video: Image-to-Video"],"summary":"seedance-2-image-to-video-fast (fast)","operationId":"seedance_2_image_to_video_fast_api_v1_seedance_2_image_to_video_fast_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2PiapiI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate a still image with Seedance 2 Fast. Input: prompt + images_list (1 = start frame; 2-9 = @image1…@image9). Output: video, lower latency. Use for: rapid image-to-video iteration."}},"/api/v1/seedance-2-omni-reference-no-video":{"post":{"tags":["Video: Edit & Effects"],"summary":"seedance-2-omni-reference-no-video (balanced)","operationId":"seedance_2_omni_reference_no_video_api_v1_seedance_2_omni_reference_no_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2PiapiOmniRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate a video using Seedance 2 omni mode (no source video). Input: prompt (required) + optional images_list (up to 9), audio_files (up to 3), aspect_ratio, duration. Reference media in prompt via @image1…@image9, @audio1…@audio3, or @character:<request_id> for a pre-registered Seedance 2 character. Output: video. Use for: character-locked video generation when you already have a character_id, multi-reference video, ambient-audio video."}},"/api/v1/seedance-2-omni-reference-no-video-fast":{"post":{"tags":["Video: Edit & Effects"],"summary":"seedance-2-omni-reference-no-video-fast (fast)","operationId":"seedance_2_omni_reference_no_video_fast_api_v1_seedance_2_omni_reference_no_video_fast_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2PiapiOmniRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Fast Seedance 2 omni-mode video. Same input shape as seedance-2-omni-reference-no-video (prompt + optional images/audio + @-references). Output: video, lower latency. Use for: rapid iteration on omni-mode generation."}},"/api/v1/seedance-2-first-last-frame":{"post":{"tags":["Video: Edit & Effects"],"summary":"seedance-2-first-last-frame (balanced)","operationId":"seedance_2_first_last_frame_api_v1_seedance_2_first_last_frame_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2PiapiFirstLastRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate a video from a start frame (and optional last frame) using Seedance 2. Input: prompt + images_list (1 image = start only, 2 images = start + last for guided interpolation). Output: video. Use for: smooth transitions, morph effects, before/after animation, controlled start-frame video."}},"/api/v1/seedance-2-first-last-frame-fast":{"post":{"tags":["Video: Edit & Effects"],"summary":"seedance-2-first-last-frame-fast (fast)","operationId":"seedance_2_first_last_frame_fast_api_v1_seedance_2_first_last_frame_fast_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2PiapiFirstLastRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Fast Seedance 2 first/last-frame variant. Input: prompt + images_list (1 = start only, 2 = start+last). Output: video, lower latency. Use for: rapid morph/transition prototyping."}},"/api/v1/happy-horse-1-text-to-video-1080p":{"post":{"tags":["Video: Text-to-Video"],"summary":"happy-horse-1-text-to-video-1080p (best)","operationId":"happy_horse_1_text_to_video_1080p_api_v1_happy_horse_1_text_to_video_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/HappyHorse1T2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate 1080p videos from text using HappyHorse 1.0 (Alibaba's open-source 15B-param unified Transformer; #1 on Artificial Analysis Video Arena at release). Native joint audio+video generation in a single forward pass — video frames and synchronized dialogue/ambient sound/Foley produced together, not dubbed. Multilingual lip-sync across 7 languages (EN, ZH, JA, KO, DE, FR, Cantonese). ~38s typical generation. Input: text prompt. Output: 1080p video with synced audio. Use for: cinematic generation with native sound, multilingual talking-head video, narrative shots where dialogue must lip-sync, premium video quality."}},"/api/v1/happy-horse-1-image-to-video-1080p":{"post":{"tags":["Video: Image-to-Video"],"summary":"happy-horse-1-image-to-video-1080p (best)","operationId":"happy_horse_1_image_to_video_1080p_api_v1_happy_horse_1_image_to_video_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/HappyHorse1I2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate a still image to 1080p video using Happy Horse 1 (Veo3-class, premium tier). Input: images_list (exactly 1 image — the start frame), optional prompt guiding motion. Output: 1080p video. Use for: cinematic photo-to-video, premium image animation, narrative shots from a hero still."}},"/api/v1/happy-horse-1-text-to-video-720p":{"post":{"tags":["Video: Text-to-Video"],"summary":"happy-horse-1-text-to-video-720p (balanced)","operationId":"happy_horse_1_text_to_video_720p_api_v1_happy_horse_1_text_to_video_720p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/HappyHorse1T2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate 720p videos from text using HappyHorse 1.0 at the cheaper resolution tier. Same joint audio+video + 7-language lip-sync as the 1080p variant, lower output resolution and cost. Input: text prompt. Output: 720p video with synced audio. Use for: cost-effective cinematic generation, drafts before promoting hero shots to 1080p."}},"/api/v1/happy-horse-1-image-to-video-720p":{"post":{"tags":["Video: Image-to-Video"],"summary":"happy-horse-1-image-to-video-720p (balanced)","operationId":"happy_horse_1_image_to_video_720p_api_v1_happy_horse_1_image_to_video_720p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/HappyHorse1I2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate a still image to 720p video using Happy Horse 1 (cheaper resolution tier). Input: images_list (exactly 1 image — the start frame), optional prompt. Output: 720p video. Use for: cost-effective cinematic animation."}},"/api/v1/happy-horse-1-reference-to-video-1080p":{"post":{"tags":["Video: Edit & Effects"],"summary":"happy-horse-1-reference-to-video-1080p (best)","operationId":"happy_horse_1_reference_to_video_1080p_api_v1_happy_horse_1_reference_to_video_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/HappyHorse1RefToVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate 1080p video from text + 1-9 reference images with Happy Horse 1. Input: prompt + images_list (1-9 reference images, ≥400px, ≤10 MB each). Output: 1080p video featuring the reference subject(s). Use for: cinematic character-locked video, narrative shots with consistent identity across multiple references."}},"/api/v1/happy-horse-1-reference-to-video-720p":{"post":{"tags":["Video: Edit & Effects"],"summary":"happy-horse-1-reference-to-video-720p (balanced)","operationId":"happy_horse_1_reference_to_video_720p_api_v1_happy_horse_1_reference_to_video_720p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/HappyHorse1RefToVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate 720p video from text + 1-9 reference images with Happy Horse 1 (cheaper). Input: prompt + images_list (1-9 reference images). Output: 720p video. Use for: cost-effective character-locked video."}},"/api/v1/happy-horse-1-video-edit-1080p":{"post":{"tags":["Video: Edit & Effects"],"summary":"happy-horse-1-video-edit-1080p (best)","operationId":"happy_horse_1_video_edit_1080p_api_v1_happy_horse_1_video_edit_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/HappyHorse1VideoEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit an existing 1080p video using Happy Horse 1. Input: prompt (edit instruction) + video_url (3-60s, ≤100MB) + optional images_list (up to 5 reference images) + audio_setting ('auto' or 'origin'). Output: 1080p edited video. Use for: scene modification, style-shift on existing footage, reference-guided video editing."}},"/api/v1/happy-horse-1-video-edit-720p":{"post":{"tags":["Video: Edit & Effects"],"summary":"happy-horse-1-video-edit-720p (balanced)","operationId":"happy_horse_1_video_edit_720p_api_v1_happy_horse_1_video_edit_720p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/HappyHorse1VideoEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit an existing 720p video using Happy Horse 1 (cheaper). Input: prompt + video_url + optional images_list (up to 5) + audio_setting. Output: 720p edited video. Use for: cost-effective video editing."}},"/api/v1/happy-horse-1.1-text-to-video-1080p":{"post":{"tags":["Video: Text-to-Video"],"summary":"Happy Horse 1 1 Text To Video 1080P","operationId":"happy_horse_1_1_text_to_video_1080p_api_v1_happy_horse_1_1_text_to_video_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/HappyHorse11T2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/happy-horse-1.1-image-to-video-1080p":{"post":{"tags":["Video: Image-to-Video"],"summary":"Happy Horse 1 1 Image To Video 1080P","operationId":"happy_horse_1_1_image_to_video_1080p_api_v1_happy_horse_1_1_image_to_video_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/HappyHorse11I2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/happy-horse-1.1-text-to-video-720p":{"post":{"tags":["Video: Text-to-Video"],"summary":"Happy Horse 1 1 Text To Video 720P","operationId":"happy_horse_1_1_text_to_video_720p_api_v1_happy_horse_1_1_text_to_video_720p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/HappyHorse11T2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/happy-horse-1.1-image-to-video-720p":{"post":{"tags":["Video: Image-to-Video"],"summary":"Happy Horse 1 1 Image To Video 720P","operationId":"happy_horse_1_1_image_to_video_720p_api_v1_happy_horse_1_1_image_to_video_720p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/HappyHorse11I2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/happy-horse-1.1-reference-to-video-1080p":{"post":{"tags":["Video: Edit & Effects"],"summary":"Happy Horse 1 1 Reference To Video 1080P","operationId":"happy_horse_1_1_reference_to_video_1080p_api_v1_happy_horse_1_1_reference_to_video_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/HappyHorse11RefToVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/happy-horse-1.1-reference-to-video-720p":{"post":{"tags":["Video: Edit & Effects"],"summary":"Happy Horse 1 1 Reference To Video 720P","operationId":"happy_horse_1_1_reference_to_video_720p_api_v1_happy_horse_1_1_reference_to_video_720p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/HappyHorse11RefToVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/happy-horse-1.1-video-edit-1080p":{"post":{"tags":["Video: Edit & Effects"],"summary":"Happy Horse 1 1 Video Edit 1080P","operationId":"happy_horse_1_1_video_edit_1080p_api_v1_happy_horse_1_1_video_edit_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/HappyHorse11VideoEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/happy-horse-1.1-video-edit-720p":{"post":{"tags":["Video: Edit & Effects"],"summary":"Happy Horse 1 1 Video Edit 720P","operationId":"happy_horse_1_1_video_edit_720p_api_v1_happy_horse_1_1_video_edit_720p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/HappyHorse11VideoEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2-vip-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"seedance-2-vip-text-to-video (best)","operationId":"seedance_2_vip_text_to_video_api_v1_seedance_2_vip_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2PiapiT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using Seedance 2 VIP (premium quality tier). Input: text prompt. Output: high-quality video. Use for: production-grade video, marketing reels, hero shots."}},"/api/v1/seedance-2-vip-text-to-video-fast":{"post":{"tags":["Video: Text-to-Video"],"summary":"seedance-2-vip-text-to-video-fast (fast)","operationId":"seedance_2_vip_text_to_video_fast_api_v1_seedance_2_vip_text_to_video_fast_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2PiapiT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using Seedance 2 VIP Fast (premium + optimized speed). Input: text prompt. Output: high-quality video, lower latency. Use for: time-sensitive premium video generation."}},"/api/v1/seedance-2-vip-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"seedance-2-vip-image-to-video (best)","operationId":"seedance_2_vip_image_to_video_api_v1_seedance_2_vip_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2PiapiI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate a still image with Seedance 2 VIP (premium tier). Input: prompt + images_list (1 = start frame; 2-9 = @image1…@image9). Output: high-quality video. Use for: production-grade image animation, multi-reference premium generation."}},"/api/v1/seedance-2-vip-image-to-video-fast":{"post":{"tags":["Video: Image-to-Video"],"summary":"seedance-2-vip-image-to-video-fast (fast)","operationId":"seedance_2_vip_image_to_video_fast_api_v1_seedance_2_vip_image_to_video_fast_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2PiapiI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate a still image with Seedance 2 VIP Fast. Input: prompt + images_list (1 = start frame; 2-9 = @image1…@image9). Output: premium video, lower latency. Use for: rapid premium image animation."}},"/api/v1/seedance-2-spicy-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"seedance-2-spicy-text-to-video (best)","operationId":"seedance_2_spicy_text_to_video_api_v1_seedance_2_spicy_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2PiapiT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using Seedance 2 Spicy (VIP tier, reduced content-safety filtering). Input: text prompt. Output: high-quality video. Use for: mature or edgy content generation that standard filtering would block."}},"/api/v1/seedance-2-spicy-text-to-video-fast":{"post":{"tags":["Video: Text-to-Video"],"summary":"seedance-2-spicy-text-to-video-fast (fast)","operationId":"seedance_2_spicy_text_to_video_fast_api_v1_seedance_2_spicy_text_to_video_fast_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2PiapiT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text using Seedance 2 Spicy Fast (VIP Fast tier, reduced content-safety filtering). Input: text prompt. Output: high-quality video, lower latency. Use for: time-sensitive mature or edgy content generation."}},"/api/v1/seedance-2-spicy-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"seedance-2-spicy-image-to-video (best)","operationId":"seedance_2_spicy_image_to_video_api_v1_seedance_2_spicy_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2PiapiI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate a still image with Seedance 2 Spicy (VIP tier, reduced content-safety filtering). Input: prompt + images_list (1 = start frame; 2-9 = @image1…@image9). Output: high-quality video. Use for: mature or edgy image animation that standard filtering would block."}},"/api/v1/seedance-2-spicy-image-to-video-fast":{"post":{"tags":["Video: Image-to-Video"],"summary":"seedance-2-spicy-image-to-video-fast (fast)","operationId":"seedance_2_spicy_image_to_video_fast_api_v1_seedance_2_spicy_image_to_video_fast_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2PiapiI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate a still image with Seedance 2 Spicy Fast (VIP Fast tier, reduced content-safety filtering). Input: prompt + images_list (1 = start frame; 2-9 = @image1…@image9). Output: high-quality video, lower latency. Use for: rapid mature or edgy image animation."}},"/api/v1/seedance-2-vip-text-to-video-1080p":{"post":{"tags":["Video: Text-to-Video"],"summary":"sd-2-vip-text-to-video-1080p (best)","operationId":"sd_2_vip_text_to_video_1080p_api_v1_seedance_2_vip_text_to_video_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2PiapiT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate 1080p videos from text using SD-2 VIP (Seedance 2 KIE-routed 1080p tier). Input: text prompt. Output: 1080p video. Use for: full-HD production output, hero/marketing video."}},"/api/v1/sd-2-vip-text-to-video-1080p":{"post":{"tags":["Video: Text-to-Video"],"summary":"sd-2-vip-text-to-video-1080p (best)","operationId":"sd_2_vip_text_to_video_1080p_api_v1_sd_2_vip_text_to_video_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2PiapiT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate 1080p videos from text using SD-2 VIP (Seedance 2 KIE-routed 1080p tier). Input: text prompt. Output: 1080p video. Use for: full-HD production output, hero/marketing video."}},"/api/v1/seedance-2-vip-text-to-video-fast-1080p":{"post":{"tags":["Video: Text-to-Video"],"summary":"sd-2-vip-text-to-video-fast-1080p (fast)","operationId":"sd_2_vip_text_to_video_fast_1080p_api_v1_seedance_2_vip_text_to_video_fast_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2PiapiT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate 1080p videos from text using SD-2 VIP Fast (premium 1080p + speed). Input: text prompt. Output: 1080p video, lower latency. Use for: rapid premium 1080p generation."}},"/api/v1/sd-2-vip-text-to-video-fast-1080p":{"post":{"tags":["Video: Text-to-Video"],"summary":"sd-2-vip-text-to-video-fast-1080p (fast)","operationId":"sd_2_vip_text_to_video_fast_1080p_api_v1_sd_2_vip_text_to_video_fast_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2PiapiT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate 1080p videos from text using SD-2 VIP Fast (premium 1080p + speed). Input: text prompt. Output: 1080p video, lower latency. Use for: rapid premium 1080p generation."}},"/api/v1/seedance-2-vip-image-to-video-1080p":{"post":{"tags":["Video: Image-to-Video"],"summary":"sd-2-vip-image-to-video-1080p (best)","operationId":"sd_2_vip_image_to_video_1080p_api_v1_seedance_2_vip_image_to_video_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2PiapiI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate a still image to 1080p video with SD-2 VIP. Input: prompt + images_list (1 = start frame; 2-9 = @image1…@image9). Output: 1080p video. Use for: full-HD photo-to-video, hero animations."}},"/api/v1/sd-2-vip-image-to-video-1080p":{"post":{"tags":["Video: Image-to-Video"],"summary":"sd-2-vip-image-to-video-1080p (best)","operationId":"sd_2_vip_image_to_video_1080p_api_v1_sd_2_vip_image_to_video_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2PiapiI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate a still image to 1080p video with SD-2 VIP. Input: prompt + images_list (1 = start frame; 2-9 = @image1…@image9). Output: 1080p video. Use for: full-HD photo-to-video, hero animations."}},"/api/v1/seedance-2-vip-image-to-video-fast-1080p":{"post":{"tags":["Video: Image-to-Video"],"summary":"sd-2-vip-image-to-video-fast-1080p (fast)","operationId":"sd_2_vip_image_to_video_fast_1080p_api_v1_seedance_2_vip_image_to_video_fast_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2PiapiI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate a still image to 1080p video with SD-2 VIP Fast. Input: prompt + images_list (1 = start frame; 2-9 = @image1…@image9). Output: 1080p video, lower latency. Use for: rapid 1080p image animation."}},"/api/v1/sd-2-vip-image-to-video-fast-1080p":{"post":{"tags":["Video: Image-to-Video"],"summary":"sd-2-vip-image-to-video-fast-1080p (fast)","operationId":"sd_2_vip_image_to_video_fast_1080p_api_v1_sd_2_vip_image_to_video_fast_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2PiapiI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate a still image to 1080p video with SD-2 VIP Fast. Input: prompt + images_list (1 = start frame; 2-9 = @image1…@image9). Output: 1080p video, lower latency. Use for: rapid 1080p image animation."}},"/api/v1/seedance-2-vip-omni-reference-1080p":{"post":{"tags":["Video: Edit & Effects"],"summary":"sd-2-vip-omni-reference-1080p (best)","operationId":"sd_2_vip_omni_reference_1080p_api_v1_seedance_2_vip_omni_reference_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2VipOmniRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"1080p Seedance 2 omni-mode video with SD-2 VIP. Input: prompt + optional images_list, video_files, audio_files (@-referenced). Output: 1080p video. Use for: full-HD character-locked production video."}},"/api/v1/sd-2-vip-omni-reference-1080p":{"post":{"tags":["Video: Edit & Effects"],"summary":"sd-2-vip-omni-reference-1080p (best)","operationId":"sd_2_vip_omni_reference_1080p_api_v1_sd_2_vip_omni_reference_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2VipOmniRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"1080p Seedance 2 omni-mode video with SD-2 VIP. Input: prompt + optional images_list, video_files, audio_files (@-referenced). Output: 1080p video. Use for: full-HD character-locked production video."}},"/api/v1/seedance-2-vip-omni-reference-fast-1080p":{"post":{"tags":["Video: Edit & Effects"],"summary":"sd-2-vip-omni-reference-fast-1080p (fast)","operationId":"sd_2_vip_omni_reference_fast_1080p_api_v1_seedance_2_vip_omni_reference_fast_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2VipOmniRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"1080p Seedance 2 omni-mode video with SD-2 VIP Fast. Input: prompt + optional images_list, video_files, audio_files. Output: 1080p video, lower latency. Use for: rapid premium 1080p video."}},"/api/v1/sd-2-vip-omni-reference-fast-1080p":{"post":{"tags":["Video: Edit & Effects"],"summary":"sd-2-vip-omni-reference-fast-1080p (fast)","operationId":"sd_2_vip_omni_reference_fast_1080p_api_v1_sd_2_vip_omni_reference_fast_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2VipOmniRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"1080p Seedance 2 omni-mode video with SD-2 VIP Fast. Input: prompt + optional images_list, video_files, audio_files. Output: 1080p video, lower latency. Use for: rapid premium 1080p video."}},"/api/v1/seedance-2-vip-first-last-frame":{"post":{"tags":["Video: Edit & Effects"],"summary":"seedance-2-vip-first-last-frame (best)","operationId":"seedance_2_vip_first_last_frame_api_v1_seedance_2_vip_first_last_frame_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2PiapiFirstLastRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Premium Seedance 2 VIP first/last-frame video. Input: prompt + images_list (1 = start only, 2 = start+last). Output: high-quality video. Use for: production-quality transitions, controlled-start premium video."}},"/api/v1/seedance-2-vip-first-last-frame-fast":{"post":{"tags":["Video: Edit & Effects"],"summary":"seedance-2-vip-first-last-frame-fast (fast)","operationId":"seedance_2_vip_first_last_frame_fast_api_v1_seedance_2_vip_first_last_frame_fast_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2PiapiFirstLastRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Seedance 2 VIP Fast first/last-frame video. Input: prompt + images_list (1 = start only, 2 = start+last). Output: high-quality video, lower latency. Use for: rapid premium transitions."}},"/api/v1/seedance-2-vip-first-last-frame-1080p":{"post":{"tags":["Video: Edit & Effects"],"summary":"sd-2-vip-first-last-frame-1080p (best)","operationId":"sd_2_vip_first_last_frame_1080p_api_v1_seedance_2_vip_first_last_frame_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2PiapiFirstLastRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"1080p Seedance 2 first/last-frame video with SD-2 VIP. Input: prompt + images_list (1 = start only, 2 = start+last). Output: 1080p video. Use for: full-HD transitions, hero morph shots."}},"/api/v1/sd-2-vip-first-last-frame-1080p":{"post":{"tags":["Video: Edit & Effects"],"summary":"sd-2-vip-first-last-frame-1080p (best)","operationId":"sd_2_vip_first_last_frame_1080p_api_v1_sd_2_vip_first_last_frame_1080p_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2PiapiFirstLastRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"1080p Seedance 2 first/last-frame video with SD-2 VIP. Input: prompt + images_list (1 = start only, 2 = start+last). Output: 1080p video. Use for: full-HD transitions, hero morph shots."}},"/api/v1/seedance-2-vip-omni-reference":{"post":{"tags":["Video: Edit & Effects"],"summary":"seedance-2-vip-omni-reference (best)","operationId":"seedance_2_vip_omni_reference_api_v1_seedance_2_vip_omni_reference_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2VipOmniRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Premium Seedance 2 VIP omni-mode video. Input: prompt (required) + optional images_list, video_files, audio_files (all reference media addressed via @image/@video/@audio in the prompt). Output: high-quality video. Use for: production character-locked video with multi-modal references."}},"/api/v1/seedance-2-vip-omni-reference-fast":{"post":{"tags":["Video: Edit & Effects"],"summary":"seedance-2-vip-omni-reference-fast (fast)","operationId":"seedance_2_vip_omni_reference_fast_api_v1_seedance_2_vip_omni_reference_fast_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2VipOmniRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Premium Seedance 2 VIP Fast omni-mode. Same input shape as seedance-2-vip-omni-reference. Output: high-quality video, lower latency. Use for: rapid premium multi-modal video."}},"/api/v1/seedance-2-vip-text-to-video-4k":{"post":{"tags":["Video: Text-to-Video"],"summary":"Sd 2 Vip Text To Video 4K","operationId":"sd_2_vip_text_to_video_4k_api_v1_seedance_2_vip_text_to_video_4k_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2PiapiT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/sd-2-vip-text-to-video-4k":{"post":{"tags":["Video: Text-to-Video"],"summary":"Sd 2 Vip Text To Video 4K","operationId":"sd_2_vip_text_to_video_4k_api_v1_sd_2_vip_text_to_video_4k_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2PiapiT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2-vip-image-to-video-4k":{"post":{"tags":["Video: Image-to-Video"],"summary":"Sd 2 Vip Image To Video 4K","operationId":"sd_2_vip_image_to_video_4k_api_v1_seedance_2_vip_image_to_video_4k_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2PiapiI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/sd-2-vip-image-to-video-4k":{"post":{"tags":["Video: Image-to-Video"],"summary":"Sd 2 Vip Image To Video 4K","operationId":"sd_2_vip_image_to_video_4k_api_v1_sd_2_vip_image_to_video_4k_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2PiapiI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2-vip-first-last-frame-4k":{"post":{"tags":["Video: Edit & Effects"],"summary":"Sd 2 Vip First Last Frame 4K","operationId":"sd_2_vip_first_last_frame_4k_api_v1_seedance_2_vip_first_last_frame_4k_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2PiapiFirstLastRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/sd-2-vip-first-last-frame-4k":{"post":{"tags":["Video: Edit & Effects"],"summary":"Sd 2 Vip First Last Frame 4K","operationId":"sd_2_vip_first_last_frame_4k_api_v1_sd_2_vip_first_last_frame_4k_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2PiapiFirstLastRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2-vip-omni-reference-4k":{"post":{"tags":["Video: Edit & Effects"],"summary":"Sd 2 Vip Omni Reference 4K","operationId":"sd_2_vip_omni_reference_4k_api_v1_seedance_2_vip_omni_reference_4k_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2VipOmniRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/sd-2-vip-omni-reference-4k":{"post":{"tags":["Video: Edit & Effects"],"summary":"Sd 2 Vip Omni Reference 4K","operationId":"sd_2_vip_omni_reference_4k_api_v1_sd_2_vip_omni_reference_4k_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2VipOmniRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/youtube-download":{"post":{"tags":["Utilities"],"summary":"Youtube Download","operationId":"youtube_download_api_v1_youtube_download_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/YoutubeDownloadRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/tiktok-fetch-profile":{"post":{"tags":["Utilities"],"summary":"Tiktok Fetch Profile","operationId":"tiktok_fetch_profile_api_v1_tiktok_fetch_profile_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TikTokProfileRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/tiktok-fetch-videos":{"post":{"tags":["Utilities"],"summary":"Tiktok Fetch Videos","operationId":"tiktok_fetch_videos_api_v1_tiktok_fetch_videos_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TikTokVideosRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/instagram-fetch-reels":{"post":{"tags":["API"],"summary":"Instagram Fetch Reels","operationId":"instagram_fetch_reels_api_v1_instagram_fetch_reels_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/InstagramReelsRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/youtube-fetch-shorts":{"post":{"tags":["Utilities"],"summary":"Youtube Fetch Shorts","operationId":"youtube_fetch_shorts_api_v1_youtube_fetch_shorts_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/YoutubeShortsRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/twitter-fetch-posts":{"post":{"tags":["API"],"summary":"Twitter Fetch Posts","operationId":"twitter_fetch_posts_api_v1_twitter_fetch_posts_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TwitterPostsRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/facebook-fetch-reels":{"post":{"tags":["API"],"summary":"Facebook Fetch Reels","operationId":"facebook_fetch_reels_api_v1_facebook_fetch_reels_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/FacebookReelsRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/generate-social-video-script":{"post":{"tags":["API"],"summary":"Generate Social Video Script","operationId":"generate_social_video_script_api_v1_generate_social_video_script_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AIScriptRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/openai-whisper":{"post":{"tags":["Utilities"],"summary":"Openai Whisper","operationId":"openai_whisper_api_v1_openai_whisper_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OpenAIWhisperRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/moderate-image":{"post":{"tags":["Utilities"],"summary":"Moderate Image","operationId":"moderate_image_api_v1_moderate_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ModerateImageRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/moderate-video":{"post":{"tags":["Utilities"],"summary":"Moderate Video","operationId":"moderate_video_api_v1_moderate_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ModerateVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/moderate-text":{"post":{"tags":["Utilities"],"summary":"Moderate Text","operationId":"moderate_text_api_v1_moderate_text_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ModerateTextRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gemini-omni-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"Gemini Omni Text To Video","operationId":"gemini_omni_text_to_video_api_v1_gemini_omni_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GeminiOmniT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gemini-omni-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"Gemini Omni Image To Video","operationId":"gemini_omni_image_to_video_api_v1_gemini_omni_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GeminiOmniI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gemini-omni-video-edit":{"post":{"tags":["Video: Edit & Effects"],"summary":"Gemini Omni Video Edit","operationId":"gemini_omni_video_edit_api_v1_gemini_omni_video_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GeminiOmniV2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gemini-omni-audio":{"post":{"tags":["Audio"],"summary":"Gemini Omni Audio","operationId":"gemini_omni_audio_api_v1_gemini_omni_audio_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GeminiOmniAudioRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gemini-omni-character":{"post":{"tags":["API"],"summary":"Gemini Omni Character","operationId":"gemini_omni_character_api_v1_gemini_omni_character_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GeminiOmniCharacterRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gemini-omni-flash-1-1-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"Gemini Omni Flash 1 1 Text To Video","operationId":"gemini_omni_flash_1_1_text_to_video_api_v1_gemini_omni_flash_1_1_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GeminiOmniFlash11Request"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gemini-omni-flash-1-1-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"Gemini Omni Flash 1 1 Image To Video","operationId":"gemini_omni_flash_1_1_image_to_video_api_v1_gemini_omni_flash_1_1_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GeminiOmniFlash11ImageToVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gemini-omni-flash-1-1-edit":{"post":{"tags":["Image: Edit & Reference"],"summary":"Gemini Omni Flash 1 1 Edit","operationId":"gemini_omni_flash_1_1_edit_api_v1_gemini_omni_flash_1_1_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GeminiOmniFlash11EditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/gemini-omni-flash-1-1-reference-to-video":{"post":{"tags":["Video: Edit & Effects"],"summary":"Gemini Omni Flash 1 1 Reference To Video","operationId":"gemini_omni_flash_1_1_reference_to_video_api_v1_gemini_omni_flash_1_1_reference_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GeminiOmniFlash11ReferenceToVideoRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/motion-graphics":{"post":{"tags":["Video: Text-to-Video"],"summary":"motion-graphics (balanced)","operationId":"motion_graphics_api_v1_motion_graphics_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MotionGraphicsRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate animated motion graphics videos from a text prompt. Input: prompt, duration_seconds (5–30), aspect_ratio. Output: MP4 video. Use for: kinetic typography, data visualizations, logo intros, social media reels, explainer animations."}},"/api/v1/motion-graphics-edit":{"post":{"tags":["Video: Edit & Effects"],"summary":"motion-graphics-edit (balanced)","operationId":"motion_graphics_edit_api_v1_motion_graphics_edit_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MotionGraphicsEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Edit a previously generated motion graphics animation. Input: request_id (from completed motion-graphics generation), edit_prompt, optional duration_seconds/aspect_ratio overrides. Output: updated MP4 video. Use for: color changes, typography tweaks, timing adjustments, layout modifications."}},"/api/v1/youtube-publish":{"post":{"tags":["Utilities"],"summary":"Youtube Publish","operationId":"youtube_publish_api_v1_youtube_publish_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/YouTubePublishRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/youtube-set-thumbnail":{"post":{"tags":["Utilities"],"summary":"Youtube Set Thumbnail","operationId":"youtube_set_thumbnail_api_v1_youtube_set_thumbnail_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/YouTubeSetThumbnailRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/youtube-update-metadata":{"post":{"tags":["Utilities"],"summary":"Youtube Update Metadata","operationId":"youtube_update_metadata_api_v1_youtube_update_metadata_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/YouTubeUpdateMetadataRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/tiktok-publish":{"post":{"tags":["Utilities"],"summary":"Tiktok Publish","operationId":"tiktok_publish_api_v1_tiktok_publish_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TikTokPublishRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/instagram-publish":{"post":{"tags":["API"],"summary":"Instagram Publish","operationId":"instagram_publish_api_v1_instagram_publish_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/InstagramPublishRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/facebook-publish":{"post":{"tags":["API"],"summary":"Facebook Publish","operationId":"facebook_publish_api_v1_facebook_publish_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/FacebookPublishRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/linkedin-publish":{"post":{"tags":["API"],"summary":"Linkedin Publish","operationId":"linkedin_publish_api_v1_linkedin_publish_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/LinkedInPublishRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/x-publish":{"post":{"tags":["API"],"summary":"X Publish","operationId":"x_publish_api_v1_x_publish_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/XPublishRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/threads-publish":{"post":{"tags":["API"],"summary":"Threads Publish","operationId":"threads_publish_api_v1_threads_publish_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ThreadsPublishRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/pinterest-publish":{"post":{"tags":["API"],"summary":"Pinterest Publish","operationId":"pinterest_publish_api_v1_pinterest_publish_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PinterestPublishRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/social/youtube/connect-url":{"post":{"tags":["API"],"summary":"Social Youtube Connect Url","description":"Generate a Google OAuth URL that the developer can redirect their end-user to.\n\nAfter the user consents, Google redirects to /api/social/youtube/ext-callback.\nThe resulting connected account is keyed by external_user_id and can be\nused with POST /api/v1/youtube-publish.","operationId":"social_youtube_connect_url_api_v1_social_youtube_connect_url_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/YouTubeConnectUrlRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/social/tiktok/connect-url":{"post":{"tags":["API"],"summary":"Social Tiktok Connect Url","description":"Generate a TikTok OAuth URL that the developer can redirect their end-user to.\n\nAfter the user authorizes, the resulting connected account is keyed by\nexternal_user_id and can be listed via GET /api/v1/social/ext/accounts\nand used with POST /api/v1/tiktok-publish.","operationId":"social_tiktok_connect_url_api_v1_social_tiktok_connect_url_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TikTokConnectUrlRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/social/instagram/connect-url":{"post":{"tags":["API"],"summary":"Social Instagram Connect Url","description":"Generate an Instagram OAuth URL that the developer can redirect their end-user to.\n\nAfter the user authorizes, the resulting connected account is keyed by\nexternal_user_id and can be listed via GET /api/v1/social/ext/accounts\nand used with POST /api/v1/instagram-publish.","operationId":"social_instagram_connect_url_api_v1_social_instagram_connect_url_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/InstagramConnectUrlRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/social/facebook/connect-url":{"post":{"tags":["API"],"summary":"Social Facebook Connect Url","description":"Generate a Facebook OAuth URL that the developer can redirect their end-user to.\n\nAfter the user authorizes, the resulting connected account is keyed by\nexternal_user_id and can be listed via GET /api/v1/social/ext/accounts\nand used with POST /api/v1/facebook-publish.","operationId":"social_facebook_connect_url_api_v1_social_facebook_connect_url_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/FacebookConnectUrlRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/social/ext/accounts":{"get":{"tags":["API"],"summary":"Social List Ext Accounts","description":"List accounts (YouTube, TikTok, Instagram, Facebook) connected on behalf of one of your end-users.","operationId":"social_list_ext_accounts_api_v1_social_ext_accounts_get","parameters":[{"name":"external_user_id","in":"query","required":true,"schema":{"type":"string","description":"Your identifier for the end-user.","title":"External User Id"},"description":"Your identifier for the end-user."},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/social/ext/accounts/{account_id}":{"patch":{"tags":["API"],"summary":"Social Rename Ext Account","description":"Rename a specific end-user account (YouTube, TikTok, Instagram, or Facebook) by its id.\n\nBody: {\"account_name\": \"...\"}","operationId":"social_rename_ext_account_api_v1_social_ext_accounts__account_id__patch","parameters":[{"name":"account_id","in":"path","required":true,"schema":{"type":"integer","title":"Account Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","additionalProperties":true,"title":"Data"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["API"],"summary":"Social Delete Ext Account","description":"Permanently remove a specific end-user account (YouTube, TikTok, Instagram, or Facebook) by its id.\n\nFor PostForMe-backed platforms this also deletes the account on\nPostForMe's side, freeing it up to be connected again — including under\na different external_user_id. To keep the account and just revoke\naccess instead, use POST /social/ext/accounts/{account_id}/disconnect.","operationId":"social_delete_ext_account_api_v1_social_ext_accounts__account_id__delete","parameters":[{"name":"account_id","in":"path","required":true,"schema":{"type":"integer","title":"Account Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/social/ext/accounts/{account_id}/disconnect":{"post":{"tags":["API"],"summary":"Social Soft Disconnect Ext Account","description":"Revoke access for a specific end-user account without deleting it.\n\nThe account stops working for publishing until reconnected via\nconnect-url again, but its row (and external_user_id) is kept.","operationId":"social_soft_disconnect_ext_account_api_v1_social_ext_accounts__account_id__disconnect_post","parameters":[{"name":"account_id","in":"path","required":true,"schema":{"type":"integer","title":"Account Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/seedance-2-mini-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"seedance-2-mini-text-to-video (budget)","operationId":"seedance_2_mini_text_to_video_api_v1_seedance_2_mini_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2MiniT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate video from text using Seedance 2 Mini (fast, cost-efficient 720p tier). Input: prompt, aspect_ratio, duration, resolution, generate_audio, high_bitrate. Output: video. Use for: rapid drafting, batch production, e-commerce video assets."}},"/api/v1/seedance-2-mini-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"seedance-2-mini-image-to-video (budget)","operationId":"seedance_2_mini_image_to_video_api_v1_seedance_2_mini_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2MiniI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images to video using Seedance 2 Mini. Input: images_list (1 = start frame; 2-9 = references via @image1…@image9) + optional prompt. Output: video. Use for: affordable image animation, photo-to-video at scale."}},"/api/v1/seedance-2-mini-spicy-text-to-video":{"post":{"tags":["Video: Text-to-Video"],"summary":"seedance-2-mini-spicy-text-to-video (budget)","operationId":"seedance_2_mini_spicy_text_to_video_api_v1_seedance_2_mini_spicy_text_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2MiniT2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate video from text using Seedance 2 Mini Spicy (fast, cost-efficient tier, reduced content-safety filtering). Input: prompt, aspect_ratio, duration, resolution, generate_audio, high_bitrate. Output: video. Use for: cheap, fast mature or edgy content drafts."}},"/api/v1/seedance-2-mini-spicy-image-to-video":{"post":{"tags":["Video: Image-to-Video"],"summary":"seedance-2-mini-spicy-image-to-video (budget)","operationId":"seedance_2_mini_spicy_image_to_video_api_v1_seedance_2_mini_spicy_image_to_video_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2MiniI2VRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate images to video using Seedance 2 Mini Spicy (reduced content-safety filtering). Input: images_list (1 = start frame; 2-9 = references via @image1…@image9) + optional prompt. Output: video. Use for: affordable mature or edgy image animation at scale."}},"/api/v1/seedance-2-mini-omni-reference":{"post":{"tags":["Video: Text-to-Video"],"summary":"seedance-2-mini-omni-reference (budget)","operationId":"seedance_2_mini_omni_reference_api_v1_seedance_2_mini_omni_reference_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Seedance2MiniOmniRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate video from text + optional image/video/audio references using Seedance 2 Mini. Input: prompt + optional images_list (@image1-9), video_files (@video1-3), audio_files (@audio1-3). Output: video. Use for: character-consistent generation, motion reference, audio-driven video at mini-tier cost."}},"/api/v1/z-image-lora-trainer":{"post":{"tags":["Image: Enhance"],"summary":"z-image-lora-trainer (balanced)","operationId":"z_image_lora_trainer_api_v1_z_image_lora_trainer_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ZImageLoraTrainerRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Train custom image LoRA models from a dataset zip URL. Input: dataset zip URL, optional trigger_word, steps, learning_rate, lora_rank. Output: trained LoRA model weights URL. Use for: lora training, fine-tuning, custom style training, character lora."}},"/api/v1/qwen-image-lora-trainer":{"post":{"tags":["Image: Enhance"],"summary":"qwen-image-lora-trainer (balanced)","operationId":"qwen_image_lora_trainer_api_v1_qwen_image_lora_trainer_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/QwenImageLoraTrainerRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Train custom Qwen-Image LoRA models from a dataset zip URL. Input: dataset zip URL, optional trigger_word, steps, learning_rate, lora_rank. Output: trained LoRA model weights URL. Use for: qwen lora training, fine-tuning, custom style training, character lora."}},"/api/v1/qwen-image-2512-lora-trainer":{"post":{"tags":["Image: Text-to-Image"],"summary":"Qwen Image 2512 Lora Trainer","operationId":"qwen_image_2512_lora_trainer_api_v1_qwen_image_2512_lora_trainer_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/QwenImage2512LoraTrainerRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/z-image-base-lora-trainer":{"post":{"tags":["Image: Text-to-Image"],"summary":"Z Image Base Lora Trainer","operationId":"z_image_base_lora_trainer_api_v1_z_image_base_lora_trainer_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ZImageBaseLoraTrainerRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/flux-1-dev-style-lora-trainer":{"post":{"tags":["Other"],"summary":"flux-1-dev-style-lora-trainer","operationId":"flux_1_dev_style_lora_trainer_api_v1_flux_1_dev_style_lora_trainer_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Flux1DevStyleLoraTrainerRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Train custom FLUX.1 [dev] Style LoRA models. Input: dataset zip URL, optional trigger word, steps, learning rate. Output: downloadable safetensors model file and AIR identifier."}},"/api/v1/flux-2-klein-4b-style-lora-trainer":{"post":{"tags":["Other"],"summary":"flux-2-klein-4b-style-lora-trainer","operationId":"flux_2_klein_4b_style_lora_trainer_api_v1_flux_2_klein_4b_style_lora_trainer_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Flux2Klein4bStyleLoraTrainerRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Train custom FLUX.2 [klein] 4B Style LoRA models. Input: dataset zip URL, optional trigger word, steps, learning rate. Output: downloadable safetensors model file and AIR identifier."}},"/api/v1/flux-2-klein-9b-style-lora-trainer":{"post":{"tags":["Other"],"summary":"flux-2-klein-9b-style-lora-trainer","operationId":"flux_2_klein_9b_style_lora_trainer_api_v1_flux_2_klein_9b_style_lora_trainer_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Flux2Klein9bStyleLoraTrainerRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Train custom FLUX.2 [klein] 9B Style LoRA models. Input: dataset zip URL, optional trigger word, steps, learning rate. Output: downloadable safetensors model file and AIR identifier."}},"/api/v1/flux-1-dev-style-lora-inference":{"post":{"tags":["Image: Text-to-Image"],"summary":"Flux 1 Dev Style Lora Inference","operationId":"flux_1_dev_style_lora_inference_api_v1_flux_1_dev_style_lora_inference_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Flux1DevStyleLoraInferenceRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/qwen3-text-to-image":{"post":{"tags":["Image: Text-to-Image"],"summary":"Qwen3 Text To Image","operationId":"qwen3_text_to_image_api_v1_qwen3_text_to_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Qwen3TextToImageRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/qwen3-image-to-image":{"post":{"tags":["Image: Edit & Reference"],"summary":"Qwen3 Image To Image","operationId":"qwen3_image_to_image_api_v1_qwen3_image_to_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Qwen3ImageToImageRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/qwen3-pro-text-to-image":{"post":{"tags":["Image: Text-to-Image"],"summary":"Qwen3 Pro Text To Image","operationId":"qwen3_pro_text_to_image_api_v1_qwen3_pro_text_to_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Qwen3ProTextToImageRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/qwen3-pro-image-to-image":{"post":{"tags":["Image: Edit & Reference"],"summary":"Qwen3 Pro Image To Image","operationId":"qwen3_pro_image_to_image_api_v1_qwen3_pro_image_to_image_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Qwen3ProImageToImageRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/z-image-base-text-to-image-lora":{"post":{"tags":["Image: Text-to-Image"],"summary":"Z Image Base Lora","operationId":"z_image_base_lora_api_v1_z_image_base_text_to_image_lora_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ZImageBaseLoraRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/z-image-turbo-text-to-image-lora":{"post":{"tags":["Other"],"summary":"z-image-turbo-text-to-image-lora","operationId":"z_image_turbo_lora_api_v1_z_image_turbo_text_to_image_lora_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ZImageTurboLoraRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate photorealistic images ultra-fast with external LoRAs using Z-Image-Turbo LoRA. Input: text prompt, optional LoRAs list. Output: image. Use for: sub-second text-to-image generation with custom LoRA styles."}},"/api/v1/z-image-turbo-image-to-image-lora":{"post":{"tags":["Other"],"summary":"z-image-turbo-image-to-image-lora","operationId":"z_image_turbo_image_to_image_lora_api_v1_z_image_turbo_image_to_image_lora_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ZImageTurboImageToImageLoraRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Transform reference images ultra-fast with custom LoRAs using Z-Image-Turbo Image-to-Image LoRA. Input: text prompt, reference image_url, optional LoRAs list. Output: image. Use for: high-speed image-to-image transformations with LoRA styles."}},"/api/v1/krea-v2-turbo":{"post":{"tags":["Image: Text-to-Image"],"summary":"krea-v2-turbo (fast)","operationId":"krea_v2_turbo_api_v1_krea_v2_turbo_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KreaV2TurboRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate aesthetic images from text or transform reference images at 1K to 2K resolution in sub-second speed using Krea 2 Turbo. Input: text prompt, optional image_url. Output: image. Use for: fast aesthetic image generation, concept ideation, image-to-image restyling."}},"/api/v1/krea-v2-turbo-lora":{"post":{"tags":["Image: Text-to-Image"],"summary":"krea-v2-turbo-lora (fast)","operationId":"krea_v2_turbo_lora_api_v1_krea_v2_turbo_lora_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KreaV2TurboLoraRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate aesthetic images or restyle reference images using Krea 2 Turbo with custom LoRA adapters at 1K to 2K resolution. Input: text prompt, optional image_url, optional loras array. Output: image. Use for: custom style image generation, character LoRA consistency, aesthetic concept generation with LoRAs."}},"/api/v1/minimax-h3-image-to-video-lora":{"post":{"tags":["Video: Image-to-Video"],"summary":"minimax-h3-image-to-video-lora (best)","operationId":"minimax_h3_image_to_video_lora_api_v1_minimax_h3_image_to_video_lora_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MinimaxH3ImageToVideoLoraRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Animate first-frame images with custom LoRA adapters and native stereo audio using MiniMax H3 Image to Video LoRA. Input: text prompt, starting image URL, optional last frame, resolution (480p/768p), duration (3–15s), loras. Output: MP4 video. Use for: image animation with custom loras, style transfer video generation."}},"/api/v1/minimax-h3-text-to-video-lora":{"post":{"tags":["Video: Text-to-Video"],"summary":"minimax-h3-text-to-video-lora (best)","operationId":"minimax_h3_text_to_video_lora_api_v1_minimax_h3_text_to_video_lora_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MinimaxH3TextToVideoLoraRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from text prompts with custom LoRA adapters and native stereo audio using MiniMax H3 Text to Video LoRA. Input: text prompt, aspect_ratio (16:9/9:16/etc), resolution (480p/768p), duration (3–15s), loras. Output: MP4 video. Use for: text to video with custom loras, style-controlled video generation."}},"/api/v1/minimax-h3-reference-to-video-lora":{"post":{"tags":["Video: Image-to-Video"],"summary":"minimax-h3-reference-to-video-lora (best)","operationId":"minimax_h3_reference_to_video_lora_api_v1_minimax_h3_reference_to_video_lora_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MinimaxH3ReferenceToVideoLoraRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate videos from prompts and multimodal references (up to 9 images, 3 videos, 3 audios) with custom LoRA adapters and native stereo audio using MiniMax H3 Reference to Video LoRA. Input: text prompt, images_list, videos_list, audios_list, aspect_ratio, resolution, duration (3–15s), loras. Output: MP4 video. Use for: multimodal reference video generation with custom loras."}},"/api/v1/meshy-v7-image-to-3d":{"post":{"tags":["3D Generation"],"summary":"meshy-v7-image-to-3d (best)","operationId":"meshy_v7_image_to_3d_api_v1_meshy_v7_image_to_3d_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MeshyV7ImageTo3DRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Generate a high-detail 3D mesh from a single reference image using Meshy V7. Supports topology options, polycount targets, symmetry, PBR materials, Ultra Mode, auto-rigging, and humanoid animation presets. Input: image_url. Output: .glb mesh with textures + preview. Use for: high-quality photo-to-3D, game-ready assets, auto-rigged character generation."}},"/api/v1/meshy-v7-multi-image-to-3d":{"post":{"tags":["3D Generation"],"summary":"meshy-v7-multi-image-to-3d (best)","operationId":"meshy_v7_multi_image_to_3d_api_v1_meshy_v7_multi_image_to_3d_post","parameters":[{"name":"webhook","in":"query","required":false,"schema":{"type":"string","title":"Webhook"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MeshyV7MultiImageTo3DRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"description":"Reconstruct a 3D mesh from 1 to 4 reference images using Meshy V7 Multi-view. Supports topology options, polycount targets, symmetry, PBR materials, auto-rigging, and humanoid animation presets. Input: images_list. Output: .glb mesh with textures + preview. Use for: multi-angle photo-to-3D reconstruction, scanning-grade 3D assets."}},"/api/v1/rankings/":{"get":{"tags":["Rankings"],"summary":"Get All Rankings","description":"Public leaderboard endpoint for generative AI models.\nMeasures adoption volume across verified production completions.","operationId":"get_all_rankings_api_v1_rankings__get","parameters":[{"name":"window","in":"query","required":false,"schema":{"type":"string","description":"Time window: 'week' (7 days) or 'month' (30 days)","default":"week","title":"Window"},"description":"Time window: 'week' (7 days) or 'month' (30 days)"},{"name":"metric","in":"query","required":false,"schema":{"type":"string","description":"Metric to rank by: 'requests' or 'cost'","default":"requests","title":"Metric"},"description":"Metric to rank by: 'requests' or 'cost'"},{"name":"modality","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Modality: 'all', 'image', 'video', 'audio'","default":"all","title":"Modality"},"description":"Modality: 'all', 'image', 'video', 'audio'"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"object","additionalProperties":true,"title":"Response Get All Rankings Api V1 Rankings  Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/rankings":{"get":{"tags":["Rankings"],"summary":"Get All Rankings","description":"Public leaderboard endpoint for generative AI models.\nMeasures adoption volume across verified production completions.","operationId":"get_all_rankings_api_v1_rankings_get","parameters":[{"name":"window","in":"query","required":false,"schema":{"type":"string","description":"Time window: 'week' (7 days) or 'month' (30 days)","default":"week","title":"Window"},"description":"Time window: 'week' (7 days) or 'month' (30 days)"},{"name":"metric","in":"query","required":false,"schema":{"type":"string","description":"Metric to rank by: 'requests' or 'cost'","default":"requests","title":"Metric"},"description":"Metric to rank by: 'requests' or 'cost'"},{"name":"modality","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Modality: 'all', 'image', 'video', 'audio'","default":"all","title":"Modality"},"description":"Modality: 'all', 'image', 'video', 'audio'"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"object","additionalProperties":true,"title":"Response Get All Rankings Api V1 Rankings Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/rankings/{modality}":{"get":{"tags":["Rankings"],"summary":"Get Modality Rankings","description":"Public leaderboard endpoint scoped to a specific modality ('image', 'video', 'audio', 'all').","operationId":"get_modality_rankings_api_v1_rankings__modality__get","parameters":[{"name":"modality","in":"path","required":true,"schema":{"type":"string","title":"Modality"}},{"name":"window","in":"query","required":false,"schema":{"type":"string","description":"Time window: 'week' (7 days) or 'month' (30 days)","default":"week","title":"Window"},"description":"Time window: 'week' (7 days) or 'month' (30 days)"},{"name":"metric","in":"query","required":false,"schema":{"type":"string","description":"Metric to rank by: 'requests' or 'cost'","default":"requests","title":"Metric"},"description":"Metric to rank by: 'requests' or 'cost'"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"object","additionalProperties":true,"title":"Response Get Modality Rankings Api V1 Rankings  Modality  Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/rankings/":{"get":{"tags":["Rankings"],"summary":"Get All Rankings","description":"Public leaderboard endpoint for generative AI models.\nMeasures adoption volume across verified production completions.","operationId":"get_all_rankings_app_rankings__get","parameters":[{"name":"window","in":"query","required":false,"schema":{"type":"string","description":"Time window: 'week' (7 days) or 'month' (30 days)","default":"week","title":"Window"},"description":"Time window: 'week' (7 days) or 'month' (30 days)"},{"name":"metric","in":"query","required":false,"schema":{"type":"string","description":"Metric to rank by: 'requests' or 'cost'","default":"requests","title":"Metric"},"description":"Metric to rank by: 'requests' or 'cost'"},{"name":"modality","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Modality: 'all', 'image', 'video', 'audio'","default":"all","title":"Modality"},"description":"Modality: 'all', 'image', 'video', 'audio'"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"object","additionalProperties":true,"title":"Response Get All Rankings App Rankings  Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/rankings":{"get":{"tags":["Rankings"],"summary":"Get All Rankings","description":"Public leaderboard endpoint for generative AI models.\nMeasures adoption volume across verified production completions.","operationId":"get_all_rankings_app_rankings_get","parameters":[{"name":"window","in":"query","required":false,"schema":{"type":"string","description":"Time window: 'week' (7 days) or 'month' (30 days)","default":"week","title":"Window"},"description":"Time window: 'week' (7 days) or 'month' (30 days)"},{"name":"metric","in":"query","required":false,"schema":{"type":"string","description":"Metric to rank by: 'requests' or 'cost'","default":"requests","title":"Metric"},"description":"Metric to rank by: 'requests' or 'cost'"},{"name":"modality","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Modality: 'all', 'image', 'video', 'audio'","default":"all","title":"Modality"},"description":"Modality: 'all', 'image', 'video', 'audio'"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"object","additionalProperties":true,"title":"Response Get All Rankings App Rankings Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/rankings/{modality}":{"get":{"tags":["Rankings"],"summary":"Get Modality Rankings","description":"Public leaderboard endpoint scoped to a specific modality ('image', 'video', 'audio', 'all').","operationId":"get_modality_rankings_app_rankings__modality__get","parameters":[{"name":"modality","in":"path","required":true,"schema":{"type":"string","title":"Modality"}},{"name":"window","in":"query","required":false,"schema":{"type":"string","description":"Time window: 'week' (7 days) or 'month' (30 days)","default":"week","title":"Window"},"description":"Time window: 'week' (7 days) or 'month' (30 days)"},{"name":"metric","in":"query","required":false,"schema":{"type":"string","description":"Metric to rank by: 'requests' or 'cost'","default":"requests","title":"Metric"},"description":"Metric to rank by: 'requests' or 'cost'"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"object","additionalProperties":true,"title":"Response Get Modality Rankings App Rankings  Modality  Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/payments/create_credits_checkout_session":{"get":{"tags":["Payment"],"summary":"Create Credits Checkout Session","operationId":"create_credits_checkout_session_payments_create_credits_checkout_session_get","parameters":[{"name":"forPrice","in":"query","required":true,"schema":{"type":"integer","title":"Forprice"}},{"name":"currency","in":"query","required":true,"schema":{"type":"string","title":"Currency"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/payments/verify_credits_topup":{"get":{"tags":["Payment"],"summary":"Verify Credits Payment","operationId":"verify_credits_payment_payments_verify_credits_topup_get","parameters":[{"name":"session_id","in":"query","required":true,"schema":{"type":"string","title":"Session Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/payments/subscription/checkout":{"post":{"tags":["Payment"],"summary":"Subscription Checkout","operationId":"subscription_checkout_payments_subscription_checkout_post","parameters":[{"name":"currency","in":"query","required":false,"schema":{"type":"string","default":"USD","title":"Currency"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/payments/subscription/checkout/business":{"post":{"tags":["Payment"],"summary":"Business Subscription Checkout","operationId":"business_subscription_checkout_payments_subscription_checkout_business_post","parameters":[{"name":"currency","in":"query","required":false,"schema":{"type":"string","default":"USD","title":"Currency"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/payments/subscription":{"delete":{"tags":["Payment"],"summary":"Cancel Subscription","operationId":"cancel_subscription_payments_subscription_delete","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/payments/subscription/status":{"get":{"tags":["Payment"],"summary":"Subscription Status","operationId":"subscription_status_payments_subscription_status_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/payments/create_portal_session":{"get":{"tags":["Payment"],"summary":"Create Portal Session","operationId":"create_portal_session_payments_create_portal_session_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/payments/invoices":{"get":{"tags":["Payment"],"summary":"List Invoices","operationId":"list_invoices_payments_invoices_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/payments/invoices/{session_id}/url":{"get":{"tags":["Payment"],"summary":"Get Invoice Url","operationId":"get_invoice_url_payments_invoices__session_id__url_get","parameters":[{"name":"session_id","in":"path","required":true,"schema":{"type":"string","title":"Session Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/payments/billing/invoice-profile":{"get":{"tags":["Payment"],"summary":"Get Invoice Profile","operationId":"get_invoice_profile_payments_billing_invoice_profile_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}},"put":{"tags":["Payment"],"summary":"Put Invoice Profile","operationId":"put_invoice_profile_payments_billing_invoice_profile_put","requestBody":{"content":{"application/json":{"schema":{"additionalProperties":true,"type":"object","title":"Payload"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/payments/billing/topup/{session_id}/invoice-info":{"get":{"tags":["Payment"],"summary":"Get Topup Invoice Info","operationId":"get_topup_invoice_info_payments_billing_topup__session_id__invoice_info_get","parameters":[{"name":"session_id","in":"path","required":true,"schema":{"type":"string","title":"Session Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Payment"],"summary":"Put Topup Invoice Info","operationId":"put_topup_invoice_info_payments_billing_topup__session_id__invoice_info_put","parameters":[{"name":"session_id","in":"path","required":true,"schema":{"type":"string","title":"Session Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","additionalProperties":true,"title":"Payload"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Payment"],"summary":"Delete Topup Invoice Info","operationId":"delete_topup_invoice_info_payments_billing_topup__session_id__invoice_info_delete","parameters":[{"name":"session_id","in":"path","required":true,"schema":{"type":"string","title":"Session Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/payments/invoices/{session_id}/pdf":{"get":{"tags":["Payment"],"summary":"Download Manual Invoice Pdf","operationId":"download_manual_invoice_pdf_payments_invoices__session_id__pdf_get","parameters":[{"name":"session_id","in":"path","required":true,"schema":{"type":"string","title":"Session Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/workflow/get-workflow-defs":{"get":{"tags":["Workflow"],"summary":"Get Workflow Defs","operationId":"get_workflow_defs_workflow_get_workflow_defs_get","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/workflow/get-published-workflows":{"get":{"tags":["Workflow"],"summary":"Get Published Workflows","operationId":"get_published_workflows_workflow_get_published_workflows_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/workflow/get-template-workflows":{"get":{"tags":["Workflow"],"summary":"Get Template Workflows","operationId":"get_template_workflows_workflow_get_template_workflows_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/workflow/get-workflow-meta/{workflow_id}":{"get":{"tags":["Workflow"],"summary":"Get Workflow Meta","operationId":"get_workflow_meta_workflow_get_workflow_meta__workflow_id__get","parameters":[{"name":"workflow_id","in":"path","required":true,"schema":{"type":"string","title":"Workflow Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/workflow/get-workflow-published-defs":{"get":{"tags":["Workflow"],"summary":"Get Workflow Published Defs","operationId":"get_workflow_published_defs_workflow_get_workflow_published_defs_get","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/workflow/get-workflow-def/{workflow_id}":{"get":{"tags":["Workflow"],"summary":"Get Workflow Def Data","operationId":"get_workflow_def_data_workflow_get_workflow_def__workflow_id__get","parameters":[{"name":"workflow_id","in":"path","required":true,"schema":{"type":"string","title":"Workflow Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/workflow/create":{"post":{"tags":["Workflow"],"summary":"Create Workflow Endpoint","description":"Register a reusable workflow definition","operationId":"create_workflow_endpoint_workflow_create_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","additionalProperties":true,"title":"Payload"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/workflow/{workflow_id}/thumbnail":{"post":{"tags":["Workflow"],"summary":"Update Workflow Thumbnail","operationId":"update_workflow_thumbnail_workflow__workflow_id__thumbnail_post","parameters":[{"name":"workflow_id","in":"path","required":true,"schema":{"type":"string","title":"Workflow Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","additionalProperties":true,"title":"Payload"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/workflow/{workflow_id}/run":{"post":{"tags":["Workflow"],"summary":"Start Workflow Endpoint","description":"Start a new run of an existing workflow","operationId":"start_workflow_endpoint_workflow__workflow_id__run_post","parameters":[{"name":"workflow_id","in":"path","required":true,"schema":{"type":"string","title":"Workflow Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":true,"title":"Payload"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/workflow/run/{run_id}/status":{"get":{"tags":["Workflow"],"summary":"Workflow Run Status","description":"Get current workflow run status (node-by-node)","operationId":"workflow_run_status_workflow_run__run_id__status_get","parameters":[{"name":"run_id","in":"path","required":true,"schema":{"type":"string","title":"Run Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/workflow/{workflow_id}/node/{node_id}/run":{"post":{"tags":["Workflow"],"summary":"Run Single Node Endpoint","description":"Manually run a single node inside an existing workflow run.\nRequires 'run_id' in body.","operationId":"run_single_node_endpoint_workflow__workflow_id__node__node_id__run_post","parameters":[{"name":"workflow_id","in":"path","required":true,"schema":{"type":"string","title":"Workflow Id"}},{"name":"node_id","in":"path","required":true,"schema":{"type":"string","title":"Node Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","additionalProperties":true,"title":"Data"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/workflow/delete-workflow-def/{workflow_id}":{"delete":{"tags":["Workflow"],"summary":"Delete Workflow Def Endpoint","operationId":"delete_workflow_def_endpoint_workflow_delete_workflow_def__workflow_id__delete","parameters":[{"name":"workflow_id","in":"path","required":true,"schema":{"type":"string","title":"Workflow Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/workflow/node-run/{node_run_id}":{"delete":{"tags":["Workflow"],"summary":"Delete Node Run Endpoint","operationId":"delete_node_run_endpoint_workflow_node_run__node_run_id__delete","parameters":[{"name":"node_run_id","in":"path","required":true,"schema":{"type":"string","title":"Node Run Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/workflow/update-name/{workflow_id}":{"post":{"tags":["Workflow"],"summary":"Update Workflow Name Endpoint","operationId":"update_workflow_name_endpoint_workflow_update_name__workflow_id__post","parameters":[{"name":"workflow_id","in":"path","required":true,"schema":{"type":"string","title":"Workflow Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","additionalProperties":true,"title":"Payload"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/workflow/update-category/{workflow_id}":{"post":{"tags":["Workflow"],"summary":"Update Workflow Category Endpoint","operationId":"update_workflow_category_endpoint_workflow_update_category__workflow_id__post","parameters":[{"name":"workflow_id","in":"path","required":true,"schema":{"type":"string","title":"Workflow Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","additionalProperties":true,"title":"Payload"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/workflow/{workflow_id}/node-schemas":{"get":{"tags":["Workflow"],"summary":"Get All Node Schemas Endpoint","operationId":"get_all_node_schemas_endpoint_workflow__workflow_id__node_schemas_get","parameters":[{"name":"workflow_id","in":"path","required":true,"schema":{"type":"string","title":"Workflow Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/workflow/{workflow_id}/api-node-schemas":{"get":{"tags":["Workflow"],"summary":"Get Api Node Schemas Endpoint","operationId":"get_api_node_schemas_endpoint_workflow__workflow_id__api_node_schemas_get","parameters":[{"name":"workflow_id","in":"path","required":true,"schema":{"type":"string","title":"Workflow Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/workflow/get-workflow-last-run/{workflow_id}":{"get":{"tags":["Workflow"],"summary":"Get Workflow Last Run Endpoint","description":"Get the last run data for a workflow (inputs/outputs/status for each node)","operationId":"get_workflow_last_run_endpoint_workflow_get_workflow_last_run__workflow_id__get","parameters":[{"name":"workflow_id","in":"path","required":true,"schema":{"type":"string","title":"Workflow Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/workflow/workflow/{workflow_id}/publish":{"post":{"tags":["Workflow"],"summary":"Update Workflow Publish","operationId":"update_workflow_publish_workflow_workflow__workflow_id__publish_post","parameters":[{"name":"workflow_id","in":"path","required":true,"schema":{"type":"string","title":"Workflow Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","additionalProperties":true,"title":"Payload"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/workflow/workflow/{workflow_id}/slug":{"post":{"tags":["Workflow"],"summary":"Set Workflow Slug","operationId":"set_workflow_slug_workflow_workflow__workflow_id__slug_post","parameters":[{"name":"workflow_id","in":"path","required":true,"schema":{"type":"string","title":"Workflow Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","additionalProperties":true,"title":"Payload"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/workflow/workflow/{workflow_id}/template":{"post":{"tags":["Workflow"],"summary":"Update Workflow Template","operationId":"update_workflow_template_workflow_workflow__workflow_id__template_post","parameters":[{"name":"workflow_id","in":"path","required":true,"schema":{"type":"string","title":"Workflow Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","additionalProperties":true,"title":"Payload"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/workflow/{workflow_id}/api-inputs":{"get":{"tags":["Workflow"],"summary":"Get Workflow Api Inputs","operationId":"get_workflow_api_inputs_workflow__workflow_id__api_inputs_get","parameters":[{"name":"workflow_id","in":"path","required":true,"schema":{"type":"string","title":"Workflow Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/workflow/{workflow_id}/api-execute":{"post":{"tags":["Workflow"],"summary":"Execute Workflow Via Api","operationId":"execute_workflow_via_api_workflow__workflow_id__api_execute_post","parameters":[{"name":"workflow_id","in":"path","required":true,"schema":{"type":"string","title":"Workflow Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowAPIExecuteRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/workflow/run/{run_id}/api-outputs":{"get":{"tags":["Workflow"],"summary":"Get Workflow Api Outputs","operationId":"get_workflow_api_outputs_workflow_run__run_id__api_outputs_get","parameters":[{"name":"run_id","in":"path","required":true,"schema":{"type":"string","title":"Run Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/workflow/cloudfront-signed-url":{"post":{"tags":["Workflow"],"summary":"Get Signed Url","operationId":"get_signed_url_workflow_cloudfront_signed_url_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GoogleCallbackRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/workflow/architect":{"post":{"tags":["Workflow"],"summary":"Architect Workflow Endpoint","description":"Agentic Workflow Architect: Prompt-to-Workflow or Prompt-to-Edit.","operationId":"architect_workflow_endpoint_workflow_architect_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowArchitectRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/workflow/poll-architect/{id}/result":{"get":{"tags":["Workflow"],"summary":"Poll Architect Result","operationId":"poll_architect_result_workflow_poll_architect__id__result_get","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","title":"Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/agents/suggest":{"post":{"tags":["Agents"],"summary":"Suggest Agent","description":"Suggest an agent configuration (persona + skills) based on user's high-level goal.\nUses OpenAI to generate recommendations.","operationId":"suggest_agent_agents_suggest_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AgentSuggestionRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AgentSuggestionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/agents/quick-create":{"post":{"tags":["Agents"],"summary":"Quick Create Agent","description":"One-step agent creation: Suggests configuration and creates the agent immediately.","operationId":"quick_create_agent_agents_quick_create_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AgentQuickCreateRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AgentResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/agents/{agent_id}/preview-realign":{"post":{"tags":["Agents"],"summary":"Preview Realign Agent","description":"Preview a system prompt realignment based on new skills.\nDoes NOT save to database.","operationId":"preview_realign_agent_agents__agent_id__preview_realign_post","parameters":[{"name":"agent_id","in":"path","required":true,"schema":{"type":"string","title":"Agent Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AgentRealignRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AgentRealignResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/agents/by-slug/{agent_slug}/preview-realign":{"post":{"tags":["Agents"],"summary":"Preview Realign Agent By Slug","description":"Edit existing agent details using slug.","operationId":"preview_realign_agent_by_slug_agents_by_slug__agent_slug__preview_realign_post","parameters":[{"name":"agent_slug","in":"path","required":true,"schema":{"type":"string","title":"Agent Slug"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AgentRealignRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AgentRealignResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/agents/{agent_id}/chat":{"post":{"tags":["Agents"],"summary":"Agent Chat","description":"Conversational endpoint for the agent (Polling Architecture).\nReturns a request_id for the frontend to poll /api/v1/predictions/{id}/result.","operationId":"agent_chat_agents__agent_id__chat_post","parameters":[{"name":"agent_id","in":"path","required":true,"schema":{"type":"string","title":"Agent Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AgentChatRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/agents/by-slug/{agent_slug}/chat":{"post":{"tags":["Agents"],"summary":"Agent Chat By Slug","description":"Conversational endpoint for the agent using its slug.","operationId":"agent_chat_by_slug_agents_by_slug__agent_slug__chat_post","parameters":[{"name":"agent_slug","in":"path","required":true,"schema":{"type":"string","title":"Agent Slug"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AgentChatRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/agents/skills":{"get":{"tags":["Agents"],"summary":"List Skills","description":"List all available skills (atomic APIs).","operationId":"list_skills_agents_skills_get","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SkillResponse"},"title":"Response List Skills Agents Skills Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/agents":{"post":{"tags":["Agents"],"summary":"Create Agent","description":"Create a new specialized agent with pre-selected skills.","operationId":"create_agent_agents_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AgentCreate"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AgentResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/agents/user/agents":{"get":{"tags":["Agents"],"summary":"List User Agents","description":"List all agents created by the authenticated user.","operationId":"list_user_agents_agents_user_agents_get","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/AgentResponse"},"title":"Response List User Agents Agents User Agents Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/agents/user/conversations":{"get":{"tags":["Agents"],"summary":"List User Conversations","description":"List all conversations for the authenticated user across all agents.","operationId":"list_user_conversations_agents_user_conversations_get","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ConversationListItem"},"title":"Response List User Conversations Agents User Conversations Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/agents/conversations/{conversation_id}":{"delete":{"tags":["Agents"],"summary":"Delete Conversation","description":"Delete a conversation and all its actions/suggestions.","operationId":"delete_conversation_agents_conversations__conversation_id__delete","parameters":[{"name":"conversation_id","in":"path","required":true,"schema":{"type":"string","title":"Conversation Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/agents/{agent_id}/profile":{"get":{"tags":["Agents"],"summary":"Get Agent Profile","description":"Get full profile info for an agent: stats + current user's recent conversations.","operationId":"get_agent_profile_agents__agent_id__profile_get","parameters":[{"name":"agent_id","in":"path","required":true,"schema":{"type":"string","title":"Agent Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AgentProfileResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/agents/meta/{agent_slug}":{"get":{"tags":["Agents"],"summary":"Get Agent Public Meta","description":"Public endpoint: returns minimal SEO metadata for a published or template agent.","operationId":"get_agent_public_meta_agents_meta__agent_slug__get","parameters":[{"name":"agent_slug","in":"path","required":true,"schema":{"type":"string","title":"Agent Slug"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/agents/featured/agents":{"get":{"tags":["Agents"],"summary":"List Featured Agents","description":"List all featured (published) agents. (Public endpoint)","operationId":"list_featured_agents_agents_featured_agents_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/AgentResponse"},"type":"array","title":"Response List Featured Agents Agents Featured Agents Get"}}}}}}},"/agents/templates/agents":{"get":{"tags":["Agents"],"summary":"List Template Agents","description":"List all template agents for authorized users.","operationId":"list_template_agents_agents_templates_agents_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/AgentResponse"},"type":"array","title":"Response List Template Agents Agents Templates Agents Get"}}}}}}},"/agents/{agent_id}":{"get":{"tags":["Agents"],"summary":"Get Agent","description":"Get details of a specific agent.","operationId":"get_agent_agents__agent_id__get","parameters":[{"name":"agent_id","in":"path","required":true,"schema":{"type":"string","title":"Agent Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AgentResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Agents"],"summary":"Update Agent","description":"Edit existing agent details using ID.\nOnly the owner of the agent can edit it.","operationId":"update_agent_agents__agent_id__put","parameters":[{"name":"agent_id","in":"path","required":true,"schema":{"type":"string","title":"Agent Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AgentUpdate"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AgentResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Agents"],"summary":"Delete Agent","description":"Delete an existing agent.\nOnly the owner of the agent can delete it.","operationId":"delete_agent_agents__agent_id__delete","parameters":[{"name":"agent_id","in":"path","required":true,"schema":{"type":"string","title":"Agent Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/agents/by-slug/{agent_slug}":{"get":{"tags":["Agents"],"summary":"Get Agent By Slug","description":"Get details of a specific agent by its unique alphanumeric slug.","operationId":"get_agent_by_slug_agents_by_slug__agent_slug__get","parameters":[{"name":"agent_slug","in":"path","required":true,"schema":{"type":"string","title":"Agent Slug"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AgentResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Agents"],"summary":"Update Agent By Slug","description":"Edit existing agent details using slug.","operationId":"update_agent_by_slug_agents_by_slug__agent_slug__put","parameters":[{"name":"agent_slug","in":"path","required":true,"schema":{"type":"string","title":"Agent Slug"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AgentUpdate"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AgentResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Agents"],"summary":"Delete Agent By Slug","description":"Delete an existing agent using slug.","operationId":"delete_agent_by_slug_agents_by_slug__agent_slug__delete","parameters":[{"name":"agent_slug","in":"path","required":true,"schema":{"type":"string","title":"Agent Slug"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/agents/by-slug/{agent_slug}/like":{"post":{"tags":["Agents"],"summary":"Like Agent","description":"Toggle like on an agent by slug (Authenticated).","operationId":"like_agent_agents_by_slug__agent_slug__like_post","parameters":[{"name":"agent_slug","in":"path","required":true,"schema":{"type":"string","title":"Agent Slug"}},{"name":"is_like","in":"query","required":false,"schema":{"type":"boolean","default":true,"title":"Is Like"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/agents/{agent_id}/{conversation_id}":{"get":{"tags":["Agents"],"summary":"Get Agent Conversation","description":"Get chat history for a specific conversation.","operationId":"get_agent_conversation_agents__agent_id___conversation_id__get","parameters":[{"name":"agent_id","in":"path","required":true,"schema":{"type":"string","title":"Agent Id"}},{"name":"conversation_id","in":"path","required":true,"schema":{"type":"string","title":"Conversation Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ConversationResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/agents/by-slug/{agent_slug}/{conversation_id}":{"get":{"tags":["Agents"],"summary":"Get Agent Conversation By Slug","description":"Get chat history for a specific conversation using agent slug.","operationId":"get_agent_conversation_by_slug_agents_by_slug__agent_slug___conversation_id__get","parameters":[{"name":"agent_slug","in":"path","required":true,"schema":{"type":"string","title":"Agent Slug"}},{"name":"conversation_id","in":"path","required":true,"schema":{"type":"string","title":"Conversation Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ConversationResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/agents/by-slug/{agent_slug}/clone":{"post":{"tags":["Agents"],"summary":"Clone Agent By Slug Route","description":"Clone an existing agent (template or published) for the current user.","operationId":"clone_agent_by_slug_route_agents_by_slug__agent_slug__clone_post","parameters":[{"name":"agent_slug","in":"path","required":true,"schema":{"type":"string","title":"Agent Slug"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"content":{"application/json":{"schema":{"anyOf":[{"$ref":"#/components/schemas/AgentCloneRequest"},{"type":"null"}],"title":"Clone Req"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AgentResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mobile/auth/register":{"post":{"tags":["Mobile"],"summary":"Register","operationId":"register_mobile_auth_register_post","parameters":[{"name":"x-app-key","in":"header","required":true,"schema":{"type":"string","description":"App key identifying the mobile app","title":"X-App-Key"},"description":"App key identifying the mobile app"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AuthRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mobile/auth/google":{"post":{"tags":["Mobile"],"summary":"Google Auth","operationId":"google_auth_mobile_auth_google_post","parameters":[{"name":"x-app-key","in":"header","required":true,"schema":{"type":"string","description":"App key identifying the mobile app","title":"X-App-Key"},"description":"App key identifying the mobile app"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GoogleAuthRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mobile/auth/google-code":{"post":{"tags":["Mobile"],"summary":"Google Code Auth","operationId":"google_code_auth_mobile_auth_google_code_post","parameters":[{"name":"x-app-key","in":"header","required":true,"schema":{"type":"string","description":"App key identifying the mobile app","title":"X-App-Key"},"description":"App key identifying the mobile app"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GoogleCodeAuthRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mobile/auth/apple":{"post":{"tags":["Mobile"],"summary":"Apple Auth","operationId":"apple_auth_mobile_auth_apple_post","parameters":[{"name":"x-app-key","in":"header","required":true,"schema":{"type":"string","description":"App key identifying the mobile app","title":"X-App-Key"},"description":"App key identifying the mobile app"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AppleAuthRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mobile/auth/login":{"post":{"tags":["Mobile"],"summary":"Login","operationId":"login_mobile_auth_login_post","parameters":[{"name":"x-app-key","in":"header","required":true,"schema":{"type":"string","description":"App key identifying the mobile app","title":"X-App-Key"},"description":"App key identifying the mobile app"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AuthRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mobile/me":{"get":{"tags":["Mobile"],"summary":"Me","operationId":"me_mobile_me_get","parameters":[{"name":"authorization","in":"header","required":true,"schema":{"type":"string","title":"Authorization"}},{"name":"x-app-key","in":"header","required":true,"schema":{"type":"string","description":"App key identifying the mobile app","title":"X-App-Key"},"description":"App key identifying the mobile app"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mobile/history":{"get":{"tags":["Mobile"],"summary":"History","operationId":"history_mobile_history_get","parameters":[{"name":"page","in":"query","required":false,"schema":{"type":"integer","minimum":1,"default":1,"title":"Page"}},{"name":"authorization","in":"header","required":true,"schema":{"type":"string","title":"Authorization"}},{"name":"x-app-key","in":"header","required":true,"schema":{"type":"string","description":"App key identifying the mobile app","title":"X-App-Key"},"description":"App key identifying the mobile app"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mobile/credits/add":{"post":{"tags":["Mobile"],"summary":"Add Credits","description":"Add credits to a mobile user's wallet. Hook this up to IAP/Stripe on purchase confirmation.","operationId":"add_credits_mobile_credits_add_post","parameters":[{"name":"authorization","in":"header","required":true,"schema":{"type":"string","title":"Authorization"}},{"name":"x-app-key","in":"header","required":true,"schema":{"type":"string","description":"App key identifying the mobile app","title":"X-App-Key"},"description":"App key identifying the mobile app"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AddCreditsRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mobile/iap/verify-ios":{"post":{"tags":["Mobile"],"summary":"Iap Verify Ios","description":"Verify an iOS App Store consumable receipt and credit the user's wallet.","operationId":"iap_verify_ios_mobile_iap_verify_ios_post","parameters":[{"name":"authorization","in":"header","required":true,"schema":{"type":"string","title":"Authorization"}},{"name":"x-app-key","in":"header","required":true,"schema":{"type":"string","description":"App key identifying the mobile app","title":"X-App-Key"},"description":"App key identifying the mobile app"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/IAPVerifyIOSRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mobile/iap/verify-subscription-ios":{"post":{"tags":["Mobile"],"summary":"Iap Verify Subscription Ios","description":"Verify an iOS subscription receipt, activate subscription, and grant period credits.","operationId":"iap_verify_subscription_ios_mobile_iap_verify_subscription_ios_post","parameters":[{"name":"x-app-key","in":"header","required":true,"schema":{"type":"string","description":"App key identifying the mobile app","title":"X-App-Key"},"description":"App key identifying the mobile app"},{"name":"authorization","in":"header","required":true,"schema":{"type":"string","title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/IAPVerifySubscriptionIOSRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mobile/iap/verify-android":{"post":{"tags":["Mobile"],"summary":"Iap Verify Android","description":"Verify a Google Play purchase token and credit the user's wallet.","operationId":"iap_verify_android_mobile_iap_verify_android_post","parameters":[{"name":"authorization","in":"header","required":true,"schema":{"type":"string","title":"Authorization"}},{"name":"x-app-key","in":"header","required":true,"schema":{"type":"string","description":"App key identifying the mobile app","title":"X-App-Key"},"description":"App key identifying the mobile app"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/IAPVerifyAndroidRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mobile/subscription":{"get":{"tags":["Mobile"],"summary":"Get Subscription","description":"Get the current user's active subscription status.","operationId":"get_subscription_mobile_subscription_get","parameters":[{"name":"authorization","in":"header","required":true,"schema":{"type":"string","title":"Authorization"}},{"name":"x-app-key","in":"header","required":true,"schema":{"type":"string","description":"App key identifying the mobile app","title":"X-App-Key"},"description":"App key identifying the mobile app"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mobile/image-effects":{"post":{"tags":["Video: Edit & Effects"],"summary":"Image Effects","operationId":"image_effects_mobile_image_effects_post","parameters":[{"name":"x-app-key","in":"header","required":true,"schema":{"type":"string","description":"App key identifying the mobile app","title":"X-App-Key"},"description":"App key identifying the mobile app"},{"name":"authorization","in":"header","required":true,"schema":{"type":"string","title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ImageEffectsMobileRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mobile/nano-banana-effects":{"post":{"tags":["Video: Edit & Effects"],"summary":"Nano Banana Effects","operationId":"nano_banana_effects_mobile_nano_banana_effects_post","parameters":[{"name":"x-app-key","in":"header","required":true,"schema":{"type":"string","description":"App key identifying the mobile app","title":"X-App-Key"},"description":"App key identifying the mobile app"},{"name":"authorization","in":"header","required":true,"schema":{"type":"string","title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NanoBananaEffectsMobileRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mobile/photo-pack":{"post":{"tags":["Image: Enhance"],"summary":"Photo Pack","operationId":"photo_pack_mobile_photo_pack_post","parameters":[{"name":"x-app-key","in":"header","required":true,"schema":{"type":"string","description":"App key identifying the mobile app","title":"X-App-Key"},"description":"App key identifying the mobile app"},{"name":"authorization","in":"header","required":true,"schema":{"type":"string","title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PhotoPackMobileRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mobile/portrait-stylist":{"post":{"tags":["Image: Enhance"],"summary":"Portrait Stylist","operationId":"portrait_stylist_mobile_portrait_stylist_post","parameters":[{"name":"x-app-key","in":"header","required":true,"schema":{"type":"string","description":"App key identifying the mobile app","title":"X-App-Key"},"description":"App key identifying the mobile app"},{"name":"authorization","in":"header","required":true,"schema":{"type":"string","title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PortraitStylistMobileRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mobile/kontext-effects":{"post":{"tags":["Video: Edit & Effects"],"summary":"Kontext Effects","operationId":"kontext_effects_mobile_kontext_effects_post","parameters":[{"name":"x-app-key","in":"header","required":true,"schema":{"type":"string","description":"App key identifying the mobile app","title":"X-App-Key"},"description":"App key identifying the mobile app"},{"name":"authorization","in":"header","required":true,"schema":{"type":"string","title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KontextEffectsMobileRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mobile/upload":{"post":{"tags":["Mobile"],"summary":"Upload File","operationId":"upload_file_mobile_upload_post","parameters":[{"name":"x-app-key","in":"header","required":true,"schema":{"type":"string","description":"App key identifying the mobile app","title":"X-App-Key"},"description":"App key identifying the mobile app"},{"name":"authorization","in":"header","required":true,"schema":{"type":"string","title":"Authorization"}}],"requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/Body_upload_file_mobile_upload_post"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mobile/jobs/{job_id}/result":{"get":{"tags":["Mobile"],"summary":"Job Result","operationId":"job_result_mobile_jobs__job_id__result_get","parameters":[{"name":"job_id","in":"path","required":true,"schema":{"type":"string","title":"Job Id"}},{"name":"authorization","in":"header","required":true,"schema":{"type":"string","title":"Authorization"}},{"name":"x-app-key","in":"header","required":true,"schema":{"type":"string","description":"App key identifying the mobile app","title":"X-App-Key"},"description":"App key identifying the mobile app"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mobile/jobs/{job_id}":{"delete":{"tags":["Mobile"],"summary":"Delete Job","operationId":"delete_job_mobile_jobs__job_id__delete","parameters":[{"name":"job_id","in":"path","required":true,"schema":{"type":"string","title":"Job Id"}},{"name":"authorization","in":"header","required":true,"schema":{"type":"string","title":"Authorization"}},{"name":"x-app-key","in":"header","required":true,"schema":{"type":"string","description":"App key identifying the mobile app","title":"X-App-Key"},"description":"App key identifying the mobile app"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mcp/{url_api_key}":{"get":{"tags":["MCP"],"summary":"Mcp Info","description":"Discovery endpoint — returns server info without authentication.","operationId":"mcp_info_mcp__url_api_key__get","parameters":[{"name":"url_api_key","in":"path","required":true,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Url Api Key"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"object","additionalProperties":true,"title":"Response Mcp Info Mcp  Url Api Key  Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["MCP"],"summary":"Mcp Endpoint","description":"Handle MCP JSON-RPC 2.0 requests over Streamable HTTP transport.","operationId":"mcp_endpoint_mcp__url_api_key__post","parameters":[{"name":"url_api_key","in":"path","required":true,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Url Api Key"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/mcp":{"get":{"tags":["MCP"],"summary":"Mcp Info","description":"Discovery endpoint — returns server info without authentication.","operationId":"mcp_info_mcp_get","parameters":[{"name":"url_api_key","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Url Api Key"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"object","additionalProperties":true,"title":"Response Mcp Info Mcp Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["MCP"],"summary":"Mcp Endpoint","description":"Handle MCP JSON-RPC 2.0 requests over Streamable HTTP transport.","operationId":"mcp_endpoint_mcp_post","parameters":[{"name":"url_api_key","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Url Api Key"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/teams":{"post":{"tags":["Teams"],"summary":"Create Team","operationId":"create_team_app_teams_post","requestBody":{"content":{"application/json":{"schema":{"additionalProperties":true,"type":"object","title":"Body"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Teams"],"summary":"Delete Team","operationId":"delete_team_app_teams_delete","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/app/teams/my":{"get":{"tags":["Teams"],"summary":"Get My Teams","operationId":"get_my_teams_app_teams_my_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/app/teams/invite":{"post":{"tags":["Teams"],"summary":"Invite Member","operationId":"invite_member_app_teams_invite_post","requestBody":{"content":{"application/json":{"schema":{"additionalProperties":true,"type":"object","title":"Body"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/teams/accept/{token}":{"post":{"tags":["Teams"],"summary":"Accept Invite","operationId":"accept_invite_app_teams_accept__token__post","parameters":[{"name":"token","in":"path","required":true,"schema":{"type":"string","title":"Token"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/teams/members/{member_id}":{"patch":{"tags":["Teams"],"summary":"Update Member Role","operationId":"update_member_role_app_teams_members__member_id__patch","parameters":[{"name":"member_id","in":"path","required":true,"schema":{"type":"integer","title":"Member Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","additionalProperties":true,"title":"Body"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Teams"],"summary":"Remove Member","operationId":"remove_member_app_teams_members__member_id__delete","parameters":[{"name":"member_id","in":"path","required":true,"schema":{"type":"integer","title":"Member Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/teams/leave/{team_id}":{"delete":{"tags":["Teams"],"summary":"Leave Team","operationId":"leave_team_app_teams_leave__team_id__delete","parameters":[{"name":"team_id","in":"path","required":true,"schema":{"type":"integer","title":"Team Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/creative-agent/sessions":{"get":{"tags":["Creative Agent"],"summary":"List Sessions","operationId":"list_sessions_api_v1_creative_agent_sessions_get","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Creative Agent"],"summary":"Create Session","operationId":"create_session_api_v1_creative_agent_sessions_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"content":{"application/json":{"schema":{"anyOf":[{"$ref":"#/components/schemas/CreateSessionRequest"},{"type":"null"}],"title":"Req"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/creative-agent/sessions/{session_id}":{"patch":{"tags":["Creative Agent"],"summary":"Update Session","operationId":"update_session_api_v1_creative_agent_sessions__session_id__patch","parameters":[{"name":"session_id","in":"path","required":true,"schema":{"type":"string","title":"Session Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateSessionRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Creative Agent"],"summary":"Delete Session","operationId":"delete_session_api_v1_creative_agent_sessions__session_id__delete","parameters":[{"name":"session_id","in":"path","required":true,"schema":{"type":"string","title":"Session Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/creative-agent/sessions/{session_id}/assets":{"get":{"tags":["Creative Agent"],"summary":"Get Session Assets","operationId":"get_session_assets_api_v1_creative_agent_sessions__session_id__assets_get","parameters":[{"name":"session_id","in":"path","required":true,"schema":{"type":"string","title":"Session Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Creative Agent"],"summary":"Register Session Asset","description":"Register an externally-uploaded asset against a session so the agent can\nreference it as `asset_N` in subsequent turns. WebSession picks these up on\ninit via `db_row.assets`, so the LLM sees them immediately.","operationId":"register_session_asset_api_v1_creative_agent_sessions__session_id__assets_post","parameters":[{"name":"session_id","in":"path","required":true,"schema":{"type":"string","title":"Session Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegisterAssetRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/creative-agent/sessions/{session_id}/messages":{"get":{"tags":["Creative Agent"],"summary":"Get Session Messages","description":"Return the stored chat history for a session.","operationId":"get_session_messages_api_v1_creative_agent_sessions__session_id__messages_get","parameters":[{"name":"session_id","in":"path","required":true,"schema":{"type":"string","title":"Session Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"patch":{"tags":["Creative Agent"],"summary":"Save Session Messages","description":"Persist the full chat history for a session (called after each turn).","operationId":"save_session_messages_api_v1_creative_agent_sessions__session_id__messages_patch","parameters":[{"name":"session_id","in":"path","required":true,"schema":{"type":"string","title":"Session Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SaveMessagesRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/creative-agent/sessions/{session_id}/canvas_state":{"get":{"tags":["Creative Agent"],"summary":"Get Session Canvas State","description":"Return the persisted canvas layout (positions + viewport) for a session.\nFrontend fetches this on session open so assets render at their last\npositions instead of stacking at canvas centre. Returns {} for sessions\nthat haven't had any layout written yet.","operationId":"get_session_canvas_state_api_v1_creative_agent_sessions__session_id__canvas_state_get","parameters":[{"name":"session_id","in":"path","required":true,"schema":{"type":"string","title":"Session Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"patch":{"tags":["Creative Agent"],"summary":"Save Session Canvas State","description":"Persist the canvas layout immediately after a direct-manipulation edit\n(delete, move, resize) that isn't part of a chat turn — without this, such\nedits are lost on refresh since canvas_state otherwise only saves as a\nside-effect of sending a chat message.","operationId":"save_session_canvas_state_api_v1_creative_agent_sessions__session_id__canvas_state_patch","parameters":[{"name":"session_id","in":"path","required":true,"schema":{"type":"string","title":"Session Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SaveCanvasStateRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/creative-agent/sessions/{session_id}/chat":{"post":{"tags":["Creative Agent"],"summary":"Chat","description":"Enqueue one agent turn. Returns the job_id immediately; the SAQ worker\nruns the turn and writes streamed events into the creative_agent_events\ntable. Frontend polls GET /jobs/{id}/events?since=cursor for progress.","operationId":"chat_api_v1_creative_agent_sessions__session_id__chat_post","parameters":[{"name":"session_id","in":"path","required":true,"schema":{"type":"string","title":"Session Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/app__routers__creative_agent_router__ChatRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/creative-agent/agent-skills":{"get":{"tags":["Creative Agent"],"summary":"List Agent Skills","description":"List high-level agent recipes (from agent/skills/*.skill.md).","operationId":"list_agent_skills_api_v1_creative_agent_agent_skills_get","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/creative-agent/sessions/{session_id}/run-skill":{"post":{"tags":["Creative Agent"],"summary":"Run Skill","description":"Trigger a specific agent skill directly, bypassing auto-intent-detection.","operationId":"run_skill_api_v1_creative_agent_sessions__session_id__run_skill_post","parameters":[{"name":"session_id","in":"path","required":true,"schema":{"type":"string","title":"Session Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RunSkillRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/creative-agent/jobs/{job_id}/events":{"get":{"tags":["Creative Agent"],"summary":"Poll Job Events","description":"Cursor-paginated event feed for a single agent turn.\n\nReturns:\n  { status: pending|processing|completed|failed,\n    cursor: <last id seen, pass back as `since`>,\n    events: [{id, type, payload, created_at}, ...],\n    error: <only set on failed>,\n    done: <true once the worker has finalised the job> }\n\nFrontend should poll every 1-2s while `done` is false.","operationId":"poll_job_events_api_v1_creative_agent_jobs__job_id__events_get","parameters":[{"name":"job_id","in":"path","required":true,"schema":{"type":"string","title":"Job Id"}},{"name":"since","in":"query","required":false,"schema":{"type":"integer","default":0,"title":"Since"}},{"name":"limit","in":"query","required":false,"schema":{"type":"integer","default":200,"title":"Limit"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/creative-agent/sessions/{session_id}/jobs":{"get":{"tags":["Creative Agent"],"summary":"List Session Jobs","description":"Recent jobs for a session — useful for resuming after a refresh.","operationId":"list_session_jobs_api_v1_creative_agent_sessions__session_id__jobs_get","parameters":[{"name":"session_id","in":"path","required":true,"schema":{"type":"string","title":"Session Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/creative-agent/jobs/{job_id}/cancel":{"post":{"tags":["Creative Agent"],"summary":"Cancel Job","description":"Mark a job as cancelled. The SAQ worker checks this flag at safe points\n(between tool calls); upstream Muapi requests already in flight still\nfinish, but no new tool calls are dispatched.","operationId":"cancel_job_api_v1_creative_agent_jobs__job_id__cancel_post","parameters":[{"name":"job_id","in":"path","required":true,"schema":{"type":"string","title":"Job Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/creative-agent/jobs/{job_id}/approve":{"post":{"tags":["Creative Agent"],"summary":"Approve Job","description":"Approve a pending plan for a job.","operationId":"approve_job_api_v1_creative_agent_jobs__job_id__approve_post","parameters":[{"name":"job_id","in":"path","required":true,"schema":{"type":"string","title":"Job Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/creative-agent/jobs/{job_id}/reject":{"post":{"tags":["Creative Agent"],"summary":"Reject Job","description":"Reject a pending plan for a job.","operationId":"reject_job_api_v1_creative_agent_jobs__job_id__reject_post","parameters":[{"name":"job_id","in":"path","required":true,"schema":{"type":"string","title":"Job Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/creative-agent/jobs/{job_id}/reply":{"post":{"tags":["Creative Agent"],"summary":"Reply Job","description":"Submit a reply to a clarifying question (ask_user) for a job.","operationId":"reply_job_api_v1_creative_agent_jobs__job_id__reply_post","parameters":[{"name":"job_id","in":"path","required":true,"schema":{"type":"string","title":"Job Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ReplyJobRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/creative-agent/admin/sessions/{session_id}/debug":{"get":{"tags":["Creative Agent"],"summary":"Admin Session Debug","description":"Admin-only: return the full debug bundle for a session — same JSON the\n`scripts/dump_session.py` CLI produces. Use this when a user reports a\nfailure: ask them for the session-id from the URL, then GET this endpoint\nand paste the JSON into a Claude Code conversation for diagnosis.","operationId":"admin_session_debug_api_v1_creative_agent_admin_sessions__session_id__debug_get","parameters":[{"name":"session_id","in":"path","required":true,"schema":{"type":"string","title":"Session Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/agent-embeds":{"get":{"tags":["Agent Embeds"],"summary":"List Agent Embeds","operationId":"list_agent_embeds_api_v1_agent_embeds_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}},"post":{"tags":["Agent Embeds"],"summary":"Create Agent Embed","operationId":"create_agent_embed_api_v1_agent_embeds_post","requestBody":{"content":{"application/json":{"schema":{"anyOf":[{"$ref":"#/components/schemas/CreateAgentEmbedRequest"},{"type":"null"}],"title":"Req"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/agent-embeds/{embed_id}":{"patch":{"tags":["Agent Embeds"],"summary":"Update Agent Embed","operationId":"update_agent_embed_api_v1_agent_embeds__embed_id__patch","parameters":[{"name":"embed_id","in":"path","required":true,"schema":{"type":"string","title":"Embed Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateAgentEmbedRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Agent Embeds"],"summary":"Delete Agent Embed","operationId":"delete_agent_embed_api_v1_agent_embeds__embed_id__delete","parameters":[{"name":"embed_id","in":"path","required":true,"schema":{"type":"string","title":"Embed Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/social/accounts":{"get":{"tags":["Social"],"summary":"List Accounts","description":"List all connected social accounts for the current user.","operationId":"list_accounts_social_accounts_get","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/social/accounts/{account_id}":{"delete":{"tags":["Social"],"summary":"Disconnect Account","description":"Permanently remove a connected social account by its id.\n\nFor PostForMe-backed platforms (TikTok/Instagram/etc.) this also deletes\nthe account on PostForMe's side, freeing it up to be connected again\nunder a different external_id. To keep the account's history and just\nrevoke access instead, use POST /accounts/{account_id}/disconnect.","operationId":"disconnect_account_social_accounts__account_id__delete","parameters":[{"name":"account_id","in":"path","required":true,"schema":{"type":"integer","title":"Account Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"patch":{"tags":["Social"],"summary":"Rename Account","description":"Update the display name of a connected account.","operationId":"rename_account_social_accounts__account_id__patch","parameters":[{"name":"account_id","in":"path","required":true,"schema":{"type":"integer","title":"Account Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RenameRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/social/accounts/{account_id}/disconnect":{"post":{"tags":["Social"],"summary":"Soft Disconnect Account","description":"Revoke access for a connected account without deleting it.\n\nThe account stops working for publishing until reconnected, but its row\n(name, id, external_user_id if any) is kept. For PostForMe-backed\nplatforms (TikTok/Instagram) reconnecting the same underlying account\nreactivates this row (postforme_connect_callback dedupes by\nplatform_user_id and clears disconnected_at). YouTube's direct OAuth\ncallback does not dedupe on reconnect, so reauthorizing the same channel\ncreates a new row instead — pre-existing behavior, unrelated to this.","operationId":"soft_disconnect_account_social_accounts__account_id__disconnect_post","parameters":[{"name":"account_id","in":"path","required":true,"schema":{"type":"integer","title":"Account Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/social/integration-interest":{"post":{"tags":["Social"],"summary":"Register Integration Interest","description":"Register the current user's interest in a coming-soon integration.","operationId":"register_integration_interest_social_integration_interest_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/IntegrationInterestRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/social/integration-interests":{"get":{"tags":["Social"],"summary":"Get Integration Interests","description":"List the platform names the current user has requested access to.","operationId":"get_integration_interests_social_integration_interests_get","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/social/integration-interest-counts":{"get":{"tags":["Social"],"summary":"Get Integration Interest Counts","description":"Public: total request count per platform_name for /integrations ordering.","operationId":"get_integration_interest_counts_social_integration_interest_counts_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/social/youtube/authorize":{"get":{"tags":["Social"],"summary":"Youtube Authorize","description":"Start YouTube OAuth. account_name is the user-facing label for this connection.","operationId":"youtube_authorize_social_youtube_authorize_get","parameters":[{"name":"account_name","in":"query","required":false,"schema":{"type":"string","default":"","title":"Account Name"}},{"name":"redirect_to","in":"query","required":false,"schema":{"type":"string","default":"/","title":"Redirect To"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/social/youtube/callback":{"get":{"tags":["Social"],"summary":"Youtube Callback","operationId":"youtube_callback_social_youtube_callback_get","parameters":[{"name":"code","in":"query","required":true,"schema":{"type":"string","title":"Code"}},{"name":"state","in":"query","required":true,"schema":{"type":"string","title":"State"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/social/youtube/ext-callback":{"get":{"tags":["Social"],"summary":"Youtube Ext Callback","description":"OAuth callback for developer-managed end-user YouTube connections.\n\nDevelopers generate a connect URL via POST /api/v1/social/youtube/connect-url.\nAfter the user consents, Google redirects here. The resulting\nConnectedSocialAccount is owned by the developer (user_id = developer's\nmuapi user_id) and tagged with external_user_id so they can look up and\npublish to their users' channels later.\n\nRegister https://<HOST>/api/social/youtube/ext-callback as a redirect URI\nin the Google Cloud Console alongside the standard /youtube/callback URI.","operationId":"youtube_ext_callback_social_youtube_ext_callback_get","parameters":[{"name":"code","in":"query","required":true,"schema":{"type":"string","title":"Code"}},{"name":"state","in":"query","required":true,"schema":{"type":"string","title":"State"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/social/tiktok/login":{"post":{"tags":["Social"],"summary":"Tiktok Login","description":"Initiate TikTok PKCE flow. Frontend generates code_verifier/code_challenge.\nReturns the TikTok authorization URL to redirect the user to.","operationId":"tiktok_login_social_tiktok_login_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TikTokLoginRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/social/tiktok/callback":{"get":{"tags":["Social"],"summary":"Tiktok Callback","operationId":"tiktok_callback_social_tiktok_callback_get","parameters":[{"name":"code","in":"query","required":true,"schema":{"type":"string","title":"Code"}},{"name":"state","in":"query","required":true,"schema":{"type":"string","title":"State"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/social/tiktok/connect":{"get":{"tags":["Social"],"summary":"Tiktok Connect","description":"Start TikTok connection flow via white-labeled proxy.","operationId":"tiktok_connect_social_tiktok_connect_get","parameters":[{"name":"account_name","in":"query","required":false,"schema":{"type":"string","default":"","title":"Account Name"}},{"name":"redirect_to","in":"query","required":false,"schema":{"type":"string","default":"/","title":"Redirect To"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/social/instagram/connect":{"get":{"tags":["Social"],"summary":"Instagram Connect","description":"Start Instagram connection flow via PostForMe.","operationId":"instagram_connect_social_instagram_connect_get","parameters":[{"name":"account_name","in":"query","required":false,"schema":{"type":"string","default":"","title":"Account Name"}},{"name":"redirect_to","in":"query","required":false,"schema":{"type":"string","default":"/","title":"Redirect To"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/social/facebook/connect":{"get":{"tags":["Social"],"summary":"Facebook Connect","description":"Start Facebook connection flow via PostForMe.","operationId":"facebook_connect_social_facebook_connect_get","parameters":[{"name":"account_name","in":"query","required":false,"schema":{"type":"string","default":"","title":"Account Name"}},{"name":"redirect_to","in":"query","required":false,"schema":{"type":"string","default":"/","title":"Redirect To"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/social/linkedin/connect":{"get":{"tags":["Social"],"summary":"Linkedin Connect","description":"Start LinkedIn connection flow via PostForMe.","operationId":"linkedin_connect_social_linkedin_connect_get","parameters":[{"name":"account_name","in":"query","required":false,"schema":{"type":"string","default":"","title":"Account Name"}},{"name":"redirect_to","in":"query","required":false,"schema":{"type":"string","default":"/","title":"Redirect To"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/social/x/connect":{"get":{"tags":["Social"],"summary":"X Connect","description":"Start X (Twitter) connection flow via PostForMe.","operationId":"x_connect_social_x_connect_get","parameters":[{"name":"account_name","in":"query","required":false,"schema":{"type":"string","default":"","title":"Account Name"}},{"name":"redirect_to","in":"query","required":false,"schema":{"type":"string","default":"/","title":"Redirect To"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/social/threads/connect":{"get":{"tags":["Social"],"summary":"Threads Connect","description":"Start Threads connection flow via PostForMe.","operationId":"threads_connect_social_threads_connect_get","parameters":[{"name":"account_name","in":"query","required":false,"schema":{"type":"string","default":"","title":"Account Name"}},{"name":"redirect_to","in":"query","required":false,"schema":{"type":"string","default":"/","title":"Redirect To"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/social/pinterest/connect":{"get":{"tags":["Social"],"summary":"Pinterest Connect","description":"Start Pinterest connection flow via PostForMe.","operationId":"pinterest_connect_social_pinterest_connect_get","parameters":[{"name":"account_name","in":"query","required":false,"schema":{"type":"string","default":"","title":"Account Name"}},{"name":"redirect_to","in":"query","required":false,"schema":{"type":"string","default":"/","title":"Redirect To"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/social/app/callback":{"get":{"tags":["Social"],"summary":"Postforme Connect Callback","description":"Generic PostForMe OAuth callback. Handles TikTok, Instagram, Facebook, LinkedIn, X.","operationId":"postforme_connect_callback_social_app_callback_get","parameters":[{"name":"provider","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Provider"}},{"name":"projectId","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Projectid"}},{"name":"isSuccess","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Issuccess"}},{"name":"accountIds","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Accountids"}},{"name":"external_id","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"External Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/social/instagram/authorize":{"get":{"tags":["Social"],"summary":"Instagram Authorize","description":"Start Instagram OAuth. account_name is the user-facing label for this connection.","operationId":"instagram_authorize_social_instagram_authorize_get","parameters":[{"name":"account_name","in":"query","required":false,"schema":{"type":"string","default":"","title":"Account Name"}},{"name":"redirect_to","in":"query","required":false,"schema":{"type":"string","default":"/","title":"Redirect To"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/social/instagram/callback":{"get":{"tags":["Social"],"summary":"Instagram Callback","operationId":"instagram_callback_social_instagram_callback_get","parameters":[{"name":"code","in":"query","required":true,"schema":{"type":"string","title":"Code"}},{"name":"state","in":"query","required":true,"schema":{"type":"string","title":"State"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/social/publish":{"post":{"tags":["Social"],"summary":"Publish Media","description":"Publish or schedule a media URL to a specific connected social account.\n\nIf scheduled_at is omitted, publishes immediately.\nIf scheduled_at is provided (ISO 8601), saves to the queue and returns\n{\"status\": \"scheduled\", \"id\": <post_id>, \"scheduled_at\": \"...\"}.","operationId":"publish_media_social_publish_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PublishRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/social/posts":{"get":{"tags":["Social"],"summary":"List Posts","description":"List all scheduled/published posts for the current user.","operationId":"list_posts_social_posts_get","parameters":[{"name":"status","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Filter by status: draft, scheduled, processing, published, failed, cancelled","title":"Status"},"description":"Filter by status: draft, scheduled, processing, published, failed, cancelled"},{"name":"account_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"description":"Filter by connected account id","title":"Account Id"},"description":"Filter by connected account id"},{"name":"limit","in":"query","required":false,"schema":{"type":"integer","maximum":200,"default":50,"title":"Limit"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/social/posts/{post_id}":{"delete":{"tags":["Social"],"summary":"Delete Post","description":"Permanently delete a scheduled or failed post.","operationId":"delete_post_social_posts__post_id__delete","parameters":[{"name":"post_id","in":"path","required":true,"schema":{"type":"integer","title":"Post Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"patch":{"tags":["Social"],"summary":"Update Post Status","description":"Update the status of a scheduled post (e.g. cancel it or re-queue a failed post).","operationId":"update_post_status_social_posts__post_id__patch","parameters":[{"name":"post_id","in":"path","required":true,"schema":{"type":"integer","title":"Post Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PostStatusUpdate"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/zapier/auth/test":{"get":{"tags":["Zapier"],"summary":"Zapier Auth Test","description":"Auth verification endpoint for Zapier. Returns user info.","operationId":"zapier_auth_test_api_v1_zapier_auth_test_get","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/zapier/hooks/subscribe":{"post":{"tags":["Zapier"],"summary":"Zapier Subscribe","description":"Subscribes Zapier's webhook URL to completed events.","operationId":"zapier_subscribe_api_v1_zapier_hooks_subscribe_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ZapierSubscribeRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/zapier/hooks/unsubscribe/{id}":{"delete":{"tags":["Zapier"],"summary":"Zapier Unsubscribe","description":"Deregisters a subscription hook.","operationId":"zapier_unsubscribe_api_v1_zapier_hooks_unsubscribe__id__delete","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","title":"Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/zapier/triggers/completed-generations":{"get":{"tags":["Zapier"],"summary":"Zapier Polling Completed Generations","description":"Fallback polling endpoint for sample generation data.","operationId":"zapier_polling_completed_generations_api_v1_zapier_triggers_completed_generations_get","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/zapier/models":{"get":{"tags":["Zapier"],"summary":"List Zapier Models","description":"Returns a list of all enabled models for dropdowns in Zapier, optionally filtered by category.","operationId":"list_zapier_models_api_v1_zapier_models_get","parameters":[{"name":"category","in":"query","required":false,"schema":{"type":"string","title":"Category"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/zapier/fields":{"get":{"tags":["Zapier"],"summary":"Get Zapier Fields","description":"Returns Zapier-compatible dynamic fields for a specific model based on schema_data.json.","operationId":"get_zapier_fields_api_v1_zapier_fields_get","parameters":[{"name":"model","in":"query","required":true,"schema":{"type":"string","title":"Model"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/zapier/run":{"post":{"tags":["Zapier"],"summary":"Zapier Run Model","description":"Executes any model generation request by forwarding it to the appropriate endpoint.","operationId":"zapier_run_model_api_v1_zapier_run_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ZapierRunRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/make/auth/test":{"get":{"tags":["Make"],"summary":"Make Auth Test","description":"Auth verification endpoint for Make.com. Returns user info.","operationId":"make_auth_test_api_v1_make_auth_test_get","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/make/hooks/subscribe":{"post":{"tags":["Make"],"summary":"Make Subscribe","description":"Subscribes Make.com's webhook URL to completed events.","operationId":"make_subscribe_api_v1_make_hooks_subscribe_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MakeSubscribeRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/make/hooks/unsubscribe/{id}":{"delete":{"tags":["Make"],"summary":"Make Unsubscribe","description":"Deregisters a Make.com subscription hook.","operationId":"make_unsubscribe_api_v1_make_hooks_unsubscribe__id__delete","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","title":"Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/make/hooks/list":{"get":{"tags":["Make"],"summary":"Make Hooks List","description":"Lists all active Make.com webhook subscriptions for the authenticated user.","operationId":"make_hooks_list_api_v1_make_hooks_list_get","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/make/triggers/completed-generations":{"get":{"tags":["Make"],"summary":"Make Polling Completed Generations","description":"Fallback polling endpoint for sample generation data.","operationId":"make_polling_completed_generations_api_v1_make_triggers_completed_generations_get","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/make/models":{"get":{"tags":["Make"],"summary":"List Make Models","description":"Returns a list of all enabled models for dropdowns in Make, optionally filtered by category.","operationId":"list_make_models_api_v1_make_models_get","parameters":[{"name":"category","in":"query","required":false,"schema":{"type":"string","title":"Category"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/make/fields":{"get":{"tags":["Make"],"summary":"Get Make Fields","description":"Returns Make-compatible dynamic fields for a specific model based on schema_data.json.","operationId":"get_make_fields_api_v1_make_fields_get","parameters":[{"name":"model","in":"query","required":true,"schema":{"type":"string","title":"Model"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/make/run":{"post":{"tags":["Make"],"summary":"Make Run Model","description":"Executes any model generation request by forwarding it to the appropriate endpoint.","operationId":"make_run_model_api_v1_make_run_post","parameters":[{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MakeRunRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/make/predictions/{id}/result":{"get":{"tags":["Make"],"summary":"Get Make Prediction Result","description":"Retrieve prediction result for Make.com by request ID.","operationId":"get_make_prediction_result_api_v1_make_predictions__id__result_get","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","title":"Id"}},{"name":"team_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Team Id"}},{"name":"x-api-key","in":"header","required":false,"schema":{"type":"string","title":"X-Api-Key"}},{"name":"x-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Embed-Code"}},{"name":"x-agent-embed-code","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Agent-Embed-Code"}},{"name":"x-whitelabel-studio","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Whitelabel-Studio"}},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/models":{"get":{"tags":["OpenAI Compatible"],"summary":"List Models","operationId":"list_models_v1_models_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/v1/images/generations":{"post":{"tags":["OpenAI Compatible"],"summary":"Images Generations","operationId":"images_generations_v1_images_generations_post","parameters":[{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}},{"name":"x-api-key","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Api-Key"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/_ImageGenRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/whitelabel/config":{"get":{"tags":["White-Label"],"summary":"Get Whitelabel Config","operationId":"get_whitelabel_config_whitelabel_config_get","parameters":[{"name":"slug","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"}},{"name":"domain","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Domain"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/whitelabel/domain-check":{"get":{"tags":["White-Label"],"summary":"Whitelabel Domain Check","description":"Cert-issuance gate for Caddy's on-demand TLS `ask` callback.\n\nCaddy calls this before requesting a Let's Encrypt cert for a hostname it has never\nseen before; a non-200 response means \"don't issue a cert for this domain.\" Only a\ndomain that's passed our own DNS TXT verification (see whitelabel_owner_router's\ncheck_custom_domain_txt_record) is eligible, so a stranger pointing an unrelated\ndomain at our IP can't get us to burn Let's Encrypt's per-domain rate limit on their behalf.","operationId":"whitelabel_domain_check_whitelabel_domain_check_get","parameters":[{"name":"domain","in":"query","required":true,"schema":{"type":"string","title":"Domain"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/whitelabel/auth/register":{"post":{"tags":["White-Label"],"summary":"Whitelabel Register","operationId":"whitelabel_register_whitelabel_auth_register_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WhitelabelRegisterRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/whitelabel/auth/verify-otp":{"post":{"tags":["White-Label"],"summary":"Whitelabel Verify Otp","operationId":"whitelabel_verify_otp_whitelabel_auth_verify_otp_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WhitelabelVerifyOtpRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/whitelabel/auth/resend-otp":{"post":{"tags":["White-Label"],"summary":"Whitelabel Resend Otp","operationId":"whitelabel_resend_otp_whitelabel_auth_resend_otp_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WhitelabelResendOtpRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/whitelabel/auth/forgot-password":{"post":{"tags":["White-Label"],"summary":"Whitelabel Forgot Password","description":"Send a password-reset OTP to the user's email. Always returns a generic 200 to prevent user enumeration.","operationId":"whitelabel_forgot_password_whitelabel_auth_forgot_password_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WhitelabelForgotPasswordRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/whitelabel/auth/reset-password":{"post":{"tags":["White-Label"],"summary":"Whitelabel Reset Password","description":"Verify the reset OTP and update the user's password.","operationId":"whitelabel_reset_password_whitelabel_auth_reset_password_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WhitelabelResetPasswordRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/whitelabel/auth/login":{"post":{"tags":["White-Label"],"summary":"Whitelabel Login","operationId":"whitelabel_login_whitelabel_auth_login_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WhitelabelLoginRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/whitelabel/auth/logout":{"post":{"tags":["White-Label"],"summary":"Whitelabel Logout","operationId":"whitelabel_logout_whitelabel_auth_logout_post","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/whitelabel/balance":{"get":{"tags":["White-Label"],"summary":"Get Whitelabel Balance","operationId":"get_whitelabel_balance_whitelabel_balance_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/whitelabel/payments/checkout":{"post":{"tags":["White-Label"],"summary":"Create Whitelabel Checkout","description":"Create Checkout in the owner's independent Stripe account, never Muapi's.","operationId":"create_whitelabel_checkout_whitelabel_payments_checkout_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WhitelabelTopupRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/whitelabel/payments/subscribe":{"post":{"tags":["White-Label"],"summary":"Create Whitelabel Subscription Checkout","description":"Create a subscription Checkout in the owner's independent Stripe account for end-user tiers.","operationId":"create_whitelabel_subscription_checkout_whitelabel_payments_subscribe_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WhitelabelSubscribeRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/whitelabel/owner/custom-domain/recheck":{"post":{"tags":["White-Label Owner"],"summary":"Recheck Custom Domain","operationId":"recheck_custom_domain_whitelabel_owner_custom_domain_recheck_post","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/whitelabel/owner/instance":{"get":{"tags":["White-Label Owner"],"summary":"Get Owner Instance","operationId":"get_owner_instance_whitelabel_owner_instance_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}},"post":{"tags":["White-Label Owner"],"summary":"Create Owner Instance","operationId":"create_owner_instance_whitelabel_owner_instance_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WhitelabelInstanceCreate"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"patch":{"tags":["White-Label Owner"],"summary":"Update Owner Instance","operationId":"update_owner_instance_whitelabel_owner_instance_patch","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WhitelabelInstanceUpdate"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/whitelabel/owner/upload":{"post":{"tags":["White-Label Owner"],"summary":"Upload Owner Asset","operationId":"upload_owner_asset_whitelabel_owner_upload_post","requestBody":{"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/Body_upload_owner_asset_whitelabel_owner_upload_post"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/whitelabel/owner/stripe-credentials":{"put":{"tags":["White-Label Owner"],"summary":"Update Owner Stripe Credentials","description":"Store credentials for the owner's independent Stripe account.\n\nStripe Connect is deliberately not used: Checkout sessions and payment\nfunds belong to this owner's Stripe account. The webhook secret lets Muapi\nverify events without accepting unsigned client-side confirmation.","operationId":"update_owner_stripe_credentials_whitelabel_owner_stripe_credentials_put","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/StripeCredentialsUpdate"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["White-Label Owner"],"summary":"Remove Owner Stripe Credentials","operationId":"remove_owner_stripe_credentials_whitelabel_owner_stripe_credentials_delete","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/whitelabel/owner/smtp-credentials":{"put":{"tags":["White-Label Owner"],"summary":"Update Owner Smtp Credentials","description":"Store credentials for the owner's own SMTP server. Optional — when unset,\nwhite-label OTP/password-reset email keeps sending via Muapi's own SES identity.","operationId":"update_owner_smtp_credentials_whitelabel_owner_smtp_credentials_put","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SmtpCredentialsUpdate"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["White-Label Owner"],"summary":"Remove Owner Smtp Credentials","operationId":"remove_owner_smtp_credentials_whitelabel_owner_smtp_credentials_delete","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/whitelabel/owner/users":{"get":{"tags":["White-Label Owner"],"summary":"List White Label Users","operationId":"list_white_label_users_whitelabel_owner_users_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/whitelabel/owner/users/{whitelabel_user_id}/credit-adjustments":{"post":{"tags":["White-Label Owner"],"summary":"Adjust White Label Credits","operationId":"adjust_white_label_credits_whitelabel_owner_users__whitelabel_user_id__credit_adjustments_post","parameters":[{"name":"whitelabel_user_id","in":"path","required":true,"schema":{"type":"integer","title":"Whitelabel User Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WhiteLabelCreditAdjustmentRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/whitelabel/owner/users/{whitelabel_user_id}/ban":{"put":{"tags":["White-Label Owner"],"summary":"Set White Label User Ban","operationId":"set_white_label_user_ban_whitelabel_owner_users__whitelabel_user_id__ban_put","parameters":[{"name":"whitelabel_user_id","in":"path","required":true,"schema":{"type":"integer","title":"Whitelabel User Id"}},{"name":"banned","in":"query","required":true,"schema":{"type":"boolean","title":"Banned"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/whitelabel/owner/subscription-tiers":{"get":{"tags":["White-Label Owner"],"summary":"List Subscription Tiers","operationId":"list_subscription_tiers_whitelabel_owner_subscription_tiers_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}},"post":{"tags":["White-Label Owner"],"summary":"Create Subscription Tier","operationId":"create_subscription_tier_whitelabel_owner_subscription_tiers_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WhitelabelSubscriptionTierCreate"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/whitelabel/owner/subscription-tiers/{tier_id}":{"patch":{"tags":["White-Label Owner"],"summary":"Update Subscription Tier","operationId":"update_subscription_tier_whitelabel_owner_subscription_tiers__tier_id__patch","parameters":[{"name":"tier_id","in":"path","required":true,"schema":{"type":"integer","title":"Tier Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WhitelabelSubscriptionTierUpdate"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["White-Label Owner"],"summary":"Delete Subscription Tier","operationId":"delete_subscription_tier_whitelabel_owner_subscription_tiers__tier_id__delete","parameters":[{"name":"tier_id","in":"path","required":true,"schema":{"type":"integer","title":"Tier Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/whitelabel/owner/subscription/checkout":{"post":{"tags":["White-Label Owner"],"summary":"Create Whitelabel Subscription Checkout Endpoint","operationId":"create_whitelabel_subscription_checkout_endpoint_whitelabel_owner_subscription_checkout_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WhitelabelSubscriptionCheckoutRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/whitelabel/owner/subscription/change":{"post":{"tags":["White-Label Owner"],"summary":"Change Whitelabel Subscription Plan","description":"Change the plan on an existing active platform subscription. Upgrades apply\nimmediately (charged pro-rated now); downgrades are scheduled for the next\nbilling cycle (applied by the `invoice.paid` webhook handler).","operationId":"change_whitelabel_subscription_plan_whitelabel_owner_subscription_change_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WhitelabelSubscriptionCheckoutRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/docs-chat":{"post":{"tags":["Docs Chat"],"summary":"Docs Chat","description":"Stream a RAG-powered chatbot reply for the Muapi documentation & live user details,\nand save the user prompt and chatbot response with timestamps to docs_chat_logs.","operationId":"docs_chat_app_docs_chat_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/app__routers__docs_chat_router__ChatRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/docs-chat/status":{"get":{"tags":["Docs Chat"],"summary":"Docs Chat Status","description":"Returns whether the vector store is built and ready.","operationId":"docs_chat_status_app_docs_chat_status_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/app/admin/docs-chat/users":{"get":{"tags":["Docs Chat"],"summary":"Admin Get Docs Chat Users","description":"Returns list of distinct users/guests who have chat logs in docs_chat_logs.\nGated: Only callers whose logged-in email is in ALLOWED_WHITELABEL_TEST_MODE_EMAILS are granted access.","operationId":"admin_get_docs_chat_users_app_admin_docs_chat_users_get","parameters":[{"name":"q","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Q"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/app/admin/docs-chat/messages":{"get":{"tags":["Docs Chat"],"summary":"Admin Get Docs Chat Messages","description":"Returns full chat history messages for a selected user.\nGated: Only callers whose logged-in email is in ALLOWED_WHITELABEL_TEST_MODE_EMAILS are granted access.","operationId":"admin_get_docs_chat_messages_app_admin_docs_chat_messages_get","parameters":[{"name":"user_id","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"User Id"}},{"name":"email","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Email"}},{"name":"is_guest","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"default":false,"title":"Is Guest"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/oauth/scopes":{"get":{"tags":["OAuth"],"summary":"List Scopes","description":"Machine-readable scope catalog — also embedded in the OpenAPI security\nscheme and the RFC 8414 / RFC 9728 .well-known metadata.","operationId":"list_scopes_oauth_scopes_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/oauth/clients":{"get":{"tags":["OAuth"],"summary":"List Oauth Clients","operationId":"list_oauth_clients_oauth_clients_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/OAuthClientOut"},"type":"array","title":"Response List Oauth Clients Oauth Clients Get"}}}}}},"post":{"tags":["OAuth"],"summary":"Create Oauth Client","operationId":"create_oauth_client_oauth_clients_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateOAuthClientRequest"}}},"required":true},"responses":{"201":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OAuthClientCreatedOut"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/oauth/clients/{client_pk}":{"delete":{"tags":["OAuth"],"summary":"Revoke Oauth Client","operationId":"revoke_oauth_client_oauth_clients__client_pk__delete","parameters":[{"name":"client_pk","in":"path","required":true,"schema":{"type":"integer","title":"Client Pk"}}],"responses":{"204":{"description":"Successful Response"},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/oauth/register":{"post":{"tags":["OAuth"],"summary":"Register Client","operationId":"register_client_oauth_register_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegisterClientRequest"}}},"required":true},"responses":{"201":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/oauth/authorize":{"get":{"tags":["OAuth"],"summary":"Authorize Get","operationId":"authorize_get_oauth_authorize_get","parameters":[{"name":"response_type","in":"query","required":true,"schema":{"type":"string","title":"Response Type"}},{"name":"client_id","in":"query","required":true,"schema":{"type":"string","title":"Client Id"}},{"name":"redirect_uri","in":"query","required":true,"schema":{"type":"string","title":"Redirect Uri"}},{"name":"scope","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Scope"}},{"name":"state","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"State"}},{"name":"code_challenge","in":"query","required":true,"schema":{"type":"string","title":"Code Challenge"}},{"name":"code_challenge_method","in":"query","required":false,"schema":{"type":"string","default":"S256","title":"Code Challenge Method"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["OAuth"],"summary":"Authorize Post","operationId":"authorize_post_oauth_authorize_post","requestBody":{"required":true,"content":{"application/x-www-form-urlencoded":{"schema":{"$ref":"#/components/schemas/Body_authorize_post_oauth_authorize_post"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/oauth/token":{"post":{"tags":["OAuth"],"summary":"Token","description":"OAuth 2.0 token endpoint. Supports:\n- client_credentials: a user's own machine credential (see /oauth/clients).\n- authorization_code (+ PKCE): redeems a code from GET/POST /oauth/authorize.\n- refresh_token: mints a new access token for an authorization_code grant\n  without repeating consent.\nClient auth accepts client_secret_post (form) or client_secret_basic\n(Authorization header) for confidential clients, per RFC 6749 §2.3.1; a\npublic client (token_endpoint_auth_method=\"none\") sends neither and relies\non PKCE instead.","operationId":"token_oauth_token_post","parameters":[{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/x-www-form-urlencoded":{"schema":{"$ref":"#/components/schemas/Body_token_oauth_token_post"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/robots.txt":{"get":{"tags":["meta"],"summary":"Robots Txt","operationId":"robots_txt_robots_txt_get","responses":{"200":{"description":"Successful Response","content":{"text/plain":{"schema":{"type":"string"}}}}}}},"/.well-known/oauth-authorization-server":{"get":{"tags":["meta"],"summary":"Oauth Authorization Server Metadata","operationId":"oauth_authorization_server_metadata__well_known_oauth_authorization_server_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/.well-known/oauth-protected-resource":{"get":{"tags":["meta"],"summary":"Oauth Protected Resource Metadata","operationId":"oauth_protected_resource_metadata__well_known_oauth_protected_resource_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/health":{"get":{"tags":["meta"],"summary":"Health Check","description":"Public health check. Returns DB reachability and overall status.","operationId":"health_check_health_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}}},"components":{"schemas":{"AICaptionsRequest":{"properties":{"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"language":{"type":"string","enum":["English","English (USA)","English (UK)","English (Australia)","English (Canada)","Japanese","Chinese","German","Hindi","French","French (France)","French (Canada)","Korean","Portuguese (Brazil)","Portuguese (Portugal)","Portuguese","Spanish (Spain)","Spanish (Mexico)","Italian","Spanish","Indonesian","Dutch","Turkish","Filipino","Polish","Swedish","Bulgarian","Romanian","Arabic (Saudi Arabia)","Arabic (UAE)","Arabic","Czech","Greek","Finnish","Croatian","Malay","Slovak","Danish","Tamil","Telugu","Ukrainian","Russian","Hungarian","Norwegian","Vietnamese"],"title":"Language","default":"English"},"theme":{"type":"string","enum":["Hormozi_1","Hormozi_2","Hormozi_3","Beast","Ali","Noah","Karl","Luke","Devin","Celine","Maya","Ella","Dan","David","Tracy","Umi","Iman","William"],"title":"Theme","default":"Hormozi_1"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["video_url"],"title":"AICaptionsRequest"},"AIClippingRequest":{"properties":{"video_url":{"type":"string","title":"Video Url"},"num_highlights":{"type":"integer","title":"Num Highlights","default":3},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1","4:5","4:3","3:4"],"title":"Aspect Ratio","default":"9:16"},"return_coordinates_only":{"type":"boolean","title":"Return Coordinates Only","default":false},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"sync":{"type":"boolean","title":"Sync","default":false}},"type":"object","required":["video_url"],"title":"AIClippingRequest"},"AIDanceEffectsRequest":{"properties":{"prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Prompt"},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"resolution":{"type":"string","enum":["480p","720p"],"title":"Resolution","default":"480p"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["video_url","image_url"],"title":"AIDanceEffectsRequest"},"AIScriptRequest":{"properties":{"title":{"type":"string","title":"Title"},"niche":{"type":"string","enum":["Tech & Coding","Marketing & SaaS","Self-Development & Mindset","General Lifestyle"],"title":"Niche","default":"Tech & Coding"},"platform":{"type":"string","enum":["tiktok","instagram","youtube","twitter","facebook"],"title":"Platform","default":"tiktok"},"duration":{"type":"integer","title":"Duration","description":"Script duration in seconds (15, 30, or 60).","default":30},"reference_hook":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Reference Hook"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["title"],"title":"AIScriptRequest"},"AITaskResponse":{"properties":{"id":{"type":"integer","title":"Id"},"name":{"type":"string","title":"Name"},"description":{"type":"string","title":"Description"},"category":{"$ref":"#/components/schemas/TaskCategory"},"cost_strategy":{"type":"string","title":"Cost Strategy"},"example_url":{"type":"string","title":"Example Url"},"image_url":{"type":"string","title":"Image Url"},"cost":{"type":"number","title":"Cost"},"group_of":{"type":"string","title":"Group Of"},"family":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Family"},"provider":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Provider"},"meta_data":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Meta Data"},"total_count":{"type":"integer","title":"Total Count","default":0},"hidden":{"type":"boolean","title":"Hidden","default":false}},"type":"object","required":["id","name","description","category","cost_strategy","example_url","image_url","cost","group_of"],"title":"AITaskResponse"},"APIKeyCreateRequest":{"properties":{"name":{"type":"string","title":"Name"},"is_test":{"type":"boolean","title":"Is Test","default":false}},"type":"object","required":["name"],"title":"APIKeyCreateRequest"},"APIKeyResponse":{"properties":{"id":{"type":"integer","title":"Id"},"name":{"type":"string","title":"Name"},"is_active":{"type":"boolean","title":"Is Active"},"is_test":{"type":"boolean","title":"Is Test"},"allowed_ips":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Allowed Ips"},"created_at":{"type":"string","format":"date-time","title":"Created At"},"last_used_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Last Used At"}},"type":"object","required":["id","name","is_active","is_test","created_at","last_used_at"],"title":"APIKeyResponse"},"APIKeyUpdateRequest":{"properties":{"allowed_ips":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Allowed Ips"}},"type":"object","title":"APIKeyUpdateRequest"},"AddCreditsRequest":{"properties":{"amount":{"type":"number","title":"Amount"}},"type":"object","required":["amount"],"title":"AddCreditsRequest"},"AddEpisodeRequest":{"properties":{"project_id":{"type":"integer","title":"Project Id","description":"ID of the project to add the episode to"},"episode_index":{"type":"integer","minimum":1.0,"title":"Episode Index","description":"Position to insert the episode (1-based index)"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description","description":"Optional text description of the desired episode"},"target_duration":{"type":"number","exclusiveMinimum":0.0,"title":"Target Duration","description":"Target duration in minutes","default":5.0},"grid_mode":{"type":"boolean","title":"Grid Mode","description":"Whether to use grid mode for shot generation","default":false},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["project_id","episode_index"],"title":"AddEpisodeRequest"},"AddImageWatermarkRequest":{"properties":{"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"watermark_image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Watermark Image Url"},"position":{"type":"string","enum":["top-left","top-right","bottom-left","bottom-right","center"],"title":"Position","default":"bottom-right"},"opacity":{"type":"number","maximum":1.0,"minimum":0.0,"title":"Opacity","default":0.7},"scale":{"type":"number","maximum":1.0,"minimum":0.1,"title":"Scale","default":0.2},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["image_url","watermark_image_url"],"title":"AddImageWatermarkRequest"},"AddSceneRequest":{"properties":{"project_id":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Project Id","description":"Project ID (required if episode_id is not provided)"},"episode_index":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Episode Index","description":"Episode number (1-based), defaults to 1"},"scene_index":{"type":"integer","minimum":1.0,"title":"Scene Index","description":"Position to insert the scene (1-based index)"},"episode_id":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Episode Id","description":"ID of the episode to add the scene to"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description","description":"Optional text description of the desired scene content"},"webhook_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["scene_index"],"title":"AddSceneRequest"},"AddShotRequest":{"properties":{"project_id":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Project Id","description":"Project ID (required if scene_id is not provided)"},"episode_index":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Episode Index","description":"Episode number (1-based)"},"scene_index":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Scene Index","description":"Scene number in the episode (1-based)"},"scene_id":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Scene Id","description":"ID of the scene to add the shot to"},"shot_index":{"type":"integer","minimum":1.0,"title":"Shot Index","description":"Position to insert the shot (1-based index)"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description","description":"Optional text description of the desired shot"},"webhook_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["shot_index"],"title":"AddShotRequest"},"AddVideoWatermarkRequest":{"properties":{"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"watermark_image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Watermark Image Url"},"position":{"type":"string","enum":["top-left","top-right","bottom-left","bottom-right","center"],"title":"Position","default":"bottom-right"},"opacity":{"type":"number","maximum":1.0,"minimum":0.0,"title":"Opacity","default":0.7},"scale":{"type":"number","maximum":1.0,"minimum":0.1,"title":"Scale","default":0.15},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"width":{"type":"integer","maximum":1536.0,"minimum":256.0,"title":"Width","default":1024},"height":{"type":"integer","maximum":1536.0,"minimum":256.0,"title":"Height","default":1024}},"type":"object","required":["video_url","watermark_image_url"],"title":"AddVideoWatermarkRequest"},"AdjustStoryboardDurationRequest":{"properties":{"expanded_shots":{"items":{"additionalProperties":true,"type":"object"},"type":"array","title":"Expanded Shots","default":[]},"duration":{"type":"number","maximum":25.0,"title":"Duration","default":10},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","title":"AdjustStoryboardDurationRequest"},"AgentChatRequest":{"properties":{"message":{"type":"string","title":"Message"},"conversation_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Conversation Id"},"stream":{"type":"boolean","title":"Stream","default":true},"attachments":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Attachments"},"webhook_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["message"],"title":"AgentChatRequest"},"AgentCloneRequest":{"properties":{"is_vadoo":{"type":"boolean","title":"Is Vadoo","default":false}},"type":"object","title":"AgentCloneRequest"},"AgentCreate":{"properties":{"name":{"type":"string","title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"system_prompt":{"type":"string","title":"System Prompt"},"skill_ids":{"items":{"type":"string"},"type":"array","title":"Skill Ids","default":[]},"welcome_message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Welcome Message"},"initial_suggestions":{"anyOf":[{"items":{"additionalProperties":{"type":"string"},"type":"object"},"type":"array"},{"type":"null"}],"title":"Initial Suggestions"},"theme":{"anyOf":[{},{"type":"null"}],"title":"Theme","default":"cosmic"},"is_published":{"type":"boolean","title":"Is Published","default":false},"is_template":{"type":"boolean","title":"Is Template","default":false},"is_vadoo":{"type":"boolean","title":"Is Vadoo","default":false}},"type":"object","required":["name","system_prompt"],"title":"AgentCreate"},"AgentProfileResponse":{"properties":{"agent":{"$ref":"#/components/schemas/AgentResponse"},"total_messages":{"type":"integer","title":"Total Messages","default":0},"total_chats":{"type":"integer","title":"Total Chats","default":0},"recent_chats":{"items":{"$ref":"#/components/schemas/ConversationListItem"},"type":"array","title":"Recent Chats","default":[]}},"type":"object","required":["agent"],"title":"AgentProfileResponse"},"AgentQuickCreateRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"}},"type":"object","required":["prompt"],"title":"AgentQuickCreateRequest"},"AgentRealignRequest":{"properties":{"current_prompt":{"type":"string","title":"Current Prompt"},"new_skill_ids":{"items":{"type":"string"},"type":"array","title":"New Skill Ids"}},"type":"object","required":["current_prompt","new_skill_ids"],"title":"AgentRealignRequest"},"AgentRealignResponse":{"properties":{"proposed_prompt":{"type":"string","title":"Proposed Prompt"}},"type":"object","required":["proposed_prompt"],"title":"AgentRealignResponse"},"AgentResponse":{"properties":{"id":{"type":"string","title":"Id"},"name":{"type":"string","title":"Name"},"agent_id":{"type":"string","title":"Agent Id"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"system_prompt":{"type":"string","title":"System Prompt"},"icon_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Icon Url"},"daily_credit_limit":{"type":"number","title":"Daily Credit Limit"},"welcome_message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Welcome Message"},"initial_suggestions":{"anyOf":[{"items":{"additionalProperties":{"type":"string"},"type":"object"},"type":"array"},{"type":"null"}],"title":"Initial Suggestions"},"theme":{"anyOf":[{},{"type":"null"}],"title":"Theme","default":"cosmic"},"like_count":{"type":"integer","title":"Like Count","default":0},"has_liked":{"type":"boolean","title":"Has Liked","default":false},"created_at":{"type":"string","format":"date-time","title":"Created At"},"is_published":{"type":"boolean","title":"Is Published","default":false},"is_template":{"type":"boolean","title":"Is Template","default":false},"is_vadoo":{"type":"boolean","title":"Is Vadoo","default":false},"user_id":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"User Id"},"owner_email":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Owner Email"},"owner_username":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Owner Username"},"is_owner":{"type":"boolean","title":"Is Owner","default":false},"skills":{"items":{"$ref":"#/components/schemas/SkillResponse"},"type":"array","title":"Skills","default":[]}},"type":"object","required":["id","name","agent_id","system_prompt","daily_credit_limit","created_at"],"title":"AgentResponse"},"AgentSuggestionRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"}},"type":"object","required":["prompt"],"title":"AgentSuggestionRequest"},"AgentSuggestionResponse":{"properties":{"name":{"type":"string","title":"Name"},"description":{"type":"string","title":"Description"},"system_prompt":{"type":"string","title":"System Prompt"},"recommended_skill_ids":{"items":{"type":"string"},"type":"array","title":"Recommended Skill Ids"},"welcome_message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Welcome Message"},"initial_suggestions":{"anyOf":[{"items":{"additionalProperties":{"type":"string"},"type":"object"},"type":"array"},{"type":"null"}],"title":"Initial Suggestions"}},"type":"object","required":["name","description","system_prompt","recommended_skill_ids"],"title":"AgentSuggestionResponse"},"AgentUpdate":{"properties":{"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"icon_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Icon Url"},"skill_ids":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Skill Ids"},"welcome_message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Welcome Message"},"initial_suggestions":{"anyOf":[{"items":{"additionalProperties":{"type":"string"},"type":"object"},"type":"array"},{"type":"null"}],"title":"Initial Suggestions"},"theme":{"anyOf":[{},{"type":"null"}],"title":"Theme"},"is_published":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Published"},"is_template":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Template"},"is_vadoo":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Vadoo"}},"type":"object","title":"AgentUpdate"},"AiAppsRequest":{"properties":{"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["image_url"],"title":"AiAppsRequest"},"AiDressChangeRequest":{"properties":{"model_image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Model Image Url"},"garment_image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Garment Image Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["model_image_url","garment_image_url"],"title":"AiDressChangeRequest"},"AiProductShotRequest":{"properties":{"scene_description":{"type":"string","title":"Scene Description"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["scene_description","image_url"],"title":"AiProductShotRequest"},"AiVideoUpscalerProRequest":{"properties":{"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"resolution":{"type":"string","enum":["720p","1080p","2k","4k"],"title":"Resolution","default":"720p"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["video_url"],"title":"AiVideoUpscalerProRequest"},"AiVideoUpscalerRequest":{"properties":{"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"resolution":{"type":"string","enum":["720p","1080p","2k","4k"],"title":"Resolution","default":"720p"},"copy_audio":{"type":"boolean","title":"Copy Audio","default":true},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["video_url"],"title":"AiVideoUpscalerRequest"},"AnimeGeneratorRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"width":{"type":"integer","maximum":1536.0,"minimum":256.0,"title":"Width","default":1024},"height":{"type":"integer","maximum":1536.0,"minimum":256.0,"title":"Height","default":1024},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"AnimeGeneratorRequest"},"AnyLlmModelRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"model":{"type":"string","enum":["anthropic/claude-3.7-sonnet","anthropic/claude-3.5-sonnet","anthropic/claude-3-haiku","google/gemini-2.5-flash","google/gemini-2.0-flash-001","google/gemini-2.0-flash-lite-001","google/gemini-2.5-flash-preview-09-2025","google/gemini-2.0-flash-exp:free","google/gemini-2.5-pro","openai/gpt-4o","openai/gpt-4.1","openai/gpt-5-chat","meta-llama/llama-3.2-90b-vision-instruct","meta-llama/llama-4-maverick","meta-llama/llama-4-scout"],"title":"Model","default":"google/gemini-2.5-flash"},"reasoning":{"type":"boolean","title":"Reasoning","default":false},"priority":{"type":"string","enum":["throughput","latency"],"title":"Priority","default":"throughput"},"temperature":{"type":"number","maximum":2.0,"minimum":0.0,"title":"Temperature","default":1},"max_tokens":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Max Tokens"}},"type":"object","required":["prompt","system_prompt"],"title":"AnyLlmModelRequest"},"AppInterestRequest":{"properties":{"app_name":{"type":"string","title":"App Name"},"meta":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Meta"}},"type":"object","required":["app_name"],"title":"AppInterestRequest"},"AppleAuthRequest":{"properties":{"identity_token":{"type":"string","title":"Identity Token"}},"type":"object","required":["identity_token"],"title":"AppleAuthRequest"},"AuthRequest":{"properties":{"email":{"type":"string","title":"Email"},"password":{"type":"string","title":"Password"}},"type":"object","required":["email","password"],"title":"AuthRequest"},"AutocropRequest":{"properties":{"video_url":{"type":"string","title":"Video Url"},"start_time":{"type":"number","title":"Start Time"},"end_time":{"type":"number","title":"End Time"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1","4:5","4:3","3:4"],"title":"Aspect Ratio","default":"9:16"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"sync":{"type":"boolean","title":"Sync","default":false}},"type":"object","required":["video_url","start_time","end_time"],"title":"AutocropRequest"},"Body_admin_upload_assets_app_admin_upload_assets_post":{"properties":{"subfolder":{"type":"string","title":"Subfolder"},"files":{"items":{"type":"string","format":"binary"},"type":"array","title":"Files"}},"type":"object","required":["subfolder","files"],"title":"Body_admin_upload_assets_app_admin_upload_assets_post"},"Body_authorize_post_oauth_authorize_post":{"properties":{"response_type":{"type":"string","title":"Response Type"},"client_id":{"type":"string","title":"Client Id"},"redirect_uri":{"type":"string","title":"Redirect Uri"},"scope":{"type":"string","title":"Scope","default":""},"state":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"State"},"code_challenge":{"type":"string","title":"Code Challenge"},"code_challenge_method":{"type":"string","title":"Code Challenge Method","default":"S256"},"action":{"type":"string","title":"Action"}},"type":"object","required":["response_type","client_id","redirect_uri","code_challenge","action"],"title":"Body_authorize_post_oauth_authorize_post"},"Body_token_oauth_token_post":{"properties":{"grant_type":{"type":"string","title":"Grant Type"},"client_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Client Id"},"client_secret":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Client Secret"},"scope":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Scope"},"code":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Code"},"redirect_uri":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Redirect Uri"},"code_verifier":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Code Verifier"},"refresh_token":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Refresh Token"}},"type":"object","required":["grant_type"],"title":"Body_token_oauth_token_post"},"Body_upload_file_mobile_upload_post":{"properties":{"file":{"type":"string","format":"binary","title":"File"}},"type":"object","required":["file"],"title":"Body_upload_file_mobile_upload_post"},"Body_upload_owner_asset_whitelabel_owner_upload_post":{"properties":{"kind":{"type":"string","title":"Kind"},"file":{"type":"string","format":"binary","title":"File"}},"type":"object","required":["kind","file"],"title":"Body_upload_owner_asset_whitelabel_owner_upload_post"},"BulkDeleteRequest":{"properties":{"ids":{"items":{"type":"string"},"type":"array","title":"Ids"}},"type":"object","required":["ids"],"title":"BulkDeleteRequest"},"BulkReviewStatusRequest":{"properties":{"ids":{"items":{"type":"string"},"type":"array","title":"Ids"},"review_status":{"type":"string","title":"Review Status"}},"type":"object","required":["ids","review_status"],"title":"BulkReviewStatusRequest"},"ChromaT2IRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"width":{"type":"integer","maximum":1536.0,"minimum":256.0,"title":"Width","default":1024},"height":{"type":"integer","maximum":1536.0,"minimum":256.0,"title":"Height","default":1024}},"type":"object","required":["prompt"],"title":"ChromaT2IRequest"},"ClaudeFable5Request":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"ClaudeFable5Request"},"ClaudeHaiku45Request":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"ClaudeHaiku45Request"},"ClaudeOpus45Request":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"ClaudeOpus45Request"},"ClaudeOpus46Request":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"ClaudeOpus46Request"},"ClaudeOpus47Request":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"ClaudeOpus47Request"},"ClaudeOpus48Request":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"ClaudeOpus48Request"},"ClaudeOpus5Request":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"ClaudeOpus5Request"},"ClaudeSonnet45Request":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"ClaudeSonnet45Request"},"ClaudeSonnet46Request":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"ClaudeSonnet46Request"},"ClaudeSonnet5Request":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"ClaudeSonnet5Request"},"ConversationListItem":{"properties":{"id":{"type":"string","title":"Id"},"agent_id":{"type":"string","title":"Agent Id"},"agent_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Agent Name"},"agent_icon_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Agent Icon Url"},"agent_slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Agent Slug"},"title":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Title"},"message_count":{"type":"integer","title":"Message Count","default":0},"last_message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Last Message"},"created_at":{"type":"string","format":"date-time","title":"Created At"},"updated_at":{"type":"string","format":"date-time","title":"Updated At"}},"type":"object","required":["id","agent_id","created_at","updated_at"],"title":"ConversationListItem","description":"Lightweight conversation item for listing in My Chats tab."},"ConversationResponse":{"properties":{"id":{"type":"string","title":"Id"},"agent_id":{"type":"string","title":"Agent Id"},"user_id":{"type":"integer","title":"User Id"},"title":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Title"},"history":{"items":{"additionalProperties":true,"type":"object"},"type":"array","title":"History","default":[]},"created_at":{"type":"string","format":"date-time","title":"Created At"},"updated_at":{"type":"string","format":"date-time","title":"Updated At"}},"type":"object","required":["id","agent_id","user_id","created_at","updated_at"],"title":"ConversationResponse"},"CreateAgentEmbedRequest":{"properties":{"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"allowed_origins":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Allowed Origins"}},"type":"object","title":"CreateAgentEmbedRequest"},"CreateOAuthClientRequest":{"properties":{"name":{"type":"string","title":"Name"},"scopes":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Scopes"}},"type":"object","required":["name"],"title":"CreateOAuthClientRequest"},"CreateSessionRequest":{"properties":{"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"}},"type":"object","title":"CreateSessionRequest"},"DeepSeekV4FlashRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"temperature":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Temperature"},"max_tokens":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Max Tokens"},"top_p":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Top P"},"frequency_penalty":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Frequency Penalty"},"presence_penalty":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Presence Penalty"},"stop":{"anyOf":[{"type":"string"},{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Stop"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"DeepSeekV4FlashRequest"},"DeepSeekV4ProRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"temperature":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Temperature"},"max_tokens":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Max Tokens"},"top_p":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Top P"},"frequency_penalty":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Frequency Penalty"},"presence_penalty":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Presence Penalty"},"stop":{"anyOf":[{"type":"string"},{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Stop"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"DeepSeekV4ProRequest"},"DeleteResponse":{"properties":{"success":{"type":"boolean","title":"Success"},"message":{"type":"string","title":"Message"},"deleted_id":{"type":"integer","title":"Deleted Id"},"entity_type":{"type":"string","title":"Entity Type"}},"type":"object","required":["success","message","deleted_id","entity_type"],"title":"DeleteResponse"},"DialogueTurn":{"properties":{"text":{"type":"string","title":"Text"},"voice_id":{"type":"string","title":"Voice Id"}},"type":"object","required":["text","voice_id"],"title":"DialogueTurn"},"DynamicCostRequest":{"properties":{"task_name":{"type":"string","title":"Task Name"},"payload":{"additionalProperties":true,"type":"object","title":"Payload"}},"type":"object","required":["task_name","payload"],"title":"DynamicCostRequest"},"ElevenlabsTextToDialogueV3Request":{"properties":{"dialogue":{"items":{"$ref":"#/components/schemas/DialogueTurn"},"type":"array","title":"Dialogue"},"stability":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Stability","default":0.5},"language_code":{"anyOf":[{"type":"string","enum":["af","ar","hy","as","az","be","bn","bs","bg","ca","ceb","ny","hr","cs","da","nl","en","et","fil","fi","fr","gl","ka","de","el","gu","ha","he","hi","hu","is","id","ga","it","ja","jv","kn","kk","ky","ko","lv","ln","lt","lb","mk","ms","ml","zh","mr","ne","no","ps","fa","pl","pt","pa","ro","ru","sr","sd","sk","sl","so","es","sw","sv","ta","te","th","tr","uk","ur","vi","cy"]},{"type":"null"}],"title":"Language Code"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["dialogue"],"title":"ElevenlabsTextToDialogueV3Request"},"ElevenlabsTtsTurbo25Request":{"properties":{"prompt":{"type":"string","title":"Prompt"},"voice_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Voice Id","default":"21m00Tcm4TlvDq8ikWAM"},"stability":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Stability","default":0.5},"similarity_boost":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Similarity Boost","default":0.75},"speed":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Speed","default":1.0},"language_code":{"anyOf":[{"type":"string","enum":["en","fr","de","ja","vi","hu","no"]},{"type":"null"}],"title":"Language Code"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"ElevenlabsTtsTurbo25Request"},"EmbedTaskResponse":{"properties":{"name":{"type":"string","title":"Name"}},"type":"object","required":["name"],"title":"EmbedTaskResponse"},"EpisodeOperationResponse":{"properties":{"request_id":{"type":"string","title":"Request Id"},"episode_id":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Episode Id"},"project_id":{"type":"integer","title":"Project Id"},"status":{"type":"string","title":"Status","default":"processing"},"message":{"type":"string","title":"Message"}},"type":"object","required":["request_id","project_id","message"],"title":"EpisodeOperationResponse"},"ExpandStoryboardDataRequest":{"properties":{"simple_descriptions":{"items":{"type":"string"},"type":"array","title":"Simple Descriptions","default":[]},"duration":{"type":"number","maximum":25.0,"title":"Duration","default":10},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","title":"ExpandStoryboardDataRequest"},"FacebookConnectUrlRequest":{"properties":{"external_user_id":{"type":"string","title":"External User Id","description":"Your identifier for the end-user whose Facebook Page should be connected (e.g. a user id from your own system)."},"redirect_to":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Redirect To","description":"URL to redirect the user to after they complete the OAuth consent screen. Must be a full URL (e.g. https://yourapp.com/connected).","default":""}},"type":"object","required":["external_user_id"],"title":"FacebookConnectUrlRequest"},"FacebookPublishRequest":{"properties":{"account_id":{"type":"integer","title":"Account Id","description":"ID of the connected Facebook account (from GET /social/accounts)."},"media_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Media Url","description":"Public URL of the video or image to publish."},"caption":{"type":"string","title":"Caption","description":"Post caption (supports hashtags).","default":""},"placement":{"type":"string","enum":["reels","stories","timeline"],"title":"Placement","description":"Where to publish: Reels, Stories, or main timeline.","default":"timeline"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["account_id","media_url"],"title":"FacebookPublishRequest"},"FacebookReelsRequest":{"properties":{"username":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Username"},"count":{"type":"integer","maximum":30.0,"minimum":1.0,"title":"Count","default":10},"cursor":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Cursor"},"min_likes":{"anyOf":[{"type":"string","enum":["Any","100+","1k+","5k+","10k+","50k+","100k+","500k+","1M+","5M+","10M+"]},{"type":"null"}],"title":"Min Likes","default":"Any"},"min_views":{"anyOf":[{"type":"string","enum":["Any","100+","1k+","5k+","10k+","50k+","100k+","500k+","1M+","5M+","10M+"]},{"type":"null"}],"title":"Min Views","default":"Any"},"min_shares":{"anyOf":[{"type":"string","enum":["Any","100+","1k+","5k+","10k+","50k+","100k+","500k+","1M+","5M+","10M+"]},{"type":"null"}],"title":"Min Shares","default":"Any"},"min_comments":{"anyOf":[{"type":"string","enum":["Any","100+","1k+","5k+","10k+","50k+","100k+","500k+","1M+","5M+","10M+"]},{"type":"null"}],"title":"Min Comments","default":"Any"},"min_duration":{"anyOf":[{"type":"string","enum":["Any","15s","30s","45s","1m","2m","3m","5m","10m"]},{"type":"null"}],"title":"Min Duration","default":"Any"},"max_duration":{"anyOf":[{"type":"string","enum":["Any","15s","30s","45s","1m","2m","3m","5m","10m"]},{"type":"null"}],"title":"Max Duration","default":"Any"},"hashtags":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Hashtags"},"published_after":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Published After"},"published_before":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Published Before"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","title":"FacebookReelsRequest"},"FavouriteModelRequest":{"properties":{"model_id":{"type":"string","title":"Model Id"}},"type":"object","required":["model_id"],"title":"FavouriteModelRequest"},"Flux1DevStyleLoraInferenceRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"lora_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Lora Url","description":"The LoRA file URL returned in `outputs` from a completed flux-1-dev-style-lora-trainer job."},"lora_weight":{"type":"number","maximum":4.0,"minimum":0.0,"title":"Lora Weight","description":"LoRA weight multiplier.","default":1.0},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"1:1"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","lora_url"],"title":"Flux1DevStyleLoraInferenceRequest"},"Flux1DevStyleLoraTrainerRequest":{"properties":{"dataset":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Dataset","description":"URL to ZIP archive containing training images and optional caption text files."},"trigger_word":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Trigger Word","description":"Word or phrase to activate the trained style concept at inference time."},"training_steps":{"anyOf":[{"type":"integer","maximum":4000.0,"minimum":1000.0},{"type":"null"}],"title":"Training Steps","description":"Total number of optimization steps for training.","default":1000},"learning_rate":{"anyOf":[{"type":"number","maximum":0.01,"minimum":1e-05},{"type":"null"}],"title":"Learning Rate","description":"Learning rate applied at each training update.","default":0.0005},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["dataset"],"title":"Flux1DevStyleLoraTrainerRequest"},"Flux2DevEditRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"width":{"type":"integer","maximum":1536.0,"minimum":256.0,"title":"Width","default":1024},"height":{"type":"integer","maximum":1536.0,"minimum":256.0,"title":"Height","default":1024},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","images_list"],"title":"Flux2DevEditRequest"},"Flux2DevRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"width":{"type":"integer","maximum":1536.0,"minimum":256.0,"title":"Width","default":1024},"height":{"type":"integer","maximum":1536.0,"minimum":256.0,"title":"Height","default":1024},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Flux2DevRequest"},"Flux2FlexEditRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["auto","16:9","9:16","1:1","4:3","3:4","3:2","2:3"],"title":"Aspect Ratio","default":"1:1"},"resolution":{"type":"string","enum":["1k","2k"],"title":"Resolution","default":"1k"}},"type":"object","required":["prompt","images_list"],"title":"Flux2FlexEditRequest"},"Flux2FlexT2IRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","3:2","2:3"],"title":"Aspect Ratio","default":"1:1"},"resolution":{"type":"string","enum":["1k","2k"],"title":"Resolution","default":"1k"}},"type":"object","required":["prompt"],"title":"Flux2FlexT2IRequest"},"Flux2Klein4BEditLoraRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"lora_list":{"items":{"$ref":"#/components/schemas/LoraItem"},"type":"array","title":"Lora List","default":[]},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"1:1"}},"type":"object","required":["prompt","images_list"],"title":"Flux2Klein4BEditLoraRequest"},"Flux2Klein4BEditRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"1:1"}},"type":"object","required":["prompt","images_list"],"title":"Flux2Klein4BEditRequest"},"Flux2Klein4BRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"1:1"}},"type":"object","required":["prompt"],"title":"Flux2Klein4BRequest"},"Flux2Klein4BT2ILoraRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"lora_list":{"items":{"$ref":"#/components/schemas/LoraItem"},"type":"array","title":"Lora List","default":[]},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"1:1"}},"type":"object","required":["prompt"],"title":"Flux2Klein4BT2ILoraRequest"},"Flux2Klein4BTurboEditRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"1:1"}},"type":"object","required":["prompt","images_list"],"title":"Flux2Klein4BTurboEditRequest"},"Flux2Klein4BTurboRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"1:1"}},"type":"object","required":["prompt"],"title":"Flux2Klein4BTurboRequest"},"Flux2Klein4bStyleLoraTrainerRequest":{"properties":{"dataset":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Dataset","description":"URL to ZIP archive containing training images and optional caption text files."},"trigger_word":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Trigger Word","description":"Word or phrase to activate the trained style concept at inference time."},"training_steps":{"anyOf":[{"type":"integer","maximum":4000.0,"minimum":1000.0},{"type":"null"}],"title":"Training Steps","description":"Total number of optimization steps for training.","default":1000},"learning_rate":{"anyOf":[{"type":"number","maximum":0.01,"minimum":1e-05},{"type":"null"}],"title":"Learning Rate","description":"Learning rate applied at each training update.","default":5e-05},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["dataset"],"title":"Flux2Klein4bStyleLoraTrainerRequest"},"Flux2Klein9BEditLoraRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"lora_list":{"items":{"$ref":"#/components/schemas/LoraItem"},"type":"array","title":"Lora List","default":[]},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"1:1"}},"type":"object","required":["prompt","images_list"],"title":"Flux2Klein9BEditLoraRequest"},"Flux2Klein9BEditRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"1:1"}},"type":"object","required":["prompt","images_list"],"title":"Flux2Klein9BEditRequest"},"Flux2Klein9BRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"1:1"}},"type":"object","required":["prompt"],"title":"Flux2Klein9BRequest"},"Flux2Klein9BT2ILoraRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"lora_list":{"items":{"$ref":"#/components/schemas/LoraItem"},"type":"array","title":"Lora List","default":[]},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"1:1"}},"type":"object","required":["prompt"],"title":"Flux2Klein9BT2ILoraRequest"},"Flux2Klein9BTurboEditRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"1:1"}},"type":"object","required":["prompt","images_list"],"title":"Flux2Klein9BTurboEditRequest"},"Flux2Klein9BTurboRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"1:1"}},"type":"object","required":["prompt"],"title":"Flux2Klein9BTurboRequest"},"Flux2Klein9bStyleLoraTrainerRequest":{"properties":{"dataset":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Dataset","description":"URL to ZIP archive containing training images and optional caption text files."},"trigger_word":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Trigger Word","description":"Word or phrase to activate the trained style concept at inference time."},"training_steps":{"anyOf":[{"type":"integer","maximum":4000.0,"minimum":1000.0},{"type":"null"}],"title":"Training Steps","description":"Total number of optimization steps for training.","default":1000},"learning_rate":{"anyOf":[{"type":"number","maximum":0.01,"minimum":1e-05},{"type":"null"}],"title":"Learning Rate","description":"Learning rate applied at each training update.","default":5e-05},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["dataset"],"title":"Flux2Klein9bStyleLoraTrainerRequest"},"Flux2ProEditRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["auto","16:9","9:16","1:1","4:3","3:4","3:2","2:3"],"title":"Aspect Ratio","default":"1:1"},"resolution":{"type":"string","enum":["1k","2k"],"title":"Resolution","default":"1k"}},"type":"object","required":["prompt","images_list"],"title":"Flux2ProEditRequest"},"Flux2ProT2IRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","3:2","2:3"],"title":"Aspect Ratio","default":"1:1"},"resolution":{"type":"string","enum":["1k","2k"],"title":"Resolution","default":"1k"}},"type":"object","required":["prompt"],"title":"Flux2ProT2IRequest"},"Flux3ImageToVideoRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"aspect_ratio":{"anyOf":[{"type":"string","enum":["21:9","2:1","16:9","4:3","1:1","3:4","9:16"]},{"type":"null"}],"title":"Aspect Ratio"},"resolution":{"type":"string","enum":["720p","1080p"],"title":"Resolution","default":"720p"},"duration":{"type":"integer","maximum":20.0,"minimum":5.0,"title":"Duration","default":5},"generate_audio":{"type":"boolean","title":"Generate Audio","default":true},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url"],"title":"Flux3ImageToVideoRequest"},"Flux3StartEndToVideoRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"end_image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"End Image Url"},"aspect_ratio":{"anyOf":[{"type":"string","enum":["21:9","2:1","16:9","4:3","1:1","3:4","9:16"]},{"type":"null"}],"title":"Aspect Ratio"},"resolution":{"type":"string","enum":["720p","1080p"],"title":"Resolution","default":"720p"},"duration":{"type":"integer","maximum":20.0,"minimum":5.0,"title":"Duration","default":5},"generate_audio":{"type":"boolean","title":"Generate Audio","default":true},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url","end_image_url"],"title":"Flux3StartEndToVideoRequest"},"Flux3TextToVideoDraftRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["21:9","2:1","16:9","4:3","1:1","3:4","9:16"],"title":"Aspect Ratio","default":"9:16"},"duration":{"type":"integer","maximum":20.0,"minimum":5.0,"title":"Duration","default":5},"generate_audio":{"type":"boolean","title":"Generate Audio","default":true},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Flux3TextToVideoDraftRequest"},"Flux3TextToVideoRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["21:9","2:1","16:9","4:3","1:1","3:4","9:16"],"title":"Aspect Ratio","default":"9:16"},"resolution":{"type":"string","enum":["720p","1080p"],"title":"Resolution","default":"720p"},"duration":{"type":"integer","maximum":20.0,"minimum":5.0,"title":"Duration","default":5},"generate_audio":{"type":"boolean","title":"Generate Audio","default":true},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Flux3TextToVideoRequest"},"Flux3VideoExtendDraftRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"aspect_ratio":{"anyOf":[{"type":"string","enum":["21:9","2:1","16:9","4:3","1:1","3:4","9:16"]},{"type":"null"}],"title":"Aspect Ratio"},"duration":{"type":"integer","maximum":20.0,"minimum":5.0,"title":"Duration","default":5},"generate_audio":{"type":"boolean","title":"Generate Audio","default":true},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","video_url"],"title":"Flux3VideoExtendDraftRequest"},"Flux3VideoExtendRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"aspect_ratio":{"anyOf":[{"type":"string","enum":["21:9","2:1","16:9","4:3","1:1","3:4","9:16"]},{"type":"null"}],"title":"Aspect Ratio"},"resolution":{"type":"string","enum":["720p","1080p"],"title":"Resolution","default":"720p"},"duration":{"type":"integer","maximum":20.0,"minimum":5.0,"title":"Duration","default":5},"generate_audio":{"type":"boolean","title":"Generate Audio","default":true},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","video_url"],"title":"Flux3VideoExtendRequest"},"Flux3VideoUpscalerRequest":{"properties":{"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Prompt"},"upscale_factor":{"anyOf":[{"type":"number","maximum":4.0,"minimum":1.0},{"type":"null"}],"title":"Upscale Factor"},"creativity":{"type":"integer","enum":[0,1],"title":"Creativity","default":0},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["video_url"],"title":"Flux3VideoUpscalerRequest"},"FluxKontextI2I":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1","4:3","3:4","21:9","16:21"],"title":"Aspect Ratio","default":"1:1"},"num_images":{"type":"integer","enum":[1,2,3,4],"title":"Num Images","default":1}},"type":"object","required":["prompt","images_list"],"title":"FluxKontextI2I"},"FluxKontextT2I":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1","4:3","3:4","21:9","16:21"],"title":"Aspect Ratio","default":"1:1"},"num_images":{"type":"integer","enum":[1,2,3,4],"title":"Num Images","default":1}},"type":"object","required":["prompt"],"title":"FluxKontextT2I"},"FluxKreaDevRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1","4:3","3:4","3:2","2:3","21:9","9:21"],"title":"Aspect Ratio","default":"1:1"},"num_images":{"type":"integer","enum":[1,2,3,4],"title":"Num Images","default":1}},"type":"object","required":["prompt"],"title":"FluxKreaDevRequest"},"FluxLoraTrainerRequest":{"properties":{"images_data_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Images Data Url","description":"URL of a .zip archive containing 10-50 training images (and optional caption .txt files matched by filename)."},"trigger_phrase":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Trigger Phrase","description":"A unique word or phrase that triggers the trained concept at inference time. If captions in the zip contain [trigger], it is replaced with this value."},"training_style":{"type":"string","enum":["subject","style"],"title":"Training Style","description":"What the LoRA learns: 'subject' (a person/character/object) or 'style' (an aesthetic).","default":"subject"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["images_data_url"],"title":"FluxLoraTrainerRequest"},"FluxPulidRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1","4:3","3:4"],"title":"Aspect Ratio","default":"1:1"}},"type":"object","required":["prompt","image_url"],"title":"FluxPulidRequest"},"FluxReduxRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1","4:3","3:4","3:2","2:3","21:9","9:21"],"title":"Aspect Ratio","default":"1:1"},"num_images":{"type":"integer","enum":[1,2,3,4],"title":"Num Images","default":1}},"type":"object","required":["prompt","image_url"],"title":"FluxReduxRequest"},"GPTImage15EditRequest":{"properties":{"prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"aspect_ratio":{"type":"string","enum":["1:1","2:3","3:2"],"title":"Aspect Ratio","default":"1:1"},"quality":{"type":"string","enum":["low","medium","high"],"title":"Quality","default":"medium"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","images_list"],"title":"GPTImage15EditRequest"},"GPTImage15Request":{"properties":{"prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Prompt"},"aspect_ratio":{"type":"string","enum":["1:1","2:3","3:2"],"title":"Aspect Ratio","default":"1:1"},"quality":{"type":"string","enum":["low","medium","high"],"title":"Quality","default":"medium"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"GPTImage15Request"},"GalleryItemResponse":{"properties":{"id":{"type":"string","title":"Id"},"model_name":{"type":"string","title":"Model Name"},"status":{"type":"string","title":"Status"},"created_at":{"type":"string","format":"date-time","title":"Created At"},"output_data":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Output Data"},"media_type":{"type":"string","title":"Media Type"},"review_status":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Review Status","default":"none"}},"type":"object","required":["id","model_name","status","created_at","media_type"],"title":"GalleryItemResponse"},"Gemini25FlashRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Gemini25FlashRequest"},"Gemini25ProRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Gemini25ProRequest"},"Gemini31ProRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Gemini31ProRequest"},"Gemini35FlashOpenAIRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Gemini35FlashOpenAIRequest"},"Gemini35FlashRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Gemini35FlashRequest"},"Gemini36FlashOpenAIRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Gemini36FlashOpenAIRequest"},"Gemini36FlashRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Gemini36FlashRequest"},"Gemini37FlashOpenAIRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Gemini37FlashOpenAIRequest"},"Gemini37FlashRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Gemini37FlashRequest"},"Gemini3FlashRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Gemini3FlashRequest"},"Gemini3ProRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Gemini3ProRequest"},"GeminiAudioVisionRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"audio_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Audio Url"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"model":{"type":"string","const":"gemini-2.5-flash","title":"Model","default":"gemini-2.5-flash"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","audio_url"],"title":"GeminiAudioVisionRequest"},"GeminiOmniAudioRequest":{"properties":{"audio_id":{"type":"string","enum":["achernar","achird","algenib","algieba","alnilam","aoede","autonoe","callirrhoe","charon","despina","enceladus","erinome","fenrir","gacrux","iapetus","kore","laomedeia","leda","orus","puck","pulcherrima","rasalgethi","sadachbia","sadaltager","schedar","sulafat","umbriel","vindemiatrix","zephyr","zubenelgenubi"],"title":"Audio Id"},"name":{"type":"string","maxLength":210,"title":"Name"},"voice_description":{"anyOf":[{"type":"string","maxLength":20000},{"type":"null"}],"title":"Voice Description"},"example_dialogue":{"anyOf":[{"type":"string","maxLength":120},{"type":"null"}],"title":"Example Dialogue"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["audio_id","name"],"title":"GeminiOmniAudioRequest"},"GeminiOmniCharacterRequest":{"properties":{"descriptions":{"type":"string","title":"Descriptions"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"audio_ids":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Audio Ids"},"character_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Character Name"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["descriptions","images_list"],"title":"GeminiOmniCharacterRequest"},"GeminiOmniFlash11EditRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"resolution":{"type":"string","enum":["360p","720p","1080p","4k"],"title":"Resolution","default":"720p"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","video_url"],"title":"GeminiOmniFlash11EditRequest"},"GeminiOmniFlash11ImageToVideoRequest":{"properties":{"prompt":{"type":"string","maxLength":20000,"title":"Prompt"},"first_frame_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"First Frame Url"},"last_frame_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Last Frame Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["720p","1080p","4k"],"title":"Resolution","default":"720p"},"seed":{"anyOf":[{"type":"integer","maximum":2147483647.0,"minimum":0.0},{"type":"null"}],"title":"Seed"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","first_frame_url"],"title":"GeminiOmniFlash11ImageToVideoRequest"},"GeminiOmniFlash11ReferenceToVideoRequest":{"properties":{"prompt":{"type":"string","maxLength":20000,"title":"Prompt"},"image_urls":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":7},{"type":"null"}],"title":"Image Urls"},"reference_video_urls":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":3},{"type":"null"}],"title":"Reference Video Urls"},"aspect_ratio":{"type":"string","enum":["16:9","9:16"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["360p","720p","1080p","4k"],"title":"Resolution","default":"720p"},"duration":{"type":"integer","maximum":10.0,"minimum":3.0,"title":"Duration","default":8},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"GeminiOmniFlash11ReferenceToVideoRequest"},"GeminiOmniFlash11Request":{"properties":{"prompt":{"type":"string","maxLength":20000,"title":"Prompt"},"image_urls":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":7},{"type":"null"}],"title":"Image Urls"},"audio_ids":{"anyOf":[{"items":{"type":"string"},"type":"array","maxItems":3},{"type":"null"}],"title":"Audio Ids"},"video_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Video Url"},"trim_start":{"type":"number","minimum":0.0,"title":"Trim Start","default":0},"trim_end":{"type":"number","minimum":0.0,"title":"Trim End","default":10},"character_ids":{"anyOf":[{"items":{"type":"string"},"type":"array","maxItems":3},{"type":"null"}],"title":"Character Ids"},"duration":{"type":"integer","enum":[4,6,8,10],"title":"Duration","default":8},"aspect_ratio":{"type":"string","enum":["16:9","9:16"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["720p","1080p","4k"],"title":"Resolution","default":"720p"},"seed":{"anyOf":[{"type":"integer","maximum":2147483647.0,"minimum":0.0},{"type":"null"}],"title":"Seed"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"GeminiOmniFlash11Request"},"GeminiOmniI2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_urls":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Image Urls"},"duration":{"type":"integer","enum":[4,6,8,10],"title":"Duration","default":8},"resolution":{"type":"string","enum":["360p","720p","1080p","4k"],"title":"Resolution","default":"1080p"},"aspect_ratio":{"type":"string","enum":["16:9","9:16"],"title":"Aspect Ratio","default":"16:9"},"audio_ids":{"anyOf":[{"items":{"type":"string"},"type":"array","maxItems":3},{"type":"null"}],"title":"Audio Ids"},"character_ids":{"anyOf":[{"items":{"type":"string"},"type":"array","maxItems":3},{"type":"null"}],"title":"Character Ids"},"seed":{"anyOf":[{"type":"integer","maximum":2147483647.0,"minimum":0.0},{"type":"null"}],"title":"Seed"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_urls"],"title":"GeminiOmniI2VRequest"},"GeminiOmniT2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"duration":{"type":"integer","enum":[4,6,8,10],"title":"Duration","default":8},"resolution":{"type":"string","enum":["360p","720p","1080p","4k"],"title":"Resolution","default":"1080p"},"aspect_ratio":{"type":"string","enum":["16:9","9:16"],"title":"Aspect Ratio","default":"16:9"},"audio_ids":{"anyOf":[{"items":{"type":"string"},"type":"array","maxItems":3},{"type":"null"}],"title":"Audio Ids"},"character_ids":{"anyOf":[{"items":{"type":"string"},"type":"array","maxItems":3},{"type":"null"}],"title":"Character Ids"},"seed":{"anyOf":[{"type":"integer","maximum":2147483647.0,"minimum":0.0},{"type":"null"}],"title":"Seed"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"GeminiOmniT2VRequest"},"GeminiOmniV2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_urls":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array"},{"type":"null"}],"title":"Image Urls"},"video_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Video Url"},"trim_start":{"type":"number","minimum":0.0,"title":"Trim Start","default":0},"trim_end":{"type":"number","minimum":0.0,"title":"Trim End","default":10},"duration":{"type":"integer","enum":[4,6,8,10],"title":"Duration","default":8},"resolution":{"type":"string","enum":["720p","1080p","4k"],"title":"Resolution","default":"1080p"},"aspect_ratio":{"type":"string","enum":["16:9","9:16"],"title":"Aspect Ratio","default":"16:9"},"audio_ids":{"anyOf":[{"items":{"type":"string"},"type":"array","maxItems":3},{"type":"null"}],"title":"Audio Ids"},"character_ids":{"anyOf":[{"items":{"type":"string"},"type":"array","maxItems":3},{"type":"null"}],"title":"Character Ids"},"seed":{"anyOf":[{"type":"integer","maximum":2147483647.0,"minimum":0.0},{"type":"null"}],"title":"Seed"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"GeminiOmniV2VRequest"},"GeminiTTSDialogueTurn":{"properties":{"speaker_id":{"type":"string","title":"Speaker Id"},"text":{"type":"string","title":"Text"}},"type":"object","required":["speaker_id","text"],"title":"GeminiTTSDialogueTurn"},"GeminiTTSRequest":{"properties":{"speakers":{"items":{"$ref":"#/components/schemas/GeminiTTSSpeaker"},"type":"array","title":"Speakers"},"dialogue_turns":{"items":{"$ref":"#/components/schemas/GeminiTTSDialogueTurn"},"type":"array","title":"Dialogue Turns"},"scene":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Scene"},"sample_context":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Sample Context"},"temperature":{"anyOf":[{"type":"number","maximum":2.0,"minimum":0.0},{"type":"null"}],"title":"Temperature","default":1},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["speakers","dialogue_turns"],"title":"GeminiTTSRequest"},"GeminiTTSSpeaker":{"properties":{"speaker_id":{"type":"string","title":"Speaker Id"},"voice_name":{"type":"string","enum":["Achernar","Achird","Algenib","Algieba","Alnilam","Aoede","Autonoe","Callirrhoe","Charon","Despina","Enceladus","Erinome","Fenrir","Gacrux","Iapetus","Kore","Laomedeia","Leda","Orus","Puck","Pulcherrima","Rasalgethi","Sadachbia","Sadaltager","Schedar","Sulafat","Umbriel","Vindemiatrix","Zephyr","Zubenelgenubi"],"title":"Voice Name"},"audio_profile":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Audio Profile"},"accent":{"type":"string","enum":["Neutral","American (Gen)","American (Valley)","American (South)","British (RP)","British (Brixton)","Transatlantic","Australian"],"title":"Accent","default":"Neutral"},"style":{"type":"string","enum":["Vocal Smile","Newscaster","Whisper","Empathetic","Promo/Hype","Deadpan"],"title":"Style","default":"Empathetic"},"pace":{"type":"string","enum":["Natural","Rapid Fire","The Drift","Staccato"],"title":"Pace","default":"Natural"}},"type":"object","required":["speaker_id","voice_name"],"title":"GeminiTTSSpeaker"},"GeminiVideoVisionRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"model":{"type":"string","enum":["gemini-2.5-flash","gemini-2.5-pro"],"title":"Model","default":"gemini-2.5-flash"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","video_url"],"title":"GeminiVideoVisionRequest"},"GoogleAuthRequest":{"properties":{"id_token":{"type":"string","title":"Id Token"}},"type":"object","required":["id_token"],"title":"GoogleAuthRequest"},"GoogleCallbackRequest":{"properties":{"url":{"type":"string","title":"Url"}},"type":"object","required":["url"],"title":"GoogleCallbackRequest"},"GoogleCodeAuthRequest":{"properties":{"code":{"type":"string","title":"Code"},"redirect_uri":{"type":"string","title":"Redirect Uri"},"code_verifier":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Code Verifier"},"ios_client_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Ios Client Id"}},"type":"object","required":["code","redirect_uri"],"title":"GoogleCodeAuthRequest"},"GoogleImagen4":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1","4:3","3:4"],"title":"Aspect Ratio","default":"1:1"},"num_images":{"type":"integer","enum":[1,2,3,4],"title":"Num Images","default":1}},"type":"object","required":["prompt"],"title":"GoogleImagen4"},"GoogleImagen4Ultra":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1","4:3","3:4"],"title":"Aspect Ratio","default":"1:1"}},"type":"object","required":["prompt"],"title":"GoogleImagen4Ultra"},"GoogleMobileLoginRequest":{"properties":{"id_token":{"type":"string","title":"Id Token"}},"type":"object","required":["id_token"],"title":"GoogleMobileLoginRequest"},"Gpt4oEditRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"mask_image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Mask Image Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["1:1","2:3","3:2"],"title":"Aspect Ratio","default":"1:1"},"num_images":{"type":"integer","enum":[1,2,4],"title":"Num Images","default":1}},"type":"object","required":["prompt","image_url","mask_image_url"],"title":"Gpt4oEditRequest"},"Gpt4oI2IRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["1:1","2:3","3:2"],"title":"Aspect Ratio","default":"1:1"},"num_images":{"type":"integer","enum":[1,2,4],"title":"Num Images","default":1}},"type":"object","required":["prompt","images_list"],"title":"Gpt4oI2IRequest"},"Gpt4oT2IRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["1:1","2:3","3:2"],"title":"Aspect Ratio","default":"1:1"},"num_images":{"type":"integer","enum":[1,2,4],"title":"Num Images","default":1}},"type":"object","required":["prompt"],"title":"Gpt4oT2IRequest"},"Gpt52Request":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"web_search_switch":{"type":"boolean","title":"Web Search Switch","default":false},"reasoning_effort":{"type":"string","enum":["low","high"],"title":"Reasoning Effort","default":"high"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Gpt52Request"},"Gpt54Request":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Gpt54Request"},"Gpt55Request":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"file_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"File Url"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"web_search_switch":{"type":"boolean","title":"Web Search Switch","default":false},"reasoning_effort":{"type":"string","enum":["low","medium","high","xhigh"],"title":"Reasoning Effort","default":"low"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Gpt55Request"},"Gpt56LunaRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"web_search_switch":{"type":"boolean","title":"Web Search Switch","default":false},"reasoning_effort":{"type":"string","enum":["low","medium","high","xhigh"],"title":"Reasoning Effort","default":"low"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Gpt56LunaRequest"},"Gpt56SolRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"web_search_switch":{"type":"boolean","title":"Web Search Switch","default":false},"reasoning_effort":{"type":"string","enum":["low","medium","high","xhigh"],"title":"Reasoning Effort","default":"low"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Gpt56SolRequest"},"Gpt56TerraRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"web_search_switch":{"type":"boolean","title":"Web Search Switch","default":false},"reasoning_effort":{"type":"string","enum":["low","medium","high","xhigh"],"title":"Reasoning Effort","default":"low"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Gpt56TerraRequest"},"GptCodexRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"model":{"type":"string","enum":["gpt-5.4-codex","gpt-5.3-codex","gpt-5.2-codex","gpt-5.1-codex","gpt-5-codex"],"title":"Model","default":"gpt-5.4-codex"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"GptCodexRequest"},"GptImage2I2IRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"aspect_ratio":{"type":"string","enum":["auto","1:1","16:9","9:16","4:3","3:4"],"title":"Aspect Ratio","default":"auto"},"resolution":{"type":"string","enum":["1K","2K","4K"],"title":"Resolution","default":"2K"},"quality":{"type":"string","enum":["low","medium","high"],"title":"Quality","default":"high"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","images_list"],"title":"GptImage2I2IRequest"},"GptImage2T2IRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["auto","1:1","16:9","9:16","4:3","3:4"],"title":"Aspect Ratio","default":"auto"},"resolution":{"type":"string","enum":["1K","2K","4K"],"title":"Resolution","default":"2K"},"quality":{"type":"string","enum":["low","medium","high"],"title":"Quality","default":"high"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"GptImage2T2IRequest"},"Grok43Request":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"reasoning_effort":{"anyOf":[{"type":"string","enum":["low","medium","high","xhigh"]},{"type":"null"}],"title":"Reasoning Effort","default":"low"},"web_search":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Web Search","default":false},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Grok43Request"},"Grok45Request":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"reasoning_effort":{"anyOf":[{"type":"string","enum":["low","medium","high","xhigh"]},{"type":"null"}],"title":"Reasoning Effort","default":"low"},"web_search":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Web Search","default":false},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Grok45Request"},"Grok46Request":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"reasoning_effort":{"anyOf":[{"type":"string","enum":["low","medium","high","xhigh"]},{"type":"null"}],"title":"Reasoning Effort","default":"low"},"web_search":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Web Search","default":false},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Grok46Request"},"GrokImagineExtendRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"request_id":{"type":"string","title":"Request Id"},"extend_at":{"type":"integer","title":"Extend At","default":0},"extend_times":{"type":"integer","maximum":30.0,"minimum":6.0,"title":"Extend Times","default":6},"resolution":{"type":"string","enum":["480p","720p"],"title":"Resolution","default":"480p"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","request_id"],"title":"GrokImagineExtendRequest"},"GrokImagineI2IRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List","default":[]},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"GrokImagineI2IRequest"},"GrokImagineI2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","2:3","3:2","1:1"],"title":"Aspect Ratio","default":"2:3"},"duration":{"type":"integer","maximum":30.0,"minimum":6.0,"title":"Duration","default":6},"mode":{"type":"string","enum":["fun","normal","spicy"],"title":"Mode","default":"normal"},"resolution":{"type":"string","enum":["480p","720p"],"title":"Resolution","default":"480p"}},"type":"object","required":["prompt","images_list"],"title":"GrokImagineI2VRequest"},"GrokImagineImage2EditRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"request_id":{"type":"string","title":"Request Id"},"mask_indexs":{"anyOf":[{"items":{"type":"integer"},"type":"array"},{"type":"null"}],"title":"Mask Indexs"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","request_id"],"title":"GrokImagineImage2EditRequest"},"GrokImagineImage2T2IRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["1:1","2:3","3:2","16:9","9:16"],"title":"Aspect Ratio","default":"1:1"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"GrokImagineImage2T2IRequest"},"GrokImagineT2IRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","2:3","3:2","1:1"],"title":"Aspect Ratio","default":"1:1"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"GrokImagineT2IRequest"},"GrokImagineT2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","2:3","3:2","1:1"],"title":"Aspect Ratio","default":"2:3"},"mode":{"type":"string","enum":["fun","normal","spicy"],"title":"Mode","default":"normal"},"resolution":{"type":"string","enum":["480p","720p"],"title":"Resolution","default":"480p"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","maximum":30.0,"minimum":6.0,"title":"Duration","default":6}},"type":"object","required":["prompt"],"title":"GrokImagineT2VRequest"},"GrokImagineVideo15Request":{"properties":{"prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Prompt","default":""},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":1,"title":"Images List"},"aspect_ratio":{"type":"string","enum":["auto","1:1","16:9","9:16","4:3","3:4","3:2","2:3"],"title":"Aspect Ratio","default":"auto"},"resolution":{"type":"string","enum":["480p","720p"],"title":"Resolution","default":"480p"},"duration":{"type":"integer","maximum":15.0,"minimum":1.0,"title":"Duration","default":8},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["images_list"],"title":"GrokImagineVideo15Request"},"HTTPValidationError":{"properties":{"detail":{"items":{"$ref":"#/components/schemas/ValidationError"},"type":"array","title":"Detail"}},"type":"object","title":"HTTPValidationError"},"Hailuo23FastI2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","enum":[6,10],"title":"Duration","default":6},"go_fast":{"type":"boolean","title":"Go Fast","default":true}},"type":"object","required":["prompt","image_url"],"title":"Hailuo23FastI2VRequest"},"Hailuo23ProI2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"resolution":{"type":"string","const":"1080p","title":"Resolution","default":"1080p"}},"type":"object","required":["prompt","image_url"],"title":"Hailuo23ProI2VRequest"},"Hailuo23ProT2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"resolution":{"type":"string","const":"1080p","title":"Resolution","default":"1080p"}},"type":"object","required":["prompt"],"title":"Hailuo23ProT2VRequest"},"Hailuo23StdI2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","enum":[6,10],"title":"Duration","default":6}},"type":"object","required":["prompt","image_url"],"title":"Hailuo23StdI2VRequest"},"Hailuo23StdT2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","enum":[6,10],"title":"Duration","default":6}},"type":"object","required":["prompt"],"title":"Hailuo23StdT2VRequest"},"HappyHorse11I2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt","description":"Optional text prompt guiding the motion.","default":""},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","maximum":15.0,"minimum":3.0,"title":"Duration","description":"Video duration in seconds (3–15).","default":5},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":1,"minItems":1,"title":"Images List","description":"Start frame image URL (single-element list). The video will animate from this image."}},"type":"object","required":["images_list"],"title":"HappyHorse11I2VRequest"},"HappyHorse11RefToVideoRequest":{"properties":{"prompt":{"type":"string","title":"Prompt","description":"Text description of the desired video content."},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":9,"title":"Images List","description":"1–9 reference image URLs. JPEG/PNG/WEBP, ≥400px shortest side, ≤10 MB each."},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","maximum":15.0,"minimum":3.0,"title":"Duration","description":"Video duration in seconds (3–15).","default":5},"seed":{"anyOf":[{"type":"integer","maximum":2147483647.0,"minimum":0.0},{"type":"null"}],"title":"Seed","description":"Optional random seed for reproducibility."}},"type":"object","required":["prompt","images_list"],"title":"HappyHorse11RefToVideoRequest"},"HappyHorse11T2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt","description":"Text prompt describing the video."},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","maximum":15.0,"minimum":3.0,"title":"Duration","description":"Video duration in seconds (3–15).","default":5}},"type":"object","required":["prompt"],"title":"HappyHorse11T2VRequest"},"HappyHorse11VideoEditRequest":{"properties":{"prompt":{"type":"string","title":"Prompt","description":"Edit instruction describing the change to apply to the video."},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url","description":"Source video URL. MP4 or MOV (H.264 recommended), 3–60s, ≤100 MB, longer side ≤2160px, shorter side ≥320px, frame rate >8 fps."},"images_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":5},{"type":"null"}],"title":"Images List","description":"0–5 optional reference image URLs. JPEG/PNG/WEBP, ≥300px each side, ≤10 MB each."},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"audio_setting":{"type":"string","enum":["auto","origin"],"title":"Audio Setting","default":"auto"},"seed":{"anyOf":[{"type":"integer","maximum":2147483647.0,"minimum":0.0},{"type":"null"}],"title":"Seed","description":"Optional random seed for reproducibility."}},"type":"object","required":["prompt","video_url"],"title":"HappyHorse11VideoEditRequest"},"HappyHorse1I2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt","description":"Optional text prompt guiding the motion.","default":""},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","maximum":15.0,"minimum":3.0,"title":"Duration","description":"Video duration in seconds (3–15).","default":5},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":1,"minItems":1,"title":"Images List","description":"Start frame image URL (single-element list). The video will animate from this image."}},"type":"object","required":["images_list"],"title":"HappyHorse1I2VRequest"},"HappyHorse1RefToVideoRequest":{"properties":{"prompt":{"type":"string","title":"Prompt","description":"Text description of the desired video content."},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":9,"title":"Images List","description":"1–9 reference image URLs. JPEG/PNG/WEBP, ≥400px shortest side, ≤10 MB each."},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","maximum":15.0,"minimum":3.0,"title":"Duration","description":"Video duration in seconds (3–15).","default":5},"seed":{"anyOf":[{"type":"integer","maximum":2147483647.0,"minimum":0.0},{"type":"null"}],"title":"Seed","description":"Optional random seed for reproducibility."}},"type":"object","required":["prompt","images_list"],"title":"HappyHorse1RefToVideoRequest"},"HappyHorse1T2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt","description":"Text prompt describing the video."},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","maximum":15.0,"minimum":3.0,"title":"Duration","description":"Video duration in seconds (3–15).","default":5}},"type":"object","required":["prompt"],"title":"HappyHorse1T2VRequest"},"HappyHorse1VideoEditRequest":{"properties":{"prompt":{"type":"string","title":"Prompt","description":"Edit instruction describing the change to apply to the video."},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url","description":"Source video URL. MP4 or MOV (H.264 recommended), 3–60s, ≤100 MB, longer side ≤2160px, shorter side ≥320px, frame rate >8 fps."},"images_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":5},{"type":"null"}],"title":"Images List","description":"0–5 optional reference image URLs. JPEG/PNG/WEBP, ≥300px each side, ≤10 MB each."},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"audio_setting":{"type":"string","enum":["auto","origin"],"title":"Audio Setting","default":"auto"},"seed":{"anyOf":[{"type":"integer","maximum":2147483647.0,"minimum":0.0},{"type":"null"}],"title":"Seed","description":"Optional random seed for reproducibility."}},"type":"object","required":["prompt","video_url"],"title":"HappyHorse1VideoEditRequest"},"HeygenVideoTranslate":{"properties":{"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"language":{"type":"string","enum":["English","Spanish","French","Hindi","Italian","German","Polish","Portuguese","Chinese","Japanese","Dutch","Turkish","Korean","Danish","Arabic","Romanian","Mandarin","Filipino","Swedish","Indonesian","Ukrainian","Greek","Czech","Bulgarian","Malay","Slovak","Croatian","Tamil","Finnish","Russian","Afrikaans (South Africa)","Albanian (Albania)","Amharic (Ethiopia)","Arabic (Algeria)","Arabic (Bahrain)","Arabic (Egypt)","Arabic (Iraq)","Arabic (Jordan)","Arabic (Kuwait)","Arabic (Lebanon)","Arabic (Libya)","Arabic (Morocco)","Arabic (Oman)","Arabic (Qatar)","Arabic (Saudi Arabia)","Arabic (Syria)","Arabic (Tunisia)","Arabic (United Arab Emirates)","Arabic (Yemen)","Armenian (Armenia)","Azerbaijani (Latin, Azerbaijan)","Bangla (Bangladesh)","Basque","Bengali (India)","Bosnian (Bosnia and Herzegovina)","Bulgarian (Bulgaria)","Burmese (Myanmar)","Catalan","Chinese (Cantonese, Traditional)","Chinese (Jilu Mandarin, Simplified)","Chinese (Mandarin, Simplified)","Chinese (Northeastern Mandarin, Simplified)","Chinese (Southwestern Mandarin, Simplified)","Chinese (Taiwanese Mandarin, Traditional)","Chinese (Wu, Simplified)","Chinese (Zhongyuan Mandarin Henan, Simplified)","Chinese (Zhongyuan Mandarin Shaanxi, Simplified)","Croatian (Croatia)","Czech (Czechia)","Danish (Denmark)","Dutch (Belgium)","Dutch (Netherlands)","English (Australia)","English (Canada)","English (Hong Kong SAR)","English (India)","English (Ireland)","English (Kenya)","English (New Zealand)","English (Nigeria)","English (Philippines)","English (Singapore)","English (South Africa)","English (Tanzania)","English (UK)","English (United States)","Estonian (Estonia)","Filipino (Philippines)","Finnish (Finland)","French (Belgium)","French (Canada)","French (France)","French (Switzerland)","Galician","Georgian (Georgia)","German (Austria)","German (Germany)","German (Switzerland)","Greek (Greece)","Gujarati (India)","Hebrew (Israel)","Hindi (India)","Hungarian (Hungary)","Icelandic (Iceland)","Indonesian (Indonesia)","Irish (Ireland)","Italian (Italy)","Japanese (Japan)","Javanese (Latin, Indonesia)","Kannada (India)","Kazakh (Kazakhstan)","Khmer (Cambodia)","Korean (Korea)","Lao (Laos)","Latvian (Latvia)","Lithuanian (Lithuania)","Macedonian (North Macedonia)","Malay (Malaysia)","Malayalam (India)","Maltese (Malta)","Marathi (India)","Mongolian (Mongolia)","Nepali (Nepal)","Norwegian Bokmål (Norway)","Pashto (Afghanistan)","Persian (Iran)","Polish (Poland)","Portuguese (Brazil)","Portuguese (Portugal)","Romanian (Romania)","Russian (Russia)","Serbian (Latin, Serbia)","Sinhala (Sri Lanka)","Slovak (Slovakia)","Slovenian (Slovenia)","Somali (Somalia)","Spanish (Argentina)","Spanish (Bolivia)","Spanish (Chile)","Spanish (Colombia)","Spanish (Costa Rica)","Spanish (Cuba)","Spanish (Dominican Republic)","Spanish (Ecuador)","Spanish (El Salvador)","Spanish (Equatorial Guinea)","Spanish (Guatemala)","Spanish (Honduras)","Spanish (Mexico)","Spanish (Nicaragua)","Spanish (Panama)","Spanish (Paraguay)","Spanish (Peru)","Spanish (Puerto Rico)","Spanish (Spain)","Spanish (United States)","Spanish (Uruguay)","Spanish (Venezuela)","Sundanese (Indonesia)","Swahili (Kenya)","Swahili (Tanzania)","Swedish (Sweden)","Tamil (India)","Tamil (Malaysia)","Tamil (Singapore)","Tamil (Sri Lanka)","Telugu (India)","Thai (Thailand)","Turkish (Türkiye)","Ukrainian (Ukraine)","Urdu (India)","Urdu (Pakistan)","Uzbek (Latin, Uzbekistan)","Vietnamese (Vietnam)","Welsh (United Kingdom)","Zulu (South Africa)","English - Your Accent","English - American Accent"],"title":"Language","default":"Hindi"}},"type":"object","required":["video_url"],"title":"HeygenVideoTranslate"},"HfDopVideoRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"last_image":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Last Image"},"motion":{"type":"string","enum":["360 Orbit","3D Rotation","Abstract","Action Run","Agent Reveal","Angel Wings","Arc Left","Arc Right","Baseball Kick","Basketball Dunks","Black Tears","Bloom Mouth","Boxing","Buckle Up","Building Explosion","Bullet Time","Car Chasing","Car Explosion","Car Grip","Catwalk","Clone Explosion","Crane Down","Crane Over The Head","Crane Up","Crash Zoom In","Crash Zoom Out","Datamosh","Diamond","Dirty Lens","Disintegration","Dolly In","Dolly Left","Dolly Out","Dolly Right","Dolly Zoom In","Dolly Zoom Out","Double Dolly","Downhill POV","Duplicate","Dutch Angle","Earth Zoom Out","Eyes In","Face Punch","Fire Breathe","Fisheye","Floating Fish","Flood","Floral Eyes","Flying","Focus Change","FPV Drone","Freezing","Garden Bloom","General","Glam","Glowing Fish","Glowshift","Handheld","Head Explosion","Head Off","Head Tracking","Hyperlapse","Incline","Innerlight","Invisible","Jelly Drift","Jib Down","Jib Up","Kiss","Lazy Susan","Lens Crack","Lens Flare","Levitation","Low Shutter","Medusa Gorgona","Melting","Moonwalk Left","Moonwalk Right","Morphskin","Mouth In","Object POV","Overhead","Paint Splash","Paparazzi","Powder Explosion","Push To Glass","Rap Flex","Robo Arm","Roll Transition","Sand Storm","Set on Fire","Skateboard Glide","Skateboard Ollie","Skate Cruise","Ski Carving","Skin Surge","Ski Powder","Snorricam","Snowboard Carving","Snowboard Powder","Soul Jump","Static","Super 8MM","Super Dolly In","Super Dolly Out","Tentacles","Through Object In","Through Object Out","Thunder God","Tilt Down","Tilt up","Timelapse Human","Timelapse Landscape","Turning Metal","VHS","Whip Pan","Wiggle","Wind to Face","YoYo Zoom","Zoom In","Zoom Out"],"title":"Motion","default":"Bullet Time"},"strength":{"type":"number","maximum":1.0,"minimum":0.0,"title":"Strength","default":1},"options":{"type":"string","enum":["dop-lite","dop-turbo","dop-preview"],"title":"Options","default":"dop-lite"}},"type":"object","required":["prompt","image_url"],"title":"HfDopVideoRequest"},"HfSoulImageRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"style":{"type":"string","enum":["Creatures","Medieval","Spotlight","Giant People","Red balloon","green editorial","Subway","Library","Realistic","DigitalCam","Grillz Selfie","Bleached Brows","Sitting on the Street","Crossing the street","Angel Wings","Duplicate","cocktail","Quiet luxury","Fireproof","Elevator Mirror","360 cam","Glitch","FashionShow","PixeletedFace","Sunbathing","Paper Face","90s Grain","Geominimal","Foggy Morning","Overexposed","Sunset beach","Giant Accessory","RingSelfie","Street view","90’s Editorial","Rhyme & blues","2000s Cam","CCTV","0.5 Outfit","Amalfi Summer","Bimbocore","0.5 Selfie","Sand","Vintage PhotoBooth","afterparty cam","Babydoll MakeUp","Through The Glass","Gallery","Eating Food","Swords Hill","Office beach","Help It's Too Big","Japandi","iPhone","Gorpcore","Indie sleaze","Fairycore","Tumblr","Avant-garde","HairClips","birthday mess","Clouded Dream","Y2K Posters","tokyo drift","Object Makeup","Graffiti","Sunburnt","hallway noir","2000s Fashion","Night Beach","Movie","Long legs","7\\","General","Nail Check","Coquette core","Mixed Media","Selfcare","Grunge","Double take","505room","Flight mode","Escalator","burgundy suit","Fisheye","Shoe Check","Rainy Day","Mt. Fuji","Sea breeze","Invertethereal","Y2K","Tokyo Streetstyle","chrome exit","Night rider","Artwork","Glazed doll skin makeup","mount view","2049","blackout fit","Bike mafia","static glow","Nicotine glow","brick shade","dmv","Fish-eye twin","It’s french"],"title":"Style","default":"DigitalCam"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","4:5","5:4","21:9","9:21"],"title":"Aspect Ratio","default":"9:16"},"strength":{"type":"number","maximum":1.0,"minimum":0.0,"title":"Strength","default":0.5},"quality":{"type":"string","enum":["medium","high"],"title":"Quality","default":"medium"}},"type":"object","required":["prompt","image_url"],"title":"HfSoulImageRequest"},"HiDreamImageRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"width":{"type":"integer","title":"Width","default":1024},"height":{"type":"integer","title":"Height","default":1024},"num_images":{"type":"integer","enum":[1,2,3,4],"title":"Num Images","default":1},"model":{"type":"string","title":"Model","default":""}},"type":"object","required":["prompt"],"title":"HiDreamImageRequest"},"HunyuanI2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"aspect_ratio":{"type":"string","enum":["1:1","16:9","9:16"],"title":"Aspect Ratio","default":"16:9"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url"],"title":"HunyuanI2VRequest"},"HunyuanImage3Request":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"width":{"type":"integer","maximum":1536.0,"minimum":256.0,"title":"Width","default":1024},"height":{"type":"integer","maximum":1536.0,"minimum":256.0,"title":"Height","default":1024}},"type":"object","required":["prompt"],"title":"HunyuanImage3Request"},"HunyuanT2IRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"width":{"type":"integer","maximum":1536.0,"minimum":256.0,"title":"Width","default":1024},"height":{"type":"integer","maximum":1536.0,"minimum":256.0,"title":"Height","default":1024}},"type":"object","required":["prompt"],"title":"HunyuanT2IRequest"},"HunyuanT2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["1:1","16:9","9:16"],"title":"Aspect Ratio","default":"16:9"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"HunyuanT2VRequest"},"IAPVerifyAndroidRequest":{"properties":{"package_name":{"type":"string","title":"Package Name"},"product_id":{"type":"string","title":"Product Id"},"purchase_token":{"type":"string","title":"Purchase Token"}},"type":"object","required":["package_name","product_id","purchase_token"],"title":"IAPVerifyAndroidRequest"},"IAPVerifyIOSRequest":{"properties":{"receipt_data":{"type":"string","title":"Receipt Data"},"product_id":{"type":"string","title":"Product Id"}},"type":"object","required":["receipt_data","product_id"],"title":"IAPVerifyIOSRequest"},"IAPVerifySubscriptionIOSRequest":{"properties":{"receipt_data":{"type":"string","title":"Receipt Data"},"product_id":{"type":"string","title":"Product Id"}},"type":"object","required":["receipt_data","product_id"],"title":"IAPVerifySubscriptionIOSRequest"},"IdeogramCharacterRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"render_speed":{"type":"string","enum":["Turbo","Balanced","Quality"],"title":"Render Speed","default":"Balanced"},"style":{"type":"string","enum":["Auto","Realistic","Fiction"],"title":"Style","default":"Auto"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1","4:3","3:4"],"title":"Aspect Ratio","default":"1:1"},"num_images":{"type":"integer","enum":[1,2,3,4],"title":"Num Images","default":1}},"type":"object","required":["prompt","image_url"],"title":"IdeogramCharacterRequest"},"IdeogramV3ReframeRequest":{"properties":{"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"render_speed":{"type":"string","enum":["Turbo","Balanced","Quality"],"title":"Render Speed","default":"Balanced"},"style":{"type":"string","enum":["Auto","General","Realistic","Design"],"title":"Style","default":"Auto"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1","4:3","3:4"],"title":"Aspect Ratio","default":"1:1"},"num_images":{"type":"integer","enum":[1,2,3,4],"title":"Num Images","default":1}},"type":"object","required":["image_url"],"title":"IdeogramV3ReframeRequest"},"IdeogramV3Request":{"properties":{"prompt":{"type":"string","title":"Prompt"},"render_speed":{"type":"string","enum":["Turbo","Balanced","Quality"],"title":"Render Speed","default":"Balanced"},"style":{"type":"string","enum":["Auto","General","Realistic","Design"],"title":"Style","default":"Auto"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1","4:3","3:4"],"title":"Aspect Ratio","default":"1:1"},"num_images":{"type":"integer","enum":[1,2,3,4],"title":"Num Images","default":1}},"type":"object","required":["prompt"],"title":"IdeogramV3Request"},"ImageEffectsMobileRequest":{"properties":{"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"name":{"type":"string","title":"Name"}},"type":"object","required":["image_url","name"],"title":"ImageEffectsMobileRequest"},"ImageEffectsRequest":{"properties":{"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"name":{"type":"string","enum":["Acryclic Ornaments","Advanced Photography","American Comic Style","Angel Figurine","Blurry Selfie","Cyberpunk","Exotic Charm","Felt 3D Polaroid","Felt Keychain","Plastic Bubble Figure","Furry Dream Doll","Futuristic American Comics","Glass Ball","In The Stadium","Lofi Pixel Character","Lying On Fluffy Belly","Landscape Mini World","My World"],"title":"Name","default":"Angel Figurine"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["image_url"],"title":"ImageEffectsRequest"},"ImageFaceSwapRequest":{"properties":{"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"swap_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Swap Url"},"target_index":{"type":"integer","maximum":10.0,"minimum":0.0,"title":"Target Index","default":0},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["image_url","swap_url"],"title":"ImageFaceSwapRequest"},"ImageRequest":{"properties":{"prompt":{"type":"string","title":"Prompt","default":""},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"width":{"type":"integer","title":"Width","default":1024},"height":{"type":"integer","title":"Height","default":1024},"num_images":{"type":"integer","enum":[1,2,3,4],"title":"Num Images","default":1},"model_id":{"items":{"$ref":"#/components/schemas/ModelItem"},"type":"array","title":"Model Id","default":[]},"sync":{"type":"boolean","title":"Sync","default":false}},"type":"object","title":"ImageRequest"},"InfiniteTalkI2VRequest":{"properties":{"prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"audio_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Audio Url"},"resolution":{"type":"string","enum":["480p","720p"],"title":"Resolution","default":"480p"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["image_url","audio_url"],"title":"InfiniteTalkI2VRequest"},"InfiniteTalkV2VRequest":{"properties":{"prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Prompt"},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"audio_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Audio Url"},"resolution":{"type":"string","enum":["480p","720p"],"title":"Resolution","default":"480p"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["video_url","audio_url"],"title":"InfiniteTalkV2VRequest"},"InstagramConnectUrlRequest":{"properties":{"external_user_id":{"type":"string","title":"External User Id","description":"Your identifier for the end-user whose Instagram account should be connected (e.g. a user id from your own system)."},"redirect_to":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Redirect To","description":"URL to redirect the user to after they complete the OAuth consent screen. Must be a full URL (e.g. https://yourapp.com/connected).","default":""}},"type":"object","required":["external_user_id"],"title":"InstagramConnectUrlRequest"},"InstagramPublishRequest":{"properties":{"account_id":{"type":"integer","title":"Account Id","description":"ID of the connected Instagram account (from GET /social/accounts)."},"media_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Media Url","description":"Public URL of the video or image to publish."},"caption":{"type":"string","title":"Caption","description":"Post caption (supports hashtags).","default":""},"placement":{"type":"string","enum":["reels","stories","timeline"],"title":"Placement","description":"Where to publish: Reels feed, Stories, or main timeline.","default":"reels"},"share_to_feed":{"type":"boolean","title":"Share To Feed","description":"Show the Reel on the main feed as well as the Reels tab.","default":true},"cover_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Cover Url","description":"URL of a JPEG/PNG image to use as the Reel's grid thumbnail. Passed to Meta as cover_url. Takes precedence over thumb_offset when both are supplied."},"thumb_offset":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Thumb Offset","description":"Millisecond position in the video to use as the cover frame (e.g. 8000 for 8 s). Ignored when cover_url is set."},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["account_id","media_url"],"title":"InstagramPublishRequest"},"InstagramReelsRequest":{"properties":{"username":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Username"},"count":{"type":"integer","maximum":30.0,"minimum":1.0,"title":"Count","default":10},"cursor":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Cursor"},"min_likes":{"anyOf":[{"type":"string","enum":["Any","100+","1k+","5k+","10k+","50k+","100k+","500k+","1M+","5M+","10M+"]},{"type":"null"}],"title":"Min Likes","default":"Any"},"min_views":{"anyOf":[{"type":"string","enum":["Any","100+","1k+","5k+","10k+","50k+","100k+","500k+","1M+","5M+","10M+"]},{"type":"null"}],"title":"Min Views","default":"Any"},"min_shares":{"anyOf":[{"type":"string","enum":["Any","100+","1k+","5k+","10k+","50k+","100k+","500k+","1M+","5M+","10M+"]},{"type":"null"}],"title":"Min Shares","default":"Any"},"min_comments":{"anyOf":[{"type":"string","enum":["Any","100+","1k+","5k+","10k+","50k+","100k+","500k+","1M+","5M+","10M+"]},{"type":"null"}],"title":"Min Comments","default":"Any"},"min_duration":{"anyOf":[{"type":"string","enum":["Any","15s","30s","45s","1m","2m","3m","5m","10m"]},{"type":"null"}],"title":"Min Duration","default":"Any"},"max_duration":{"anyOf":[{"type":"string","enum":["Any","15s","30s","45s","1m","2m","3m","5m","10m"]},{"type":"null"}],"title":"Max Duration","default":"Any"},"hashtags":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Hashtags"},"published_after":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Published After"},"published_before":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Published Before"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","title":"InstagramReelsRequest"},"IntegrationInterestRequest":{"properties":{"platform_name":{"type":"string","title":"Platform Name"}},"type":"object","required":["platform_name"],"title":"IntegrationInterestRequest"},"KimiK3Request":{"properties":{"prompt":{"type":"string","title":"Prompt"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"temperature":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Temperature"},"max_tokens":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Max Tokens"},"top_p":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Top P"},"frequency_penalty":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Frequency Penalty"},"presence_penalty":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Presence Penalty"},"stop":{"anyOf":[{"type":"string"},{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Stop"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"KimiK3Request"},"KlingAvatarProRequest":{"properties":{"prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"audio_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Audio Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["image_url","audio_url"],"title":"KlingAvatarProRequest"},"KlingAvatarStandardRequest":{"properties":{"prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"audio_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Audio Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["image_url","audio_url"],"title":"KlingAvatarStandardRequest"},"KlingI2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"last_image":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Last Image"},"aspect_ratio":{"type":"string","enum":["1:1","16:9","9:16"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","enum":[5,10],"title":"Duration","default":5},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url"],"title":"KlingI2VRequest"},"KlingO1EditRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["auto","16:9","9:16","1:1","4:3","3:4","3:2","2:3","21:9"],"title":"Aspect Ratio","default":"1:1"},"resolution":{"type":"string","enum":["1k","2k"],"title":"Resolution","default":"1k"}},"type":"object","required":["prompt","images_list"],"title":"KlingO1EditRequest"},"KlingO1I2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"last_image":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Last Image"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","enum":[5,10],"title":"Duration","default":5}},"type":"object","required":["prompt","image_url"],"title":"KlingO1I2VRequest"},"KlingO1ReferenceRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array"},{"type":"null"}],"title":"Images List"},"video_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Video Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","enum":[3,4,5,6,7,8,9,10],"title":"Duration","default":5},"keep_original_sound":{"type":"boolean","title":"Keep Original Sound","default":true}},"type":"object","required":["prompt","images_list"],"title":"KlingO1ReferenceRequest"},"KlingO1StandardI2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"last_image":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Last Image"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","enum":[5,10],"title":"Duration","default":5}},"type":"object","required":["prompt","image_url"],"title":"KlingO1StandardI2VRequest"},"KlingO1StandardReferenceRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array"},{"type":"null"}],"title":"Images List"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","enum":[5,10],"title":"Duration","default":5}},"type":"object","required":["prompt","images_list"],"title":"KlingO1StandardReferenceRequest"},"KlingO1StandardVideoEditRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array"},{"type":"null"}],"title":"Images List"},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"keep_original_sound":{"type":"boolean","title":"Keep Original Sound","default":true}},"type":"object","required":["prompt","images_list","video_url"],"title":"KlingO1StandardVideoEditRequest"},"KlingO1T2IRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","3:2","2:3","21:9"],"title":"Aspect Ratio","default":"1:1"},"resolution":{"type":"string","enum":["1k","2k"],"title":"Resolution","default":"1k"},"num_images":{"type":"integer","maximum":9.0,"minimum":1.0,"title":"Num Images","default":1}},"type":"object","required":["prompt"],"title":"KlingO1T2IRequest"},"KlingO1T2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","enum":[5,10],"title":"Duration","default":5}},"type":"object","required":["prompt"],"title":"KlingO1T2VRequest"},"KlingO1VideoEditRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array"},{"type":"null"}],"title":"Images List"},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1"],"title":"Aspect Ratio","default":"16:9"},"keep_original_sound":{"type":"boolean","title":"Keep Original Sound","default":true}},"type":"object","required":["prompt","images_list","video_url"],"title":"KlingO1VideoEditRequest"},"KlingO3EditRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":10,"title":"Images List"},"aspect_ratio":{"type":"string","enum":["auto","1:1","16:9","9:16","4:3","3:4","3:2","2:3","21:9"],"title":"Aspect Ratio","default":"auto"},"resolution":{"type":"string","enum":["1K","2K","4K"],"title":"Resolution","default":"1K"},"num_images":{"type":"integer","maximum":9.0,"minimum":1.0,"title":"Num Images","default":1},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","images_list"],"title":"KlingO3EditRequest"},"KlingO3T2IRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["1:1","16:9","9:16","4:3","3:4","3:2","2:3","21:9"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["1K","2K","4K"],"title":"Resolution","default":"1K"},"num_images":{"type":"integer","maximum":9.0,"minimum":1.0,"title":"Num Images","default":1},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"KlingO3T2IRequest"},"KlingT2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["1:1","16:9","9:16"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","enum":[5,10],"title":"Duration","default":5},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"KlingT2VRequest"},"KlingTurboI2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"duration":{"type":"integer","enum":[5,10],"title":"Duration","default":5},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url"],"title":"KlingTurboI2VRequest"},"KlingTurboStdI2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"duration":{"type":"integer","enum":[5,10],"title":"Duration","default":5},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url"],"title":"KlingTurboStdI2VRequest"},"KlingTurboT2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["1:1","16:9","9:16"],"title":"Aspect Ratio","default":"9:16"},"duration":{"type":"integer","enum":[5,10],"title":"Duration","default":5},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"KlingTurboT2VRequest"},"KlingV26ProI2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","enum":[5,10],"title":"Duration","default":5},"sound":{"type":"boolean","title":"Sound","default":true}},"type":"object","required":["prompt","image_url"],"title":"KlingV26ProI2VRequest"},"KlingV26ProMotionControlRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"character_orientation":{"type":"string","enum":["image","video"],"title":"Character Orientation","default":"image"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url","video_url"],"title":"KlingV26ProMotionControlRequest"},"KlingV26ProT2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","enum":[5,10],"title":"Duration","default":5},"sound":{"type":"boolean","title":"Sound","default":true}},"type":"object","required":["prompt"],"title":"KlingV26ProT2VRequest"},"KlingV26StdMotionControlRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"character_orientation":{"type":"string","enum":["image","video"],"title":"Character Orientation","default":"image"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url","video_url"],"title":"KlingV26StdMotionControlRequest"},"KlingV2AvatarProRequest":{"properties":{"prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"audio_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Audio Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["image_url","audio_url"],"title":"KlingV2AvatarProRequest"},"KlingV2AvatarStandardRequest":{"properties":{"prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"audio_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Audio Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["image_url","audio_url"],"title":"KlingV2AvatarStandardRequest"},"KlingV304kI2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"last_image":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Last Image"},"duration":{"type":"integer","enum":[3,4,5,6,7,8,9,10,11,12,13,14,15],"title":"Duration","default":5},"generate_audio":{"type":"boolean","title":"Generate Audio","default":true},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url"],"title":"KlingV304kI2VRequest"},"KlingV304kT2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","enum":[3,4,5,6,7,8,9,10,11,12,13,14,15],"title":"Duration","default":5},"generate_audio":{"type":"boolean","title":"Generate Audio","default":true},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"KlingV304kT2VRequest"},"KlingV30ProI2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"last_image":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Last Image"},"duration":{"type":"integer","enum":[3,4,5,6,7,8,9,10,11,12,13,14,15],"title":"Duration","default":5},"generate_audio":{"type":"boolean","title":"Generate Audio","default":true},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url"],"title":"KlingV30ProI2VRequest"},"KlingV30ProMotionControlRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"character_orientation":{"type":"string","enum":["image","video"],"title":"Character Orientation","default":"image"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"keep_original_sound":{"type":"boolean","title":"Keep Original Sound","default":true},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["image_url","video_url"],"title":"KlingV30ProMotionControlRequest"},"KlingV30ProT2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","enum":[3,4,5,6,7,8,9,10,11,12,13,14,15],"title":"Duration","default":5},"generate_audio":{"type":"boolean","title":"Generate Audio","default":true},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"KlingV30ProT2VRequest"},"KlingV30StandardI2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"last_image":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Last Image"},"duration":{"type":"integer","enum":[3,4,5,6,7,8,9,10,11,12,13,14,15],"title":"Duration","default":5},"generate_audio":{"type":"boolean","title":"Generate Audio","default":true},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url"],"title":"KlingV30StandardI2VRequest"},"KlingV30StandardT2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","enum":[3,4,5,6,7,8,9,10,11,12,13,14,15],"title":"Duration","default":5},"generate_audio":{"type":"boolean","title":"Generate Audio","default":true},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"KlingV30StandardT2VRequest"},"KlingV30StdMotionControlRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"character_orientation":{"type":"string","enum":["image","video"],"title":"Character Orientation","default":"image"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"keep_original_sound":{"type":"boolean","title":"Keep Original Sound","default":true},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["image_url","video_url"],"title":"KlingV30StdMotionControlRequest"},"KlingV3Omni4kI2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":4,"title":"Images List","description":"Up to 4 reference images. Use <<<image_N>>> in the prompt to address them; if omitted, <<<image_1>>> is auto-prepended."},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","enum":[3,4,5,6,7,8,9,10,11,12,13,14,15],"title":"Duration","default":5},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","images_list"],"title":"KlingV3Omni4kI2VRequest"},"KlingV3Omni4kT2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","enum":[3,4,5,6,7,8,9,10,11,12,13,14,15],"title":"Duration","default":5},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"KlingV3Omni4kT2VRequest"},"KlingV3OmniProI2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":4,"title":"Images List","description":"Up to 4 reference images. Use <<<image_N>>> in the prompt to address them; if omitted, <<<image_1>>> is auto-prepended."},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","enum":[3,4,5,6,7,8,9,10,11,12,13,14,15],"title":"Duration","default":5},"generate_audio":{"type":"boolean","title":"Generate Audio","default":false},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","images_list"],"title":"KlingV3OmniProI2VRequest"},"KlingV3OmniProT2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","enum":[3,4,5,6,7,8,9,10,11,12,13,14,15],"title":"Duration","default":5},"generate_audio":{"type":"boolean","title":"Generate Audio","default":false},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"KlingV3OmniProT2VRequest"},"KlingV3OmniStandardI2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":4,"title":"Images List","description":"Up to 4 reference images. Use <<<image_N>>> in the prompt to address them; if omitted, <<<image_1>>> is auto-prepended."},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","enum":[3,4,5,6,7,8,9,10,11,12,13,14,15],"title":"Duration","default":5},"generate_audio":{"type":"boolean","title":"Generate Audio","default":false},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","images_list"],"title":"KlingV3OmniStandardI2VRequest"},"KlingV3OmniStandardT2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","enum":[3,4,5,6,7,8,9,10,11,12,13,14,15],"title":"Duration","default":5},"generate_audio":{"type":"boolean","title":"Generate Audio","default":false},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"KlingV3OmniStandardT2VRequest"},"KlingV3TurboProI2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"duration":{"type":"integer","enum":[3,4,5,6,7,8,9,10,11,12,13,14,15],"title":"Duration","default":5},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url"],"title":"KlingV3TurboProI2VRequest"},"KlingV3TurboProT2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","enum":[3,4,5,6,7,8,9,10,11,12,13,14,15],"title":"Duration","default":5},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"KlingV3TurboProT2VRequest"},"KlingV3TurboStandardI2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"duration":{"type":"integer","enum":[3,4,5,6,7,8,9,10,11,12,13,14,15],"title":"Duration","default":5},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url"],"title":"KlingV3TurboStandardI2VRequest"},"KlingV3TurboStandardT2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","enum":[3,4,5,6,7,8,9,10,11,12,13,14,15],"title":"Duration","default":5},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"KlingV3TurboStandardT2VRequest"},"KontextEffectsMobileRequest":{"properties":{"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"name":{"type":"string","title":"Name"},"prompt":{"type":"string","title":"Prompt"}},"type":"object","required":["image_url","name","prompt"],"title":"KontextEffectsMobileRequest"},"KontextEffectsRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"name":{"type":"string","enum":["Age Progression","Background Change","Cartoonify","Color Correction","Expression Change","Face Enhancement","Hair Change","Object Removal","Professional Photo","Scene Composition","Style Transfer","Time of Day","Weather Effect"],"title":"Name","default":"Age Progression"}},"type":"object","required":["prompt","image_url"],"title":"KontextEffectsRequest"},"KontextImageRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1","4:3","3:4","3:2","2:3","21:9","9:21"],"title":"Aspect Ratio","default":"1:1"},"num_images":{"type":"integer","enum":[1,2,3,4],"title":"Num Images","default":1}},"type":"object","required":["prompt"],"title":"KontextImageRequest"},"KreaV2TurboLoraRequest":{"properties":{"prompt":{"type":"string","title":"Prompt","description":"The positive prompt for the generation."},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url","description":"Optional source image URL for image-to-image generation."},"loras":{"anyOf":[{"items":{"additionalProperties":true,"type":"object"},"type":"array"},{"type":"null"}],"title":"Loras","description":"List of LoRAs to apply (maximum 3). Example: [{'path': '...', 'scale': 1.0}]"},"aspect_ratio":{"type":"string","enum":["1:1","1:2","2:1","1:3","3:1","2:3","3:2","3:4","4:3","4:5","5:4","9:16","16:9","9:21","21:9"],"title":"Aspect Ratio","description":"The aspect ratio of the generated image.","default":"1:1"},"resolution":{"type":"string","enum":["1k","2k"],"title":"Resolution","description":"Total output resolution tier: 1k or 2k.","default":"1k"},"strength":{"anyOf":[{"type":"number","maximum":1.0,"minimum":0.0},{"type":"null"}],"title":"Strength","description":"Image-to-image strength (0 to 1). Only used when image_url is set.","default":0.8},"seed":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Seed","description":"Random seed (-1 for random).","default":-1},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"KreaV2TurboLoraRequest"},"KreaV2TurboRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"aspect_ratio":{"type":"string","enum":["1:1","1:2","2:1","1:3","3:1","2:3","3:2","3:4","4:3","4:5","5:4","9:16","16:9","9:21","21:9"],"title":"Aspect Ratio","default":"1:1"},"resolution":{"type":"string","enum":["1k","2k"],"title":"Resolution","default":"1k"},"strength":{"anyOf":[{"type":"number","maximum":1.0,"minimum":0.0},{"type":"null"}],"title":"Strength","default":0.8},"seed":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Seed","default":-1},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"KreaV2TurboRequest"},"LTX219BImageToVideoRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"duration":{"type":"integer","maximum":20.0,"minimum":5.0,"title":"Duration","default":5},"resolution":{"type":"string","enum":["480p","720p","1080p"],"title":"Resolution","default":"720p"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url"],"title":"LTX219BImageToVideoRequest"},"LTX219BTextToVideoRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"duration":{"type":"integer","maximum":20.0,"minimum":5.0,"title":"Duration","default":5},"aspect_ratio":{"type":"string","enum":["16:9","9:16"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["480p","720p","1080p"],"title":"Resolution","default":"720p"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"LTX219BTextToVideoRequest"},"LTX23ImageToVideoRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"duration":{"type":"integer","maximum":20.0,"minimum":5.0,"title":"Duration","default":5},"resolution":{"type":"string","enum":["480p","720p","1080p"],"title":"Resolution","default":"720p"},"seed":{"type":"integer","title":"Seed","default":-1},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url"],"title":"LTX23ImageToVideoRequest"},"LTX23LipsyncRequest":{"properties":{"audio_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Audio Url"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Prompt"},"resolution":{"type":"string","enum":["480p","720p","1080p"],"title":"Resolution","default":"720p"},"seed":{"type":"integer","title":"Seed","default":-1},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["audio_url"],"title":"LTX23LipsyncRequest"},"LTX23TextToVideoRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"duration":{"type":"integer","maximum":20.0,"minimum":5.0,"title":"Duration","default":5},"aspect_ratio":{"type":"string","enum":["16:9","9:16"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["480p","720p","1080p"],"title":"Resolution","default":"720p"},"seed":{"type":"integer","title":"Seed","default":-1},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"LTX23TextToVideoRequest"},"LTX23VideoExtendRequest":{"properties":{"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Prompt"},"duration":{"type":"integer","maximum":20.0,"minimum":1.0,"title":"Duration","default":5},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["video_url"],"title":"LTX23VideoExtendRequest"},"LTX25ImageToVideoRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"last_image":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Last Image"},"duration":{"type":"integer","maximum":20.0,"minimum":5.0,"title":"Duration","default":5},"resolution":{"type":"string","enum":["720p","1080p","2k","4k"],"title":"Resolution","default":"720p"},"seed":{"type":"integer","title":"Seed","default":-1},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url"],"title":"LTX25ImageToVideoRequest"},"LTX25TextToVideoRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"duration":{"type":"integer","maximum":20.0,"minimum":5.0,"title":"Duration","default":5},"aspect_ratio":{"type":"string","enum":["16:9","9:16"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["720p","1080p","2k","4k"],"title":"Resolution","default":"720p"},"seed":{"type":"integer","title":"Seed","default":-1},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"LTX25TextToVideoRequest"},"LeonardoAILucidOriginRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["1:1","16:9","9:16","3:4","4:3","4:5","5:4","2:3","3:2"],"title":"Aspect Ratio","default":"1:1"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"LeonardoAILucidOriginRequest"},"LeonardoAIMotionRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16"],"title":"Aspect Ratio","default":"16:9"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"LeonardoAIMotionRequest"},"LeonardoAIPhoenixRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["1:1","16:9","9:16","3:4","4:3","4:5","5:4","2:3","3:2"],"title":"Aspect Ratio","default":"1:1"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"LeonardoAIPhoenixRequest"},"LinkedInPublishRequest":{"properties":{"account_id":{"type":"integer","title":"Account Id","description":"ID of the connected LinkedIn account (from GET /social/accounts)."},"media_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Media Url","description":"Public URL of the video or image to publish."},"caption":{"type":"string","title":"Caption","description":"Post caption / text.","default":""},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["account_id","media_url"],"title":"LinkedInPublishRequest"},"LipsyncVideoRequest":{"properties":{"audio_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Audio Url"},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["audio_url","video_url"],"title":"LipsyncVideoRequest"},"LoraItem":{"properties":{"path":{"type":"string","title":"Path"},"scale":{"type":"number","maximum":4.0,"minimum":0.0,"title":"Scale"}},"type":"object","required":["path","scale"],"title":"LoraItem"},"Ltx219BLipsyncRequest":{"properties":{"prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"audio_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Audio Url"},"resolution":{"type":"string","enum":["480p","720p","1080p"],"title":"Resolution","default":"720p"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["audio_url"],"title":"Ltx219BLipsyncRequest"},"Ltx2FastI2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"duration":{"type":"integer","enum":[6,8,10,12,14,16,18,20],"title":"Duration","default":8},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"generate_audio":{"type":"boolean","title":"Generate Audio","default":true}},"type":"object","required":["prompt","image_url"],"title":"Ltx2FastI2VRequest"},"Ltx2FastT2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"duration":{"type":"integer","enum":[6,8,10,12,14,16,18,20],"title":"Duration","default":8},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"generate_audio":{"type":"boolean","title":"Generate Audio","default":true}},"type":"object","required":["prompt"],"title":"Ltx2FastT2VRequest"},"Ltx2ProI2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"duration":{"type":"integer","enum":[6,8,10],"title":"Duration","default":6},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"generate_audio":{"type":"boolean","title":"Generate Audio","default":true}},"type":"object","required":["prompt","image_url"],"title":"Ltx2ProI2VRequest"},"Ltx2ProT2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"duration":{"type":"integer","enum":[6,8,10],"title":"Duration","default":6},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"generate_audio":{"type":"boolean","title":"Generate Audio","default":true}},"type":"object","required":["prompt"],"title":"Ltx2ProT2VRequest"},"LumaFlashReframe":{"properties":{"prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Prompt"},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"1:1"},"duration":{"type":"integer","enum":[5,8,10],"title":"Duration","default":5},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["video_url"],"title":"LumaFlashReframe"},"LumaModifyVideoRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","video_url"],"title":"LumaModifyVideoRequest"},"MakeRunRequest":{"properties":{"model":{"type":"string","title":"Model"},"inputs":{"additionalProperties":true,"type":"object","title":"Inputs"}},"type":"object","required":["model","inputs"],"title":"MakeRunRequest"},"MakeSubscribeRequest":{"properties":{"hookUrl":{"type":"string","title":"Hookurl"},"event":{"type":"string","title":"Event"}},"type":"object","required":["hookUrl","event"],"title":"MakeSubscribeRequest"},"MediaAssetCreate":{"properties":{"url":{"type":"string","title":"Url"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"media_type":{"type":"string","title":"Media Type","default":"image"},"mime_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Mime Type"},"size_bytes":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Size Bytes"}},"type":"object","required":["url"],"title":"MediaAssetCreate"},"MediaAssetResponse":{"properties":{"id":{"type":"integer","title":"Id"},"user_id":{"type":"integer","title":"User Id"},"url":{"type":"string","title":"Url"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"media_type":{"type":"string","title":"Media Type"},"mime_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Mime Type"},"size_bytes":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Size Bytes"},"created_at":{"type":"string","format":"date-time","title":"Created At"}},"type":"object","required":["id","user_id","url","media_type","created_at"],"title":"MediaAssetResponse"},"Meshy6I23DRequest":{"properties":{"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"should_texture":{"type":"boolean","title":"Should Texture","default":true},"topology":{"type":"string","enum":["quad","triangle"],"title":"Topology","default":"triangle"},"target_polycount":{"type":"integer","maximum":300000.0,"minimum":100.0,"title":"Target Polycount","default":30000},"should_remesh":{"type":"boolean","title":"Should Remesh","default":true},"symmetry_mode":{"type":"string","enum":["off","auto","on"],"title":"Symmetry Mode","default":"auto"},"enable_pbr":{"type":"boolean","title":"Enable Pbr","default":false},"pose_mode":{"type":"string","enum":["","a-pose","t-pose"],"title":"Pose Mode","default":""},"texture_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Texture Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["image_url"],"title":"Meshy6I23DRequest"},"Meshy6MultiI23DRequest":{"properties":{"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":4,"minItems":1,"title":"Images List"},"should_texture":{"type":"boolean","title":"Should Texture","default":true},"topology":{"type":"string","enum":["quad","triangle"],"title":"Topology","default":"triangle"},"target_polycount":{"type":"integer","maximum":300000.0,"minimum":100.0,"title":"Target Polycount","default":30000},"should_remesh":{"type":"boolean","title":"Should Remesh","default":true},"symmetry_mode":{"type":"string","enum":["off","auto","on"],"title":"Symmetry Mode","default":"auto"},"enable_pbr":{"type":"boolean","title":"Enable Pbr","default":false},"pose_mode":{"type":"string","enum":["","a-pose","t-pose"],"title":"Pose Mode","default":""},"texture_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Texture Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["images_list"],"title":"Meshy6MultiI23DRequest"},"Meshy6T23DRequest":{"properties":{"prompt":{"type":"string","maxLength":600,"title":"Prompt"},"mode":{"type":"string","enum":["preview","full"],"title":"Mode","default":"full"},"topology":{"type":"string","enum":["quad","triangle"],"title":"Topology","default":"triangle"},"target_polycount":{"type":"integer","maximum":300000.0,"minimum":100.0,"title":"Target Polycount","default":30000},"should_remesh":{"type":"boolean","title":"Should Remesh","default":true},"symmetry_mode":{"type":"string","enum":["off","auto","on"],"title":"Symmetry Mode","default":"auto"},"enable_pbr":{"type":"boolean","title":"Enable Pbr","default":false},"seed":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Seed"},"enable_prompt_expansion":{"type":"boolean","title":"Enable Prompt Expansion","default":false},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Meshy6T23DRequest"},"MeshyV7ImageTo3DRequest":{"properties":{"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"model_type":{"anyOf":[{"type":"string","enum":["standard","lowpoly"]},{"type":"null"}],"title":"Model Type","default":"standard"},"topology":{"anyOf":[{"type":"string","enum":["quad","triangle"]},{"type":"null"}],"title":"Topology","default":"triangle"},"target_polycount":{"anyOf":[{"type":"integer","maximum":300000.0,"minimum":100.0},{"type":"null"}],"title":"Target Polycount","default":30000},"symmetry_mode":{"anyOf":[{"type":"string","enum":["off","auto","on"]},{"type":"null"}],"title":"Symmetry Mode","default":"auto"},"should_remesh":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Should Remesh","default":true},"should_texture":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Should Texture","default":true},"enable_pbr":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Enable Pbr","default":false},"ultra_mode":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Ultra Mode","default":false},"pose_mode":{"anyOf":[{"type":"string","enum":["a-pose","t-pose"]},{"type":"null"}],"title":"Pose Mode","default":"a-pose"},"texture_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Texture Prompt"},"texture_image":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Texture Image"},"enable_rigging":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Enable Rigging","default":false},"rigging_height_meters":{"anyOf":[{"type":"number","minimum":0.01},{"type":"null"}],"title":"Rigging Height Meters","default":1.7},"enable_animation":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Enable Animation","default":false},"animation_action_id":{"anyOf":[{"type":"integer","maximum":696.0,"minimum":0.0},{"type":"null"}],"title":"Animation Action Id","default":92},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["image_url"],"title":"MeshyV7ImageTo3DRequest"},"MeshyV7MultiImageTo3DRequest":{"properties":{"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":4,"minItems":1,"title":"Images List"},"topology":{"anyOf":[{"type":"string","enum":["quad","triangle"]},{"type":"null"}],"title":"Topology","default":"triangle"},"target_polycount":{"anyOf":[{"type":"integer","maximum":300000.0,"minimum":100.0},{"type":"null"}],"title":"Target Polycount","default":30000},"symmetry_mode":{"anyOf":[{"type":"string","enum":["off","auto","on"]},{"type":"null"}],"title":"Symmetry Mode","default":"auto"},"should_remesh":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Should Remesh","default":true},"should_texture":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Should Texture","default":true},"enable_pbr":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Enable Pbr","default":false},"pose_mode":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Pose Mode","default":""},"texture_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Texture Prompt"},"texture_image":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Texture Image"},"enable_rigging":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Enable Rigging","default":false},"rigging_height_meters":{"anyOf":[{"type":"number","minimum":0.01},{"type":"null"}],"title":"Rigging Height Meters","default":1.7},"enable_animation":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Enable Animation","default":false},"animation_action_id":{"anyOf":[{"type":"integer","maximum":696.0,"minimum":0.0},{"type":"null"}],"title":"Animation Action Id","default":92},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["images_list"],"title":"MeshyV7MultiImageTo3DRequest"},"MessageItem":{"properties":{"role":{"type":"string","title":"Role"},"content":{"type":"string","title":"Content"}},"type":"object","required":["role","content"],"title":"MessageItem"},"MidjourneyI2IRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"speed":{"type":"string","enum":["relaxed","fast","turbo"],"title":"Speed","default":"relaxed"},"aspect_ratio":{"type":"string","enum":["1:1","16:9","9:16","3:4","4:3","1:2","2:1","2:3","3:2","5:6","6:5"],"title":"Aspect Ratio","default":"1:1"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"variety":{"type":"integer","maximum":100.0,"minimum":0.0,"title":"Variety","default":5},"stylization":{"type":"integer","maximum":1000.0,"minimum":0.0,"title":"Stylization","default":1},"weirdness":{"type":"integer","maximum":3000.0,"minimum":0.0,"title":"Weirdness","default":1}},"type":"object","required":["prompt","image_url"],"title":"MidjourneyI2IRequest"},"MidjourneyKinoviRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["1:1","16:9","9:16","3:4","4:3","21:9"],"title":"Aspect Ratio","default":"1:1"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"stylize":{"type":"integer","maximum":1000.0,"minimum":0.0,"title":"Stylize","default":100},"chaos":{"type":"integer","maximum":100.0,"minimum":0.0,"title":"Chaos","default":0},"weird":{"type":"integer","maximum":3000.0,"minimum":0.0,"title":"Weird","default":0},"negative_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Negative Prompt"},"seed":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Seed"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"MidjourneyKinoviRequest"},"MidjourneyOmniRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"speed":{"type":"string","enum":["relaxed","fast","turbo"],"title":"Speed","default":"relaxed"},"aspect_ratio":{"type":"string","enum":["1:1","16:9","9:16","3:4","4:3","1:2","2:1","2:3","3:2","5:6","6:5"],"title":"Aspect Ratio","default":"1:1"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"weight":{"type":"integer","maximum":1000.0,"minimum":0.0,"title":"Weight","default":400},"variety":{"type":"integer","maximum":100.0,"minimum":0.0,"title":"Variety","default":5},"stylization":{"type":"integer","maximum":1000.0,"minimum":0.0,"title":"Stylization","default":1},"weirdness":{"type":"integer","maximum":3000.0,"minimum":0.0,"title":"Weirdness","default":1}},"type":"object","required":["prompt","image_url"],"title":"MidjourneyOmniRequest"},"MidjourneyStyleRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"speed":{"type":"string","enum":["relaxed","fast","turbo"],"title":"Speed","default":"relaxed"},"aspect_ratio":{"type":"string","enum":["1:1","16:9","9:16","3:4","4:3","1:2","2:1","2:3","3:2","5:6","6:5"],"title":"Aspect Ratio","default":"1:1"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"variety":{"type":"integer","maximum":100.0,"minimum":0.0,"title":"Variety","default":5},"stylization":{"type":"integer","maximum":1000.0,"minimum":0.0,"title":"Stylization","default":1},"weirdness":{"type":"integer","maximum":3000.0,"minimum":0.0,"title":"Weirdness","default":1}},"type":"object","required":["prompt","image_url"],"title":"MidjourneyStyleRequest"},"MidjourneyT2IRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"speed":{"type":"string","enum":["relaxed","fast","turbo"],"title":"Speed","default":"relaxed"},"aspect_ratio":{"type":"string","enum":["1:1","16:9","9:16","3:4","4:3","1:2","2:1","2:3","3:2","5:6","6:5"],"title":"Aspect Ratio","default":"1:1"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"variety":{"type":"integer","maximum":100.0,"minimum":0.0,"title":"Variety","default":5},"stylization":{"type":"integer","maximum":1000.0,"minimum":0.0,"title":"Stylization","default":1},"weirdness":{"type":"integer","maximum":3000.0,"minimum":0.0,"title":"Weirdness","default":1}},"type":"object","required":["prompt"],"title":"MidjourneyT2IRequest"},"MidjourneyVideoRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"aspect_ratio":{"type":"string","enum":["1:1","16:9","9:16","3:4","4:3","1:2","2:1","2:3","3:2","5:6","6:5"],"title":"Aspect Ratio","default":"1:1"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"resolution":{"type":"string","enum":["480p","1080p"],"title":"Resolution","default":"480p"},"num_videos":{"type":"integer","enum":[1,2,4],"title":"Num Videos","default":1},"variety":{"type":"integer","maximum":100.0,"minimum":0.0,"title":"Variety","default":5},"stylization":{"type":"integer","maximum":1000.0,"minimum":0.0,"title":"Stylization","default":1},"weirdness":{"type":"integer","maximum":3000.0,"minimum":0.0,"title":"Weirdness","default":1}},"type":"object","required":["prompt","image_url"],"title":"MidjourneyVideoRequest"},"MiniMaxH3I2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"last_image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Last Image Url"},"resolution":{"type":"string","const":"2k","title":"Resolution","default":"2k"},"duration":{"type":"integer","enum":[5,6,7,8,9,10,11,12,13,14,15],"title":"Duration","default":5},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url"],"title":"MiniMaxH3I2VRequest"},"MiniMaxH3OpenImageToVideoRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"last_image":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Last Image"},"resolution":{"type":"string","enum":["480p","768p"],"title":"Resolution","default":"480p"},"duration":{"type":"integer","enum":[5,6,7,8,9,10,11,12,13,14,15],"title":"Duration","default":5},"seed":{"type":"integer","title":"Seed","default":-1},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url"],"title":"MiniMaxH3OpenImageToVideoRequest"},"MiniMaxH3OpenReferenceToVideoRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array"},{"type":"null"}],"title":"Images List"},"videos_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array"},{"type":"null"}],"title":"Videos List"},"audios_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array"},{"type":"null"}],"title":"Audios List"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["480p","768p"],"title":"Resolution","default":"480p"},"duration":{"type":"integer","enum":[5,6,7,8,9,10,11,12,13,14,15],"title":"Duration","default":5},"seed":{"type":"integer","title":"Seed","default":-1},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"MiniMaxH3OpenReferenceToVideoRequest"},"MiniMaxH3OpenTextToVideoRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["480p","768p"],"title":"Resolution","default":"480p"},"duration":{"type":"integer","enum":[5,6,7,8,9,10,11,12,13,14,15],"title":"Duration","default":5},"seed":{"type":"integer","title":"Seed","default":-1},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"MiniMaxH3OpenTextToVideoRequest"},"MiniMaxH3ReferenceToVideoRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"reference_images":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Reference Images"},"reference_videos":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Reference Videos"},"reference_audios":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Reference Audios"},"aspect_ratio":{"type":"string","enum":["21:9","16:9","4:3","1:1","3:4","9:16"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","const":"2k","title":"Resolution","default":"2k"},"duration":{"type":"integer","enum":[5,6,7,8,9,10,11,12,13,14,15],"title":"Duration","default":5},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"MiniMaxH3ReferenceToVideoRequest"},"MiniMaxH3T2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["21:9","16:9","4:3","1:1","3:4","9:16"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","const":"2k","title":"Resolution","default":"2k"},"duration":{"type":"integer","enum":[5,6,7,8,9,10,11,12,13,14,15],"title":"Duration","default":5},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"MiniMaxH3T2VRequest"},"Minimax02ProI2V":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"end_image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"End Image Url"},"duration":{"type":"integer","const":6,"title":"Duration","default":6},"resolution":{"type":"string","const":"1080P","title":"Resolution","default":"1080P"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url"],"title":"Minimax02ProI2V"},"Minimax02ProT2V":{"properties":{"prompt":{"type":"string","title":"Prompt"},"duration":{"type":"integer","const":6,"title":"Duration","default":6},"resolution":{"type":"string","const":"1080P","title":"Resolution","default":"1080P"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Minimax02ProT2V"},"Minimax02StdI2V":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"end_image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"End Image Url"},"duration":{"type":"integer","enum":[6,10],"title":"Duration","default":6},"resolution":{"type":"string","enum":["512P","768P"],"title":"Resolution","default":"512P"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url"],"title":"Minimax02StdI2V"},"Minimax02StdT2V":{"properties":{"prompt":{"type":"string","title":"Prompt"},"duration":{"type":"integer","enum":[6,10],"title":"Duration","default":6},"resolution":{"type":"string","const":"768P","title":"Resolution","default":"768P"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Minimax02StdT2V"},"MinimaxH3ImageToVideoLoraRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"last_image":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Last Image"},"resolution":{"anyOf":[{"type":"string","enum":["480p","768p"]},{"type":"null"}],"title":"Resolution","default":"480p"},"duration":{"anyOf":[{"type":"integer","maximum":15.0,"minimum":3.0},{"type":"null"}],"title":"Duration","default":5},"loras":{"anyOf":[{"items":{"additionalProperties":true,"type":"object"},"type":"array"},{"type":"null"}],"title":"Loras"},"seed":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Seed","default":-1},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"MinimaxH3ImageToVideoLoraRequest"},"MinimaxH3ReferenceToVideoLoraRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":9},{"type":"null"}],"title":"Images List"},"videos_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":3},{"type":"null"}],"title":"Videos List"},"audios_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":3},{"type":"null"}],"title":"Audios List"},"aspect_ratio":{"anyOf":[{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"]},{"type":"null"}],"title":"Aspect Ratio","default":"16:9"},"resolution":{"anyOf":[{"type":"string","enum":["480p","768p"]},{"type":"null"}],"title":"Resolution","default":"480p"},"duration":{"anyOf":[{"type":"integer","maximum":15.0,"minimum":3.0},{"type":"null"}],"title":"Duration","default":5},"loras":{"anyOf":[{"items":{"additionalProperties":true,"type":"object"},"type":"array"},{"type":"null"}],"title":"Loras"},"seed":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Seed","default":-1},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"MinimaxH3ReferenceToVideoLoraRequest"},"MinimaxH3TextToVideoLoraRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"anyOf":[{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"]},{"type":"null"}],"title":"Aspect Ratio","default":"16:9"},"resolution":{"anyOf":[{"type":"string","enum":["480p","768p"]},{"type":"null"}],"title":"Resolution","default":"480p"},"duration":{"anyOf":[{"type":"integer","maximum":15.0,"minimum":3.0},{"type":"null"}],"title":"Duration","default":5},"loras":{"anyOf":[{"items":{"additionalProperties":true,"type":"object"},"type":"array"},{"type":"null"}],"title":"Loras"},"seed":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Seed","default":-1},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"MinimaxH3TextToVideoLoraRequest"},"MinimaxMusic3Request":{"properties":{"prompt":{"type":"string","title":"Prompt"},"lyrics":{"type":"string","maxLength":3000,"minLength":10,"title":"Lyrics"},"bitrate":{"type":"integer","enum":[60000,32000,64000,128000,256000],"title":"Bitrate","default":256000},"sample_rate":{"type":"integer","enum":[16000,24000,32000,44100],"title":"Sample Rate","default":44100},"is_instrumental":{"type":"boolean","title":"Is Instrumental","default":false},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","lyrics"],"title":"MinimaxMusic3Request"},"MinimaxSpeechHDRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"voice_id":{"type":"string","title":"Voice Id"},"speed":{"type":"number","maximum":2.0,"minimum":0.5,"title":"Speed","default":1},"volume":{"type":"number","maximum":10.0,"minimum":0.1,"title":"Volume","default":1},"pitch":{"type":"integer","maximum":12.0,"minimum":-12.0,"title":"Pitch","default":0},"emotion":{"type":"string","enum":["happy","sad","angry","fearful","disgusted","surprised","neutral"],"title":"Emotion","default":"happy"},"english_normalization":{"type":"boolean","title":"English Normalization","default":false},"sample_rate":{"type":"integer","enum":[8000,16000,22050,24000,32000,44100],"title":"Sample Rate","default":8000},"bitrate":{"type":"integer","enum":[32000,64000,128000,256000],"title":"Bitrate","default":32000},"channel":{"type":"integer","enum":[1,2],"title":"Channel","default":1},"format":{"type":"string","enum":["mp3","wav","pcm","flac"],"title":"Format","default":"mp3"},"language_boost":{"type":"string","enum":["Chinese","Chinese,Yue","English","Arabic","Russian","Spanish","French","Portuguese","German","Turkish","Dutch","Ukrainian","Vietnamese","Indonesian","Japanese","Italian","Korean","Thai","Polish","Romanian","Greek","Czech","Finnish","Hindi","Bulgarian","Danish","Hebrew","Malay","Persian","Slovak","Swedish","Croatian","Filipino","Hungarian","Norwegian","Slovenian","Catalan","Nynorsk","Tamil","Afrikaans","auto"],"title":"Language Boost","default":"auto"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","voice_id"],"title":"MinimaxSpeechHDRequest"},"MinimaxSpeechTurboRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"voice_id":{"type":"string","title":"Voice Id"},"speed":{"type":"number","maximum":2.0,"minimum":0.5,"title":"Speed","default":1},"volume":{"type":"number","maximum":10.0,"minimum":0.1,"title":"Volume","default":1},"pitch":{"type":"integer","maximum":12.0,"minimum":-12.0,"title":"Pitch","default":0},"emotion":{"type":"string","enum":["happy","sad","angry","fearful","disgusted","surprised","neutral"],"title":"Emotion","default":"happy"},"english_normalization":{"type":"boolean","title":"English Normalization","default":false},"sample_rate":{"type":"integer","enum":[8000,16000,22050,24000,32000,44100],"title":"Sample Rate","default":8000},"bitrate":{"type":"integer","enum":[32000,64000,128000,256000],"title":"Bitrate","default":32000},"channel":{"type":"integer","enum":[1,2],"title":"Channel","default":1},"format":{"type":"string","enum":["mp3","wav","pcm","flac"],"title":"Format","default":"mp3"},"language_boost":{"type":"string","enum":["Chinese","Chinese,Yue","English","Arabic","Russian","Spanish","French","Portuguese","German","Turkish","Dutch","Ukrainian","Vietnamese","Indonesian","Japanese","Italian","Korean","Thai","Polish","Romanian","Greek","Czech","Finnish","Hindi","Bulgarian","Danish","Hebrew","Malay","Persian","Slovak","Swedish","Croatian","Filipino","Hungarian","Norwegian","Slovenian","Catalan","Nynorsk","Tamil","Afrikaans","auto"],"title":"Language Boost","default":"auto"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","voice_id"],"title":"MinimaxSpeechTurboRequest"},"MinimaxSubjectImageRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1","4:3","3:4","3:2","2:3","21:9"],"title":"Aspect Ratio","default":"1:1"},"num_images":{"type":"integer","enum":[1,2,3,4],"title":"Num Images","default":1}},"type":"object","required":["prompt","image_url"],"title":"MinimaxSubjectImageRequest"},"MinimxVoiceCloneRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"audio_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Audio Url"},"custom_voice_id":{"type":"string","title":"Custom Voice Id"},"model":{"type":"string","enum":["speech-02-hd","speech-02-turbo","speech-2.5-hd-preview","speech-2.5-turbo-preview","speech-2.6-hd","speech-2.6-turbo"],"title":"Model","default":"speech-02-hd"},"need_noise_reduction":{"type":"boolean","title":"Need Noise Reduction","default":false},"need_volume_normalization":{"type":"boolean","title":"Need Volume Normalization","default":false},"accuracy":{"type":"number","maximum":1.0,"minimum":0.0,"title":"Accuracy","default":0.7},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","audio_url","custom_voice_id"],"title":"MinimxVoiceCloneRequest"},"MmAudioT2ARequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"duration":{"type":"integer","maximum":30.0,"minimum":1.0,"title":"Duration","default":8},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"MmAudioT2ARequest"},"MmAudioV2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"duration":{"type":"integer","maximum":30.0,"minimum":1.0,"title":"Duration","default":8},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","video_url"],"title":"MmAudioV2VRequest"},"ModelInterestRequest":{"properties":{"model_name":{"type":"string","title":"Model Name"}},"type":"object","required":["model_name"],"title":"ModelInterestRequest"},"ModelItem":{"properties":{"model":{"type":"string","title":"Model"},"weight":{"type":"number","maximum":4.0,"minimum":0.0,"title":"Weight","default":1}},"type":"object","required":["model"],"title":"ModelItem"},"ModerateImageRequest":{"properties":{"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"text":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Text"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["image_url"],"title":"ModerateImageRequest"},"ModerateTextRequest":{"properties":{"text":{"type":"string","title":"Text"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["text"],"title":"ModerateTextRequest"},"ModerateVideoRequest":{"properties":{"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"text":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Text"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["video_url"],"title":"ModerateVideoRequest"},"ModifyStoryboardDataRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"users_modified_shots":{"items":{"additionalProperties":true,"type":"object"},"type":"array","title":"Users Modified Shots","default":[]},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"ModifyStoryboardDataRequest"},"MotionGraphicsEditRequest":{"properties":{"request_id":{"type":"string","title":"Request Id","description":"The request_id from a completed motion-graphics generation."},"edit_prompt":{"type":"string","title":"Edit Prompt","description":"Describe what to change in the animation (e.g. 'change the background to dark blue and make the bars gold')."},"duration_seconds":{"anyOf":[{"type":"integer","maximum":30.0,"minimum":5.0},{"type":"null"}],"title":"Duration Seconds","description":"Override the duration (5–30 s). Defaults to the original generation's duration."},"aspect_ratio":{"anyOf":[{"type":"string","enum":["16:9","9:16","1:1"]},{"type":"null"}],"title":"Aspect Ratio"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["request_id","edit_prompt"],"title":"MotionGraphicsEditRequest"},"MotionGraphicsRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"duration_seconds":{"type":"integer","title":"Duration Seconds","default":6},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1"],"title":"Aspect Ratio","default":"16:9"},"category":{"type":"string","enum":["auto","infographics","text-animation","social-media","presentation","logo","product","3d","slideshow","showcase","reel"],"title":"Category","default":"auto"},"images_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":6},{"type":"null"}],"title":"Images List"},"video_files":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":2},{"type":"null"}],"title":"Video Files"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"MotionGraphicsRequest"},"MuseImageEditRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":10,"title":"Images List"},"aspect_ratio":{"anyOf":[{"type":"string","enum":["1:1","16:9","9:16","4:3","3:4","21:9"]},{"type":"null"}],"title":"Aspect Ratio"},"output_format":{"type":"string","enum":["webp","png","jpeg"],"title":"Output Format","default":"webp"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","images_list"],"title":"MuseImageEditRequest"},"MuseImageTextToImageRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["1:1","16:9","9:16","4:3","3:4","21:9"],"title":"Aspect Ratio","default":"1:1"},"output_format":{"type":"string","enum":["webp","png","jpeg"],"title":"Output Format","default":"webp"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"MuseImageTextToImageRequest"},"NanoBanana2EditRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array"},{"type":"null"}],"title":"Images List"},"aspect_ratio":{"type":"string","enum":["1:1","1:4","1:8","2:3","3:2","3:4","4:1","4:3","4:5","5:4","8:1","9:16","16:9","21:9","Auto"],"title":"Aspect Ratio","default":"Auto"},"google_search":{"type":"boolean","title":"Google Search","default":false},"resolution":{"type":"string","enum":["1k","2k","4k"],"title":"Resolution","default":"1k"},"output_format":{"type":"string","enum":["jpg","png"],"title":"Output Format","default":"jpg"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","images_list"],"title":"NanoBanana2EditRequest"},"NanoBanana2LiteEditRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":14,"title":"Images List"},"aspect_ratio":{"type":"string","enum":["1:1","2:3","3:2","3:4","4:3","4:5","5:4","9:16","16:9","21:9"],"title":"Aspect Ratio","default":"1:1"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","images_list"],"title":"NanoBanana2LiteEditRequest"},"NanoBanana2LiteRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["1:1","2:3","3:2","3:4","4:3","4:5","5:4","9:16","16:9","21:9"],"title":"Aspect Ratio","default":"1:1"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"NanoBanana2LiteRequest"},"NanoBanana2Request":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["1:1","1:4","1:8","2:3","3:2","3:4","4:1","4:3","4:5","5:4","8:1","9:16","16:9","21:9","Auto"],"title":"Aspect Ratio","default":"1:1"},"google_search":{"type":"boolean","title":"Google Search","default":false},"resolution":{"type":"string","enum":["1k","2k","4k"],"title":"Resolution","default":"1k"},"output_format":{"type":"string","enum":["jpg","png"],"title":"Output Format","default":"jpg"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"NanoBanana2Request"},"NanoBananaEditRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["Auto","1:1","3:4","4:3","9:16","16:9","3:2","2:3","5:4","4:5","21:9"],"title":"Aspect Ratio","default":"Auto"}},"type":"object","required":["prompt","images_list"],"title":"NanoBananaEditRequest"},"NanoBananaEffectsMobileRequest":{"properties":{"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"name":{"type":"string","title":"Name"},"aspect_ratio":{"type":"string","enum":["Auto","1:1","3:4","4:3","9:16","16:9","3:2","2:3","5:4","4:5","21:9"],"title":"Aspect Ratio","default":"Auto"}},"type":"object","required":["image_url","name"],"title":"NanoBananaEffectsMobileRequest"},"NanoBananaEffectsRequest":{"properties":{"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["Auto","1:1","3:4","4:3","9:16","16:9","3:2","2:3","5:4","4:5","21:9"],"title":"Aspect Ratio","default":"Auto"},"name":{"type":"string","enum":["3D Figurine","16bit Game Character","1920s Decade","1950s Decade","1970s Decade","1980s Decade","Action Figure","American Gothic Art","Egypts Landmark","Eiffel Tower Landmark","Famous Art","Great Wall of China Landmark","Mona Lisa Art","Persistent Memory Art","Statue of Liberty Landmark","Taj Mahal Landmark","Vincent Van Gogh Art"],"title":"Name","default":"3D Figurine"}},"type":"object","required":["image_url"],"title":"NanoBananaEffectsRequest"},"NanoBananaProEditRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["1:1","3:4","4:3","9:16","16:9","3:2","2:3","5:4","4:5","21:9"],"title":"Aspect Ratio","default":"1:1"},"resolution":{"type":"string","enum":["1k","2k","4k"],"title":"Resolution","default":"1k"}},"type":"object","required":["prompt","images_list"],"title":"NanoBananaProEditRequest"},"NanoBananaProRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["1:1","3:4","4:3","9:16","16:9","3:2","2:3","5:4","4:5","21:9"],"title":"Aspect Ratio","default":"1:1"},"resolution":{"type":"string","enum":["1k","2k","4k"],"title":"Resolution","default":"1k"}},"type":"object","required":["prompt"],"title":"NanoBananaProRequest"},"NanoBananaRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["1:1","3:4","4:3","9:16","16:9","3:2","2:3","5:4","4:5","21:9"],"title":"Aspect Ratio","default":"1:1"}},"type":"object","required":["prompt"],"title":"NanoBananaRequest"},"NetaLuminaRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"width":{"type":"integer","maximum":1536.0,"minimum":256.0,"title":"Width","default":1024},"height":{"type":"integer","maximum":1536.0,"minimum":256.0,"title":"Height","default":1024}},"type":"object","required":["prompt"],"title":"NetaLuminaRequest"},"OAuthClientCreatedOut":{"properties":{"id":{"type":"integer","title":"Id"},"name":{"type":"string","title":"Name"},"client_id":{"type":"string","title":"Client Id"},"allowed_scopes":{"items":{"type":"string"},"type":"array","title":"Allowed Scopes"},"is_active":{"type":"boolean","title":"Is Active"},"created_at":{"type":"string","format":"date-time","title":"Created At"},"last_used_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Last Used At"},"client_secret":{"type":"string","title":"Client Secret"}},"type":"object","required":["id","name","client_id","allowed_scopes","is_active","created_at","client_secret"],"title":"OAuthClientCreatedOut"},"OAuthClientOut":{"properties":{"id":{"type":"integer","title":"Id"},"name":{"type":"string","title":"Name"},"client_id":{"type":"string","title":"Client Id"},"allowed_scopes":{"items":{"type":"string"},"type":"array","title":"Allowed Scopes"},"is_active":{"type":"boolean","title":"Is Active"},"created_at":{"type":"string","format":"date-time","title":"Created At"},"last_used_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Last Used At"}},"type":"object","required":["id","name","client_id","allowed_scopes","is_active","created_at"],"title":"OAuthClientOut"},"ObjectEraserRequest":{"properties":{"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"mask_image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Mask Image Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["image_url","mask_image_url"],"title":"ObjectEraserRequest"},"OcrRecognizeTextRequest":{"properties":{"image_url":{"type":"string","title":"Image Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["image_url"],"title":"OcrRecognizeTextRequest"},"OmniReferenceTrainCharacterRequest":{"properties":{"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url","description":"Reference photo of the character (JPEG/PNG/WebP). One clear face portrait works best."},"character_name":{"type":"string","title":"Character Name","description":"Name for this character. Use this name with @omni-character:<request_id> in Omni Reference prompts."},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description","description":"Optional description of the character."},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["image_url","character_name"],"title":"OmniReferenceTrainCharacterRequest"},"OmnihumanRequest":{"properties":{"prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Prompt","default":"Make her sing confidently into a microphone with natural lip sync"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"audio_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Audio Url"},"mask_url":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array"},{"type":"null"}],"title":"Mask Url"},"output_resolution":{"type":"string","enum":["720","1080"],"title":"Output Resolution","default":"1080"},"pe_fast_mode":{"type":"boolean","title":"Pe Fast Mode","default":false},"seed":{"type":"integer","title":"Seed","default":-1},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["image_url","audio_url"],"title":"OmnihumanRequest"},"OpenAISora2I2V":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","enum":[4,8,12,16,20],"title":"Duration","default":8},"aspect_ratio":{"type":"string","enum":["9:16","16:9"],"title":"Aspect Ratio","default":"16:9"}},"type":"object","required":["prompt","images_list"],"title":"OpenAISora2I2V"},"OpenAISora2ProI2V":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["720p","1080p"],"title":"Resolution","default":"720p"},"duration":{"type":"integer","enum":[4,8,12,16,20],"title":"Duration","default":8}},"type":"object","required":["prompt","images_list"],"title":"OpenAISora2ProI2V"},"OpenAISora2ProT2V":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["720p","1080p"],"title":"Resolution","default":"720p"},"duration":{"type":"integer","enum":[4,8,12,16,20],"title":"Duration","default":8}},"type":"object","required":["prompt"],"title":"OpenAISora2ProT2V"},"OpenAISora2T2V":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","enum":[4,8,12,16,20],"title":"Duration","default":8},"aspect_ratio":{"type":"string","enum":["9:16","16:9"],"title":"Aspect Ratio","default":"16:9"}},"type":"object","required":["prompt"],"title":"OpenAISora2T2V"},"OpenAISoraRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["480p","720p","1080p"],"title":"Resolution","default":"480p"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"OpenAISoraRequest"},"OpenAIWhisperRequest":{"properties":{"audio_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Audio Url"},"language":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Language"},"prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Prompt"},"response_format":{"type":"string","enum":["json","text","srt","verbose_json","vtt"],"title":"Response Format","default":"json"},"temperature":{"type":"number","maximum":1.0,"minimum":0.0,"title":"Temperature","default":0.0},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["audio_url"],"title":"OpenAIWhisperRequest"},"OpenRouterVisionRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"model":{"type":"string","enum":["google/gemini-2.5-flash","anthropic/claude-sonnet-4.5","openai/gpt-4o","qwen/qwen3-vl-235b-a22b-instruct","x-ai/grok-4-fast"],"title":"Model","default":"google/gemini-2.5-flash"},"reasoning":{"type":"boolean","title":"Reasoning","default":false},"temperature":{"type":"number","maximum":2.0,"minimum":0.0,"title":"Temperature","default":1},"max_tokens":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Max Tokens"}},"type":"object","required":["prompt","images_list","system_prompt","max_tokens"],"title":"OpenRouterVisionRequest"},"OtpLoginRequest":{"properties":{"email":{"type":"string","format":"email","title":"Email"}},"type":"object","required":["email"],"title":"OtpLoginRequest"},"OtpRequest":{"properties":{"email":{"type":"string","format":"email","title":"Email"},"otp":{"type":"string","title":"Otp"}},"type":"object","required":["email","otp"],"title":"OtpRequest"},"OviImageToVideoRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url"],"title":"OviImageToVideoRequest"},"OviTextToVideoRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["9:16","16:9"],"title":"Aspect Ratio","default":"16:9"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"OviTextToVideoRequest"},"PaginatedGalleryResponse":{"properties":{"results":{"items":{"$ref":"#/components/schemas/GalleryItemResponse"},"type":"array","title":"Results"},"total_results":{"type":"integer","title":"Total Results"},"total_pages":{"type":"integer","title":"Total Pages"},"current_page":{"type":"integer","title":"Current Page"}},"type":"object","required":["results","total_results","total_pages","current_page"],"title":"PaginatedGalleryResponse"},"PaginatedMediaAssetResponse":{"properties":{"items":{"items":{"$ref":"#/components/schemas/MediaAssetResponse"},"type":"array","title":"Items"},"total":{"type":"integer","title":"Total"},"page":{"type":"integer","title":"Page"},"page_size":{"type":"integer","title":"Page Size"},"total_pages":{"type":"integer","title":"Total Pages"}},"type":"object","required":["items","total","page","page_size","total_pages"],"title":"PaginatedMediaAssetResponse"},"PaginatedTransactionResponse":{"properties":{"page":{"type":"integer","title":"Page"},"per_page":{"type":"integer","title":"Per Page"},"total_results":{"type":"integer","title":"Total Results"},"total_pages":{"type":"integer","title":"Total Pages"},"results":{"items":{"$ref":"#/components/schemas/TransactionResponse"},"type":"array","title":"Results"}},"type":"object","required":["page","per_page","total_results","total_pages","results"],"title":"PaginatedTransactionResponse"},"PaginatedUsageLogResponse":{"properties":{"results":{"items":{"$ref":"#/components/schemas/UsageLogSummaryResponse"},"type":"array","title":"Results"},"total_results":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Total Results"},"total_pages":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Total Pages"},"current_page":{"type":"integer","title":"Current Page"}},"type":"object","required":["results","current_page"],"title":"PaginatedUsageLogResponse"},"PerfectPonyXLRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"width":{"type":"integer","maximum":1536.0,"minimum":256.0,"title":"Width","default":1024},"height":{"type":"integer","maximum":1536.0,"minimum":256.0,"title":"Height","default":1024}},"type":"object","required":["prompt"],"title":"PerfectPonyXLRequest"},"PhotoPackMobileRequest":{"properties":{"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"name":{"type":"string","title":"Name"},"aspect_ratio":{"type":"string","enum":["1:1","3:4","4:3","9:16","16:9"],"title":"Aspect Ratio","default":"1:1"},"model_name":{"type":"string","enum":["nano-banana-edit","nano-banana-2-edit","nano-banana-pro-edit"],"title":"Model Name","default":"nano-banana-2-edit"}},"type":"object","required":["image_url","name"],"title":"PhotoPackMobileRequest"},"PhotoPackRequest":{"properties":{"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"aspect_ratio":{"type":"string","enum":["1:1","3:4","4:3","9:16","16:9"],"title":"Aspect Ratio","default":"1:1"},"name":{"type":"string","title":"Name","default":"the subject"},"category":{"type":"string","enum":["LinkedIn","Tinder","Bumble","OldMoney","Cyberpunk","CEO","CleanGirl","DarkAcademia","Anime","Doctor","Lawyer","MobWife","Bali","90s","Fitness","Christmas","Halloween","EuropeanElegance","ChampionSportsMoment","JobSwapDaydream","TravelTheWorld","DatingPack","FlashPosePerfection","CapAndGown","CorporateBoss","RocknRollLuxury","TheBigWeddingDay","RusticCharm","DressedToImpress","IdentificationPhoto","DontMissYourProm","GoddessOfNature","BlackAndWhiteMagic","HomelyComforts","BalloonsBalloonsBalloons","BeautyBlooms","SuperheroAdventure","BoldFashionStatements","FantasyOutfits","OnTheCatwalk","HalloweenHorror","CosplayGalore","Ghibli","Pixar","SpiderVerse"],"title":"Category","default":"LinkedIn"},"model_name":{"type":"string","enum":["nano-banana-edit","nano-banana-2-edit","nano-banana-pro-edit"],"title":"Model Name","default":"nano-banana-2-edit"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["image_url"],"title":"PhotoPackRequest"},"PinterestPublishRequest":{"properties":{"account_id":{"type":"integer","title":"Account Id","description":"ID of the connected Pinterest account (from GET /social/accounts)."},"media_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Media Url","description":"Public URL of the video or image to pin."},"caption":{"type":"string","title":"Caption","description":"Pin description.","default":""},"title":{"type":"string","title":"Title","description":"Pin title.","default":""},"board_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Board Id","description":"Pinterest board ID to pin to. Leave blank for default board."},"link":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Link","description":"Destination URL the pin links to."},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["account_id","media_url"],"title":"PinterestPublishRequest"},"PixverseI2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1","4:3","3:4"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["360p","540p","720p","1080p"],"title":"Resolution","default":"720p"},"duration":{"type":"integer","enum":[5,8],"title":"Duration","default":5}},"type":"object","required":["prompt","images_list"],"title":"PixverseI2VRequest"},"PixverseT2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1","4:3","3:4"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["360p","540p","720p","1080p"],"title":"Resolution","default":"720p"},"duration":{"type":"integer","enum":[5,8],"title":"Duration","default":5}},"type":"object","required":["prompt"],"title":"PixverseT2VRequest"},"PixverseV55I2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["360p","540p","720p","1080p"],"title":"Resolution","default":"360p"},"duration":{"type":"integer","enum":[5,8,10],"title":"Duration","default":5},"style":{"type":"string","enum":["none","anime","3d_animation","clay","comic","cyberpunk"],"title":"Style","default":"none"},"thinking":{"type":"string","enum":["auto","enabled","disabled"],"title":"Thinking","default":"auto"},"audio":{"type":"boolean","title":"Audio","default":false},"multi_clip":{"type":"boolean","title":"Multi Clip","default":false}},"type":"object","required":["prompt","images_list"],"title":"PixverseV55I2VRequest"},"PixverseV55T2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["360p","540p","720p","1080p"],"title":"Resolution","default":"360p"},"duration":{"type":"integer","enum":[5,8,10],"title":"Duration","default":5},"style":{"type":"string","enum":["none","anime","3d_animation","clay","comic","cyberpunk"],"title":"Style","default":"none"},"thinking":{"type":"string","enum":["auto","enabled","disabled"],"title":"Thinking","default":"auto"},"audio":{"type":"boolean","title":"Audio","default":false},"multi_clip":{"type":"boolean","title":"Multi Clip","default":false}},"type":"object","required":["prompt"],"title":"PixverseV55T2VRequest"},"PixverseV5I2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1","4:3","3:4"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["360p","540p","720p","1080p"],"title":"Resolution","default":"720p"},"duration":{"type":"integer","enum":[5,8],"title":"Duration","default":5}},"type":"object","required":["prompt","images_list"],"title":"PixverseV5I2VRequest"},"PixverseV5T2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1","4:3","3:4"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["360p","540p","720p","1080p"],"title":"Resolution","default":"720p"},"duration":{"type":"integer","enum":[5,8],"title":"Duration","default":5}},"type":"object","required":["prompt"],"title":"PixverseV5T2VRequest"},"PixverseV6ExtendRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"video_url":{"type":"string","title":"Video Url"},"resolution":{"type":"string","enum":["360p","540p","720p","1080p"],"title":"Resolution","default":"720p"},"duration":{"type":"integer","title":"Duration","default":5},"generate_audio_switch":{"type":"boolean","title":"Generate Audio Switch","default":false},"negative_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Negative Prompt"},"style":{"anyOf":[{"type":"string","enum":["anime","3d_animation","clay","comic","cyberpunk"]},{"type":"null"}],"title":"Style"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","video_url"],"title":"PixverseV6ExtendRequest"},"PixverseV6I2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"resolution":{"type":"string","enum":["360p","540p","720p","1080p"],"title":"Resolution","default":"720p"},"duration":{"type":"integer","title":"Duration","default":5},"generate_audio_switch":{"type":"boolean","title":"Generate Audio Switch","default":false},"thinking_type":{"type":"string","enum":["auto","enabled","disabled"],"title":"Thinking Type","default":"auto"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","images_list"],"title":"PixverseV6I2VRequest"},"PixverseV6T2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["16:9","4:3","1:1","3:4","9:16","2:3","3:2","21:9"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["360p","540p","720p","1080p"],"title":"Resolution","default":"720p"},"duration":{"type":"integer","title":"Duration","default":5},"generate_audio_switch":{"type":"boolean","title":"Generate Audio Switch","default":false},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"PixverseV6T2VRequest"},"PixverseV6TransitionRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"last_image":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Last Image"},"aspect_ratio":{"type":"string","enum":["16:9","4:3","1:1","3:4","9:16","2:3","3:2","21:9"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["360p","540p","720p","1080p"],"title":"Resolution","default":"720p"},"duration":{"type":"integer","maximum":15.0,"minimum":1.0,"title":"Duration","default":5},"thinking_type":{"type":"boolean","title":"Thinking Type","default":false},"generate_audio_switch":{"type":"boolean","title":"Generate Audio Switch","default":false},"generate_multi_clip_switch":{"type":"boolean","title":"Generate Multi Clip Switch","default":false},"style":{"anyOf":[{"type":"string","enum":["anime","3d_animation","clay","comic","cyberpunk"]},{"type":"null"}],"title":"Style"},"negative_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Negative Prompt"},"seed":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Seed"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url"],"title":"PixverseV6TransitionRequest"},"PortraitStylistMobileRequest":{"properties":{"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"name":{"type":"string","enum":["Voluminous Frizzy Hair","Platinum Blonde Hair","Deep Burgundy Hair","Jet Black Hair","Bold Hair Highlights","Bold Red Lipstick","Smokey Eye Makeup","Glossy Nude Makeup","Winged Eyeliner","Party Glam Makeup","Aviator Sunglasses","Oversized Sunglasses","Modern Transparent Glasses","Bold Fashion Hat","Bright Pink Outfit","Black Leather Jacket","White Formal Shirt","Neon Green Hoodie","Cinematic Lighting","Cyberpunk Lighting"],"title":"Name"},"aspect_ratio":{"type":"string","enum":["auto","1:1","4:3","3:4","16:9","9:16"],"title":"Aspect Ratio","default":"auto"}},"type":"object","required":["image_url","name"],"title":"PortraitStylistMobileRequest"},"PortraitStylistRequest":{"properties":{"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"name":{"type":"string","enum":["Voluminous Frizzy Hair","Platinum Blonde Hair","Deep Burgundy Hair","Jet Black Hair","Bold Hair Highlights","Bold Red Lipstick","Smokey Eye Makeup","Glossy Nude Makeup","Winged Eyeliner","Party Glam Makeup","Aviator Sunglasses","Oversized Sunglasses","Modern Transparent Glasses","Bold Fashion Hat","Bright Pink Outfit","Black Leather Jacket","White Formal Shirt","Neon Green Hoodie","Cinematic Lighting","Cyberpunk Lighting"],"title":"Name","default":"Voluminous Frizzy Hair"},"aspect_ratio":{"type":"string","enum":["auto","1:1","4:3","3:4","16:9","9:16"],"title":"Aspect Ratio","default":"auto"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["image_url"],"title":"PortraitStylistRequest"},"PostStatusUpdate":{"properties":{"status":{"type":"string","title":"Status"}},"type":"object","required":["status"],"title":"PostStatusUpdate"},"ProductPhotoRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"person_image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Person Image Url"},"product_image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Product Image Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","person_image_url","product_image_url"],"title":"ProductPhotoRequest"},"PublishRequest":{"properties":{"account_id":{"type":"integer","title":"Account Id"},"media_url":{"type":"string","title":"Media Url"},"title":{"type":"string","title":"Title","default":""},"caption":{"type":"string","title":"Caption","default":""},"tags":{"items":{"type":"string"},"type":"array","title":"Tags","default":[]},"privacy":{"type":"string","title":"Privacy","default":"public"},"scheduled_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Scheduled At"}},"type":"object","required":["account_id","media_url"],"title":"PublishRequest"},"Qwen3ImageToImageRequest":{"properties":{"prompt":{"type":"string","maxLength":800,"title":"Prompt","description":"The positive prompt that describes the image content, style, and editing instructions."},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":3,"title":"Images List","description":"Input reference image URLs (up to 3 images, max 10MB each)."},"resolution":{"anyOf":[{"type":"string","enum":["1k","2k"]},{"type":"null"}],"title":"Resolution","description":"Output image resolution.","default":"1k"},"aspect_ratio":{"anyOf":[{"type":"string","enum":["1:1","3:2","2:3","4:3","3:4","16:9","9:16","21:9"]},{"type":"null"}],"title":"Aspect Ratio","description":"Output image aspect ratio.","default":"16:9"},"output_format":{"anyOf":[{"type":"string","enum":["png","jpeg"]},{"type":"null"}],"title":"Output Format","description":"Output image format.","default":"png"},"prompt_extend":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Prompt Extend","description":"Enable intelligent prompt rewriting.","default":true},"negative_prompt":{"anyOf":[{"type":"string","maxLength":5000},{"type":"null"}],"title":"Negative Prompt","description":"Content to exclude from the generated image."},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","images_list"],"title":"Qwen3ImageToImageRequest"},"Qwen3ProImageToImageRequest":{"properties":{"prompt":{"type":"string","maxLength":800,"title":"Prompt","description":"The positive prompt that describes the image content, style, and editing instructions."},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":3,"title":"Images List","description":"Input reference image URLs (up to 3 images, max 10MB each)."},"resolution":{"anyOf":[{"type":"string","enum":["1k","2k"]},{"type":"null"}],"title":"Resolution","description":"Output image resolution.","default":"1k"},"aspect_ratio":{"anyOf":[{"type":"string","enum":["1:1","3:2","2:3","4:3","3:4","16:9","9:16","21:9"]},{"type":"null"}],"title":"Aspect Ratio","description":"Output image aspect ratio.","default":"16:9"},"output_format":{"anyOf":[{"type":"string","enum":["png","jpeg"]},{"type":"null"}],"title":"Output Format","description":"Output image format.","default":"png"},"prompt_extend":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Prompt Extend","description":"Enable intelligent prompt rewriting.","default":true},"negative_prompt":{"anyOf":[{"type":"string","maxLength":5000},{"type":"null"}],"title":"Negative Prompt","description":"Content to exclude from the generated image."},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","images_list"],"title":"Qwen3ProImageToImageRequest"},"Qwen3ProTextToImageRequest":{"properties":{"prompt":{"type":"string","maxLength":800,"title":"Prompt","description":"The positive prompt that describes the image content, style, and composition."},"resolution":{"anyOf":[{"type":"string","enum":["1k","2k"]},{"type":"null"}],"title":"Resolution","description":"Output image resolution.","default":"1k"},"aspect_ratio":{"anyOf":[{"type":"string","enum":["1:1","3:2","2:3","4:3","3:4","16:9","9:16","21:9"]},{"type":"null"}],"title":"Aspect Ratio","description":"Output image aspect ratio.","default":"16:9"},"output_format":{"anyOf":[{"type":"string","enum":["png","jpeg"]},{"type":"null"}],"title":"Output Format","description":"Output image format.","default":"png"},"prompt_extend":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Prompt Extend","description":"Enable intelligent prompt rewriting.","default":true},"negative_prompt":{"anyOf":[{"type":"string","maxLength":5000},{"type":"null"}],"title":"Negative Prompt","description":"Content to exclude from the generated image."},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Qwen3ProTextToImageRequest"},"Qwen3TextToImageRequest":{"properties":{"prompt":{"type":"string","maxLength":800,"title":"Prompt","description":"The positive prompt that describes the image content, style, and composition."},"resolution":{"anyOf":[{"type":"string","enum":["1k","2k"]},{"type":"null"}],"title":"Resolution","description":"Output image resolution.","default":"1k"},"aspect_ratio":{"anyOf":[{"type":"string","enum":["1:1","3:2","2:3","4:3","3:4","16:9","9:16","21:9"]},{"type":"null"}],"title":"Aspect Ratio","description":"Output image aspect ratio.","default":"16:9"},"output_format":{"anyOf":[{"type":"string","enum":["png","jpeg"]},{"type":"null"}],"title":"Output Format","description":"Output image format.","default":"png"},"prompt_extend":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Prompt Extend","description":"Enable intelligent prompt rewriting.","default":true},"negative_prompt":{"anyOf":[{"type":"string","maxLength":5000},{"type":"null"}],"title":"Negative Prompt","description":"Content to exclude from the generated image."},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Qwen3TextToImageRequest"},"QwenImage20EditRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21","3:2","2:3"],"title":"Aspect Ratio","default":"16:9"}},"type":"object","required":["prompt","images_list"],"title":"QwenImage20EditRequest"},"QwenImage20Request":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21","3:2","2:3"],"title":"Aspect Ratio","default":"16:9"}},"type":"object","required":["prompt"],"title":"QwenImage20Request"},"QwenImage2512LoraTrainerRequest":{"properties":{"data":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Data","description":"URL to zip archive with images. Try to use at least 4 images in general the more the better. In addition to images the archive can contain text files with captions."},"trigger_word":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Trigger Word","description":"Optional trigger word. If a caption file exists, it is prepended when not already present. Leave empty to enable no-caption training."},"steps":{"anyOf":[{"type":"integer","maximum":10000.0,"minimum":1000.0},{"type":"null"}],"title":"Steps","description":"Number of steps to train the LoRA on.","default":1000},"learning_rate":{"anyOf":[{"type":"number","maximum":1.0,"minimum":0.0},{"type":"null"}],"title":"Learning Rate","description":"Learning rate for Qwen-2512 LoRA training.","default":0.0004},"lora_rank":{"anyOf":[{"type":"integer","maximum":64.0,"minimum":1.0},{"type":"null"}],"title":"Lora Rank","description":"LoRA rank dimension.","default":16},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["data"],"title":"QwenImage2512LoraTrainerRequest"},"QwenImageEdit2511LoraItem":{"properties":{"path":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"string"}],"title":"Path","description":"URL or path to the LoRA weights."},"scale":{"anyOf":[{"type":"number","maximum":4.0,"minimum":0.0},{"type":"null"}],"title":"Scale","description":"Weight multiplier scale.","default":1.0}},"type":"object","required":["path"],"title":"QwenImageEdit2511LoraItem"},"QwenImageEdit2511LoraRequest":{"properties":{"prompt":{"type":"string","title":"Prompt","description":"Text prompt describing the image edits.","default":"A cinematic ocean wave at sunrise, highly detailed"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List","description":"The images to edit (maximum 3 reference images)."},"aspect_ratio":{"anyOf":[{"type":"string","enum":["1:1","16:9","9:16","3:2","2:3","4:3","3:4","21:9","9:21"]},{"type":"null"}],"title":"Aspect Ratio","description":"Aspect ratio of generated image.","default":"1:1"},"loras":{"anyOf":[{"items":{"$ref":"#/components/schemas/QwenImageEdit2511LoraItem"},"type":"array"},{"type":"null"}],"title":"Loras","description":"List of LoRAs to apply (maximum 3)."},"output_format":{"anyOf":[{"type":"string","enum":["jpeg","png","webp"]},{"type":"null"}],"title":"Output Format","description":"Format of the output image.","default":"jpeg"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["images_list"],"title":"QwenImageEdit2511LoraRequest"},"QwenImageEdit2511Request":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"width":{"type":"integer","maximum":1536.0,"minimum":256.0,"title":"Width","default":1024},"height":{"type":"integer","maximum":1536.0,"minimum":256.0,"title":"Height","default":1024},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","images_list"],"title":"QwenImageEdit2511Request"},"QwenImageEditLoraItem":{"properties":{"path":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"string"}],"title":"Path","description":"URL or path to the LoRA weights."},"scale":{"anyOf":[{"type":"number","maximum":4.0,"minimum":0.0},{"type":"null"}],"title":"Scale","description":"Weight multiplier scale.","default":1.0}},"type":"object","required":["path"],"title":"QwenImageEditLoraItem"},"QwenImageEditLoraRequest":{"properties":{"prompt":{"type":"string","title":"Prompt","description":"Text prompt describing the image edits.","default":"A cinematic ocean wave at sunrise, highly detailed"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"aspect_ratio":{"anyOf":[{"type":"string","enum":["1:1","16:9","9:16","3:2","2:3","4:3","3:4","21:9","9:21"]},{"type":"null"}],"title":"Aspect Ratio","description":"Aspect ratio of generated image.","default":"1:1"},"loras":{"anyOf":[{"items":{"$ref":"#/components/schemas/QwenImageEditLoraItem"},"type":"array"},{"type":"null"}],"title":"Loras","description":"List of LoRAs to apply (maximum 3)."},"seed":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Seed","description":"Random seed to use for generation (-1 for random).","default":-1},"output_format":{"anyOf":[{"type":"string","enum":["jpeg","png","webp"]},{"type":"null"}],"title":"Output Format","description":"Format of the output image.","default":"jpeg"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["image_url"],"title":"QwenImageEditLoraRequest"},"QwenImageEditPlusLoraItem":{"properties":{"path":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"string"}],"title":"Path","description":"URL or path to the LoRA weights."},"scale":{"anyOf":[{"type":"number","maximum":4.0,"minimum":0.0},{"type":"null"}],"title":"Scale","description":"Weight multiplier scale.","default":1.0}},"type":"object","required":["path"],"title":"QwenImageEditPlusLoraItem"},"QwenImageEditPlusLoraRequest":{"properties":{"prompt":{"type":"string","title":"Prompt","description":"Text prompt describing the image edits.","default":"A cinematic ocean wave at sunrise, highly detailed"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List","description":"The images to edit (maximum 3 reference images)."},"aspect_ratio":{"anyOf":[{"type":"string","enum":["1:1","16:9","9:16","3:2","2:3","4:3","3:4","21:9","9:21"]},{"type":"null"}],"title":"Aspect Ratio","description":"Aspect ratio of generated image.","default":"1:1"},"loras":{"anyOf":[{"items":{"$ref":"#/components/schemas/QwenImageEditPlusLoraItem"},"type":"array"},{"type":"null"}],"title":"Loras","description":"List of LoRAs to apply (maximum 3)."},"output_format":{"anyOf":[{"type":"string","enum":["jpeg","png","webp"]},{"type":"null"}],"title":"Output Format","description":"Format of the output image.","default":"jpeg"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["images_list"],"title":"QwenImageEditPlusLoraRequest"},"QwenImageEditPlusRequest":{"properties":{"prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List","default":[]},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"width":{"type":"integer","maximum":1536.0,"minimum":256.0,"title":"Width","default":1024},"height":{"type":"integer","maximum":1536.0,"minimum":256.0,"title":"Height","default":1024}},"type":"object","title":"QwenImageEditPlusRequest"},"QwenImageEditRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1","4:3","3:4","21:9","9:21","3:2","2:3"],"title":"Aspect Ratio","default":"1:1"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url"],"title":"QwenImageEditRequest"},"QwenImageFaceExpressionChangeRequest":{"properties":{"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List","description":"Upload or provide image urls (up to 3 images)."},"aspect_ratio":{"anyOf":[{"type":"string","enum":["1:1","16:9","9:16","3:2","2:3","4:3","3:4","21:9","9:21"]},{"type":"null"}],"title":"Aspect Ratio","description":"Aspect ratio of generated image.","default":"1:1"},"rotate_right_left":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Rotate Right Left","description":"Rotate camera right/left in degrees.","default":0},"move_forward":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Move Forward","description":"Move camera forward.","default":0},"vertical_angle":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Vertical Angle","description":"Vertical tilt angle.","default":0},"wide_angle_lens":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Wide Angle Lens","description":"Wide angle lens.","default":false},"output_format":{"anyOf":[{"type":"string","enum":["jpeg","png","webp"]},{"type":"null"}],"title":"Output Format","description":"Format of the output image.","default":"jpeg"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["images_list"],"title":"QwenImageFaceExpressionChangeRequest"},"QwenImageLoraTrainerRequest":{"properties":{"data":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Data","description":"URL to zip archive with images. Try to use at least 4 images in general the more the better. In addition to images the archive can contain text files with captions."},"trigger_word":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Trigger Word","description":"Optional trigger word. If a caption file exists, it is prepended when not already present. Leave empty to enable no-caption training."},"steps":{"anyOf":[{"type":"integer","maximum":10000.0,"minimum":1000.0},{"type":"null"}],"title":"Steps","description":"Number of steps to train the LoRA on.","default":1000},"learning_rate":{"anyOf":[{"type":"number","maximum":1.0,"minimum":0.0},{"type":"null"}],"title":"Learning Rate","description":"Learning rate for Qwen LoRA training.","default":0.0004},"lora_rank":{"anyOf":[{"type":"integer","maximum":64.0,"minimum":1.0},{"type":"null"}],"title":"Lora Rank","description":"LoRA rank dimension.","default":16},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["data"],"title":"QwenImageLoraTrainerRequest"},"QwenImageRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21","3:2","2:3"],"title":"Aspect Ratio","default":"16:9"},"num_images":{"type":"integer","enum":[1,2,3,4],"title":"Num Images","default":1}},"type":"object","required":["prompt"],"title":"QwenImageRequest"},"QwenImageT2I2512LoraRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"anyOf":[{"type":"string","enum":["1:1","16:9","9:16","3:2","2:3","4:3","3:4","21:9","9:21"]},{"type":"null"}],"title":"Aspect Ratio","description":"Output image aspect ratio. Mapped internally to size (width*height).","default":"1:1"},"loras":{"items":{"$ref":"#/components/schemas/LoraItem"},"type":"array","title":"Loras","default":[]},"seed":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Seed","description":"Random seed (-1 for random).","default":-1},"output_format":{"anyOf":[{"type":"string","enum":["jpeg","png","webp"]},{"type":"null"}],"title":"Output Format","description":"Output image format.","default":"jpeg"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"QwenImageT2I2512LoraRequest"},"QwenImageT2ILoraRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"anyOf":[{"type":"string","enum":["1:1","16:9","9:16","3:2","2:3","4:3","3:4","21:9","9:21"]},{"type":"null"}],"title":"Aspect Ratio","description":"Output image aspect ratio. Mapped internally to size (width*height).","default":"1:1"},"loras":{"items":{"$ref":"#/components/schemas/LoraItem"},"type":"array","title":"Loras","default":[]},"seed":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Seed","description":"Random seed (-1 for random).","default":-1},"output_format":{"anyOf":[{"type":"string","enum":["jpeg","png","webp"]},{"type":"null"}],"title":"Output Format","description":"Output image format.","default":"jpeg"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"QwenImageT2ILoraRequest"},"QwenTextToImage2512Request":{"properties":{"prompt":{"type":"string","title":"Prompt"},"width":{"type":"integer","maximum":1536.0,"minimum":256.0,"title":"Width","default":1024},"height":{"type":"integer","maximum":1536.0,"minimum":256.0,"title":"Height","default":1024},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"QwenTextToImage2512Request"},"RegenerateCharacterRequest":{"properties":{"description":{"type":"string","title":"Description","description":"Text description of character changes or new features"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["description"],"title":"RegenerateCharacterRequest"},"RegenerateCharacterResponse":{"properties":{"request_id":{"type":"string","title":"Request Id"},"character_id":{"type":"integer","title":"Character Id"},"status":{"type":"string","title":"Status","default":"processing"},"message":{"type":"string","title":"Message","default":"Character regeneration started"}},"type":"object","required":["request_id","character_id"],"title":"RegenerateCharacterResponse"},"RegenerateShotRequest":{"properties":{"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description","description":"Optional text description of changes to the shot"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","title":"RegenerateShotRequest"},"RegisterAssetRequest":{"properties":{"url":{"type":"string","title":"Url"},"kind":{"type":"string","title":"Kind","default":"image"},"source_tool":{"type":"string","title":"Source Tool","default":"upload"},"prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Prompt"}},"type":"object","required":["url"],"title":"RegisterAssetRequest"},"RegisterClientRequest":{"properties":{"client_name":{"type":"string","title":"Client Name"},"redirect_uris":{"items":{"type":"string"},"type":"array","title":"Redirect Uris"},"token_endpoint_auth_method":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Token Endpoint Auth Method","default":"client_secret_basic"},"scope":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Scope"}},"type":"object","required":["client_name","redirect_uris"],"title":"RegisterClientRequest"},"RegisterLoginRequest":{"properties":{"email":{"type":"string","title":"Email"},"password":{"type":"string","title":"Password"},"username":{"type":"string","title":"Username","default":""}},"type":"object","required":["email","password"],"title":"RegisterLoginRequest"},"RemixVideoRequest":{"properties":{"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"aspect_ratio":{"type":"string","enum":["1:1","9:16","16:9"],"title":"Aspect Ratio","default":"9:16"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["video_url"],"title":"RemixVideoRequest"},"RenameRequest":{"properties":{"account_name":{"type":"string","title":"Account Name"}},"type":"object","required":["account_name"],"title":"RenameRequest"},"ReplyJobRequest":{"properties":{"reply":{"type":"string","title":"Reply"}},"type":"object","required":["reply"],"title":"ReplyJobRequest"},"ResetPasswordRequest":{"properties":{"email":{"type":"string","format":"email","title":"Email"},"otp":{"type":"string","title":"Otp"},"password":{"type":"string","title":"Password"}},"type":"object","required":["email","otp","password"],"title":"ResetPasswordRequest"},"ReveImageEdit":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url"],"title":"ReveImageEdit"},"ReveTextRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["21:9","16:9","4:3","1:1","3:4","9:16","9:21"],"title":"Aspect Ratio","default":"1:1"}},"type":"object","required":["prompt"],"title":"ReveTextRequest"},"ReviewStatusUpdateRequest":{"properties":{"review_status":{"type":"string","title":"Review Status"}},"type":"object","required":["review_status"],"title":"ReviewStatusUpdateRequest"},"RunSkillRequest":{"properties":{"skill_name":{"type":"string","title":"Skill Name"},"inputs":{"additionalProperties":true,"type":"object","title":"Inputs","default":{}},"model":{"type":"string","title":"Model","default":"gpt-5-mini"},"messages_snapshot":{"items":{},"type":"array","title":"Messages Snapshot","default":[]}},"type":"object","required":["skill_name"],"title":"RunSkillRequest"},"RunwayI2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1","4:3","3:4"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["720p","1080p"],"title":"Resolution","default":"720p"},"duration":{"type":"integer","enum":[5,8],"title":"Duration","default":5}},"type":"object","required":["prompt","image_url"],"title":"RunwayI2VRequest"},"RunwayT2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1","4:3","3:4"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["720p","1080p"],"title":"Resolution","default":"720p"},"duration":{"type":"integer","enum":[5,8],"title":"Duration","default":5}},"type":"object","required":["prompt"],"title":"RunwayT2VRequest"},"RunwaymlActI2VRequest":{"properties":{"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"reference_video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Reference Video Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1","4:3","3:4","21:9"],"title":"Aspect Ratio","default":"16:9"}},"type":"object","required":["image_url","reference_video_url"],"title":"RunwaymlActI2VRequest"},"RunwaymlActV2VRequest":{"properties":{"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"reference_video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Reference Video Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1","4:3","3:4","21:9"],"title":"Aspect Ratio","default":"16:9"}},"type":"object","required":["video_url","reference_video_url"],"title":"RunwaymlActV2VRequest"},"RunwaymlAlephV2VRequest":{"properties":{"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"prompt":{"type":"string","title":"Prompt"},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1","4:3","3:4","21:9"],"title":"Aspect Ratio","default":"16:9"}},"type":"object","required":["prompt","video_url"],"title":"RunwaymlAlephV2VRequest"},"SaveCanvasStateRequest":{"properties":{"canvas_state":{"additionalProperties":true,"type":"object","title":"Canvas State"}},"type":"object","required":["canvas_state"],"title":"SaveCanvasStateRequest"},"SaveMessagesRequest":{"properties":{"messages":{"items":{},"type":"array","title":"Messages"}},"type":"object","required":["messages"],"title":"SaveMessagesRequest"},"SdxlImageRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"width":{"type":"integer","maximum":1536.0,"minimum":256.0,"title":"Width","default":1024},"height":{"type":"integer","maximum":1536.0,"minimum":256.0,"title":"Height","default":1024},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"SdxlImageRequest"},"SdxlLoRARequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"lora_list":{"items":{"$ref":"#/components/schemas/LoraItem"},"type":"array","title":"Lora List","default":[]},"width":{"type":"integer","maximum":1536.0,"minimum":256.0,"title":"Width","default":1024},"height":{"type":"integer","maximum":1536.0,"minimum":256.0,"title":"Height","default":1024},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"SdxlLoRARequest"},"SeedEditI2IRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url"],"title":"SeedEditI2IRequest"},"SeedVR2I2IRequest":{"properties":{"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"resolution":{"type":"string","enum":["2k","4k","8k"],"title":"Resolution","default":"4k"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["image_url"],"title":"SeedVR2I2IRequest"},"Seedance25FirstLast1080pRequest":{"properties":{"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","maximum":30.0,"minimum":4.0,"title":"Duration","description":"Video duration in seconds, from 4 to 30.","default":5},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"16:9"},"seed":{"anyOf":[{"type":"integer","maximum":4294967295.0,"minimum":-1.0},{"type":"null"}],"title":"Seed","description":"Random seed for reproducible generation. Use -1 for random."},"high_bitrate":{"type":"boolean","title":"High Bitrate","default":false},"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":2,"title":"Images List","description":"First and last frame images, in order: [first_frame, last_frame]."}},"type":"object","required":["prompt","images_list"],"title":"Seedance25FirstLast1080pRequest"},"Seedance25FirstLast480pRequest":{"properties":{"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","maximum":30.0,"minimum":4.0,"title":"Duration","description":"Video duration in seconds, from 4 to 30.","default":5},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"16:9"},"seed":{"anyOf":[{"type":"integer","maximum":4294967295.0,"minimum":-1.0},{"type":"null"}],"title":"Seed","description":"Random seed for reproducible generation. Use -1 for random."},"high_bitrate":{"type":"boolean","title":"High Bitrate","default":false},"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":2,"title":"Images List","description":"First and last frame images, in order: [first_frame, last_frame]."}},"type":"object","required":["prompt","images_list"],"title":"Seedance25FirstLast480pRequest"},"Seedance25FirstLast4kRequest":{"properties":{"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","maximum":30.0,"minimum":4.0,"title":"Duration","description":"Video duration in seconds, from 4 to 30.","default":5},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"16:9"},"seed":{"anyOf":[{"type":"integer","maximum":4294967295.0,"minimum":-1.0},{"type":"null"}],"title":"Seed","description":"Random seed for reproducible generation. Use -1 for random."},"high_bitrate":{"type":"boolean","title":"High Bitrate","default":false},"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":2,"title":"Images List","description":"First and last frame images, in order: [first_frame, last_frame]."}},"type":"object","required":["prompt","images_list"],"title":"Seedance25FirstLast4kRequest"},"Seedance25FirstLastRequest":{"properties":{"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","maximum":30.0,"minimum":4.0,"title":"Duration","description":"Video duration in seconds, from 4 to 30.","default":5},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"16:9"},"seed":{"anyOf":[{"type":"integer","maximum":4294967295.0,"minimum":-1.0},{"type":"null"}],"title":"Seed","description":"Random seed for reproducible generation. Use -1 for random."},"high_bitrate":{"type":"boolean","title":"High Bitrate","default":false},"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":2,"title":"Images List","description":"First and last frame images, in order: [first_frame, last_frame]."}},"type":"object","required":["prompt","images_list"],"title":"Seedance25FirstLastRequest"},"Seedance25I2V1080pRequest":{"properties":{"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","maximum":30.0,"minimum":4.0,"title":"Duration","description":"Video duration in seconds, from 4 to 30.","default":5},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"16:9"},"seed":{"anyOf":[{"type":"integer","maximum":4294967295.0,"minimum":-1.0},{"type":"null"}],"title":"Seed","description":"Random seed for reproducible generation. Use -1 for random."},"high_bitrate":{"type":"boolean","title":"High Bitrate","default":false},"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"}},"type":"object","required":["prompt","image_url"],"title":"Seedance25I2V1080pRequest"},"Seedance25I2V480pRequest":{"properties":{"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","maximum":30.0,"minimum":4.0,"title":"Duration","description":"Video duration in seconds, from 4 to 30.","default":5},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"16:9"},"seed":{"anyOf":[{"type":"integer","maximum":4294967295.0,"minimum":-1.0},{"type":"null"}],"title":"Seed","description":"Random seed for reproducible generation. Use -1 for random."},"high_bitrate":{"type":"boolean","title":"High Bitrate","default":false},"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"}},"type":"object","required":["prompt","image_url"],"title":"Seedance25I2V480pRequest"},"Seedance25I2V4kRequest":{"properties":{"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","maximum":30.0,"minimum":4.0,"title":"Duration","description":"Video duration in seconds, from 4 to 30.","default":5},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"16:9"},"seed":{"anyOf":[{"type":"integer","maximum":4294967295.0,"minimum":-1.0},{"type":"null"}],"title":"Seed","description":"Random seed for reproducible generation. Use -1 for random."},"high_bitrate":{"type":"boolean","title":"High Bitrate","default":false},"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"}},"type":"object","required":["prompt","image_url"],"title":"Seedance25I2V4kRequest"},"Seedance25I2VRequest":{"properties":{"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","maximum":30.0,"minimum":4.0,"title":"Duration","description":"Video duration in seconds, from 4 to 30.","default":5},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"16:9"},"seed":{"anyOf":[{"type":"integer","maximum":4294967295.0,"minimum":-1.0},{"type":"null"}],"title":"Seed","description":"Random seed for reproducible generation. Use -1 for random."},"high_bitrate":{"type":"boolean","title":"High Bitrate","default":false},"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"}},"type":"object","required":["prompt","image_url"],"title":"Seedance25I2VRequest"},"Seedance25OmniReference1080pRequest":{"properties":{"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","maximum":30.0,"minimum":4.0,"title":"Duration","description":"Video duration in seconds, from 4 to 30.","default":5},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"16:9"},"seed":{"anyOf":[{"type":"integer","maximum":4294967295.0,"minimum":-1.0},{"type":"null"}],"title":"Seed","description":"Random seed for reproducible generation. Use -1 for random."},"high_bitrate":{"type":"boolean","title":"High Bitrate","default":false},"prompt":{"type":"string","title":"Prompt","description":"Text prompt describing the desired video, referencing the provided images, video clips, and audio as environment, motion, and mood cues."},"images_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":30},{"type":"null"}],"title":"Images List","description":"Reference image URLs. Up to 30 images."},"videos_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":10},{"type":"null"}],"title":"Videos List","description":"Reference video URLs. Up to 10 clips."},"audios_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":10},{"type":"null"}],"title":"Audios List","description":"Reference audio URLs. Up to 10 files."},"omni_reference_task_type":{"type":"string","enum":["auto","reference","edit","extend"],"title":"Omni Reference Task Type","description":"Hint for the omni-reference subtask type (reference-to-video, video editing, or video extension), so mismatches with ratio/duration are caught at submission time instead of failing asynchronously. The provider still re-derives the actual type from the prompt during processing, so a mismatch can still surface as an async error.","default":"auto"}},"type":"object","required":["prompt"],"title":"Seedance25OmniReference1080pRequest"},"Seedance25OmniReference480pRequest":{"properties":{"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","maximum":30.0,"minimum":4.0,"title":"Duration","description":"Video duration in seconds, from 4 to 30.","default":5},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"16:9"},"seed":{"anyOf":[{"type":"integer","maximum":4294967295.0,"minimum":-1.0},{"type":"null"}],"title":"Seed","description":"Random seed for reproducible generation. Use -1 for random."},"high_bitrate":{"type":"boolean","title":"High Bitrate","default":false},"prompt":{"type":"string","title":"Prompt","description":"Text prompt describing the desired video, referencing the provided images, video clips, and audio as environment, motion, and mood cues."},"images_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":30},{"type":"null"}],"title":"Images List","description":"Reference image URLs. Up to 30 images."},"videos_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":10},{"type":"null"}],"title":"Videos List","description":"Reference video URLs. Up to 10 clips."},"audios_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":10},{"type":"null"}],"title":"Audios List","description":"Reference audio URLs. Up to 10 files."},"omni_reference_task_type":{"type":"string","enum":["auto","reference","edit","extend"],"title":"Omni Reference Task Type","description":"Hint for the omni-reference subtask type (reference-to-video, video editing, or video extension), so mismatches with ratio/duration are caught at submission time instead of failing asynchronously. The provider still re-derives the actual type from the prompt during processing, so a mismatch can still surface as an async error.","default":"auto"}},"type":"object","required":["prompt"],"title":"Seedance25OmniReference480pRequest"},"Seedance25OmniReference4kRequest":{"properties":{"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","maximum":30.0,"minimum":4.0,"title":"Duration","description":"Video duration in seconds, from 4 to 30.","default":5},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"16:9"},"seed":{"anyOf":[{"type":"integer","maximum":4294967295.0,"minimum":-1.0},{"type":"null"}],"title":"Seed","description":"Random seed for reproducible generation. Use -1 for random."},"high_bitrate":{"type":"boolean","title":"High Bitrate","default":false},"prompt":{"type":"string","title":"Prompt","description":"Text prompt describing the desired video, referencing the provided images, video clips, and audio as environment, motion, and mood cues."},"images_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":30},{"type":"null"}],"title":"Images List","description":"Reference image URLs. Up to 30 images."},"videos_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":10},{"type":"null"}],"title":"Videos List","description":"Reference video URLs. Up to 10 clips."},"audios_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":10},{"type":"null"}],"title":"Audios List","description":"Reference audio URLs. Up to 10 files."},"omni_reference_task_type":{"type":"string","enum":["auto","reference","edit","extend"],"title":"Omni Reference Task Type","description":"Hint for the omni-reference subtask type (reference-to-video, video editing, or video extension), so mismatches with ratio/duration are caught at submission time instead of failing asynchronously. The provider still re-derives the actual type from the prompt during processing, so a mismatch can still surface as an async error.","default":"auto"}},"type":"object","required":["prompt"],"title":"Seedance25OmniReference4kRequest"},"Seedance25OmniReferenceRequest":{"properties":{"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","maximum":30.0,"minimum":4.0,"title":"Duration","description":"Video duration in seconds, from 4 to 30.","default":5},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"16:9"},"seed":{"anyOf":[{"type":"integer","maximum":4294967295.0,"minimum":-1.0},{"type":"null"}],"title":"Seed","description":"Random seed for reproducible generation. Use -1 for random."},"high_bitrate":{"type":"boolean","title":"High Bitrate","default":false},"prompt":{"type":"string","title":"Prompt","description":"Text prompt describing the desired video, referencing the provided images, video clips, and audio as environment, motion, and mood cues."},"images_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":30},{"type":"null"}],"title":"Images List","description":"Reference image URLs. Up to 30 images."},"videos_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":10},{"type":"null"}],"title":"Videos List","description":"Reference video URLs. Up to 10 clips."},"audios_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":10},{"type":"null"}],"title":"Audios List","description":"Reference audio URLs. Up to 10 files."},"omni_reference_task_type":{"type":"string","enum":["auto","reference","edit","extend"],"title":"Omni Reference Task Type","description":"Hint for the omni-reference subtask type (reference-to-video, video editing, or video extension), so mismatches with ratio/duration are caught at submission time instead of failing asynchronously. The provider still re-derives the actual type from the prompt during processing, so a mismatch can still surface as an async error.","default":"auto"}},"type":"object","required":["prompt"],"title":"Seedance25OmniReferenceRequest"},"Seedance25T2V1080pRequest":{"properties":{"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","maximum":30.0,"minimum":4.0,"title":"Duration","description":"Video duration in seconds, from 4 to 30.","default":5},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"16:9"},"seed":{"anyOf":[{"type":"integer","maximum":4294967295.0,"minimum":-1.0},{"type":"null"}],"title":"Seed","description":"Random seed for reproducible generation. Use -1 for random."},"high_bitrate":{"type":"boolean","title":"High Bitrate","default":false},"prompt":{"type":"string","title":"Prompt"}},"type":"object","required":["prompt"],"title":"Seedance25T2V1080pRequest"},"Seedance25T2V480pRequest":{"properties":{"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","maximum":30.0,"minimum":4.0,"title":"Duration","description":"Video duration in seconds, from 4 to 30.","default":5},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"16:9"},"seed":{"anyOf":[{"type":"integer","maximum":4294967295.0,"minimum":-1.0},{"type":"null"}],"title":"Seed","description":"Random seed for reproducible generation. Use -1 for random."},"high_bitrate":{"type":"boolean","title":"High Bitrate","default":false},"prompt":{"type":"string","title":"Prompt"}},"type":"object","required":["prompt"],"title":"Seedance25T2V480pRequest"},"Seedance25T2V4kRequest":{"properties":{"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","maximum":30.0,"minimum":4.0,"title":"Duration","description":"Video duration in seconds, from 4 to 30.","default":5},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"16:9"},"seed":{"anyOf":[{"type":"integer","maximum":4294967295.0,"minimum":-1.0},{"type":"null"}],"title":"Seed","description":"Random seed for reproducible generation. Use -1 for random."},"high_bitrate":{"type":"boolean","title":"High Bitrate","default":false},"prompt":{"type":"string","title":"Prompt"}},"type":"object","required":["prompt"],"title":"Seedance25T2V4kRequest"},"Seedance25T2VRequest":{"properties":{"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","maximum":30.0,"minimum":4.0,"title":"Duration","description":"Video duration in seconds, from 4 to 30.","default":5},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"16:9"},"seed":{"anyOf":[{"type":"integer","maximum":4294967295.0,"minimum":-1.0},{"type":"null"}],"title":"Seed","description":"Random seed for reproducible generation. Use -1 for random."},"high_bitrate":{"type":"boolean","title":"High Bitrate","default":false},"prompt":{"type":"string","title":"Prompt"}},"type":"object","required":["prompt"],"title":"Seedance25T2VRequest"},"Seedance25VideoEdit1080pRequest":{"properties":{"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","maximum":30.0,"minimum":4.0,"title":"Duration","description":"Video duration in seconds, from 4 to 30.","default":5},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"16:9"},"seed":{"anyOf":[{"type":"integer","maximum":4294967295.0,"minimum":-1.0},{"type":"null"}],"title":"Seed","description":"Random seed for reproducible generation. Use -1 for random."},"high_bitrate":{"type":"boolean","title":"High Bitrate","default":false},"prompt":{"type":"string","title":"Prompt","description":"Instructions for the edit — lighting, style, weather, environment, or specific elements to change. Automatically prefixed with \"Edit the input video.\""},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url","description":"URL of the video to edit. Videos longer than 30s are trimmed to 30s."},"images_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":30},{"type":"null"}],"title":"Images List","description":"Reference image URLs guiding subject identity or style. Up to 30 images."},"audios_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":10},{"type":"null"}],"title":"Audios List","description":"Reference audio URLs guiding audio generation. Up to 10 files."},"generate_audio":{"type":"boolean","title":"Generate Audio","description":"Whether to generate new audio. If false, the input video's original audio is preserved.","default":true}},"type":"object","required":["prompt","video_url"],"title":"Seedance25VideoEdit1080pRequest"},"Seedance25VideoEdit480pRequest":{"properties":{"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","maximum":30.0,"minimum":4.0,"title":"Duration","description":"Video duration in seconds, from 4 to 30.","default":5},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"16:9"},"seed":{"anyOf":[{"type":"integer","maximum":4294967295.0,"minimum":-1.0},{"type":"null"}],"title":"Seed","description":"Random seed for reproducible generation. Use -1 for random."},"high_bitrate":{"type":"boolean","title":"High Bitrate","default":false},"prompt":{"type":"string","title":"Prompt","description":"Instructions for the edit — lighting, style, weather, environment, or specific elements to change. Automatically prefixed with \"Edit the input video.\""},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url","description":"URL of the video to edit. Videos longer than 30s are trimmed to 30s."},"images_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":30},{"type":"null"}],"title":"Images List","description":"Reference image URLs guiding subject identity or style. Up to 30 images."},"audios_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":10},{"type":"null"}],"title":"Audios List","description":"Reference audio URLs guiding audio generation. Up to 10 files."},"generate_audio":{"type":"boolean","title":"Generate Audio","description":"Whether to generate new audio. If false, the input video's original audio is preserved.","default":true}},"type":"object","required":["prompt","video_url"],"title":"Seedance25VideoEdit480pRequest"},"Seedance25VideoEdit4kRequest":{"properties":{"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","maximum":30.0,"minimum":4.0,"title":"Duration","description":"Video duration in seconds, from 4 to 30.","default":5},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"16:9"},"seed":{"anyOf":[{"type":"integer","maximum":4294967295.0,"minimum":-1.0},{"type":"null"}],"title":"Seed","description":"Random seed for reproducible generation. Use -1 for random."},"high_bitrate":{"type":"boolean","title":"High Bitrate","default":false},"prompt":{"type":"string","title":"Prompt","description":"Instructions for the edit — lighting, style, weather, environment, or specific elements to change. Automatically prefixed with \"Edit the input video.\""},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url","description":"URL of the video to edit. Videos longer than 30s are trimmed to 30s."},"images_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":30},{"type":"null"}],"title":"Images List","description":"Reference image URLs guiding subject identity or style. Up to 30 images."},"audios_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":10},{"type":"null"}],"title":"Audios List","description":"Reference audio URLs guiding audio generation. Up to 10 files."},"generate_audio":{"type":"boolean","title":"Generate Audio","description":"Whether to generate new audio. If false, the input video's original audio is preserved.","default":true}},"type":"object","required":["prompt","video_url"],"title":"Seedance25VideoEdit4kRequest"},"Seedance25VideoEditRequest":{"properties":{"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","maximum":30.0,"minimum":4.0,"title":"Duration","description":"Video duration in seconds, from 4 to 30.","default":5},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"16:9"},"seed":{"anyOf":[{"type":"integer","maximum":4294967295.0,"minimum":-1.0},{"type":"null"}],"title":"Seed","description":"Random seed for reproducible generation. Use -1 for random."},"high_bitrate":{"type":"boolean","title":"High Bitrate","default":false},"prompt":{"type":"string","title":"Prompt","description":"Instructions for the edit — lighting, style, weather, environment, or specific elements to change. Automatically prefixed with \"Edit the input video.\""},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url","description":"URL of the video to edit. Videos longer than 30s are trimmed to 30s."},"images_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":30},{"type":"null"}],"title":"Images List","description":"Reference image URLs guiding subject identity or style. Up to 30 images."},"audios_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":10},{"type":"null"}],"title":"Audios List","description":"Reference audio URLs guiding audio generation. Up to 10 files."},"generate_audio":{"type":"boolean","title":"Generate Audio","description":"Whether to generate new audio. If false, the input video's original audio is preserved.","default":true}},"type":"object","required":["prompt","video_url"],"title":"Seedance25VideoEditRequest"},"Seedance25VideoExtend1080pRequest":{"properties":{"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","maximum":30.0,"minimum":4.0,"title":"Duration","description":"Video duration in seconds, from 4 to 30.","default":5},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"16:9"},"seed":{"anyOf":[{"type":"integer","maximum":4294967295.0,"minimum":-1.0},{"type":"null"}],"title":"Seed","description":"Random seed for reproducible generation. Use -1 for random."},"high_bitrate":{"type":"boolean","title":"High Bitrate","default":false},"prompt":{"type":"string","title":"Prompt","description":"Desired cinematic continuation — action, camera movement, lighting, mood. Automatically prefixed with \"Continue the video forward.\""},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url","description":"URL of the video to extend. Generation continues from its last frame."},"last_image":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Last Image","description":"Optional target frame URL. When set, the continuation interpolates from the input video's final frame toward this image."},"generate_audio":{"type":"boolean","title":"Generate Audio","description":"Whether to generate synchronized audio for the new segment.","default":true}},"type":"object","required":["prompt","video_url"],"title":"Seedance25VideoExtend1080pRequest"},"Seedance25VideoExtend480pRequest":{"properties":{"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","maximum":30.0,"minimum":4.0,"title":"Duration","description":"Video duration in seconds, from 4 to 30.","default":5},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"16:9"},"seed":{"anyOf":[{"type":"integer","maximum":4294967295.0,"minimum":-1.0},{"type":"null"}],"title":"Seed","description":"Random seed for reproducible generation. Use -1 for random."},"high_bitrate":{"type":"boolean","title":"High Bitrate","default":false},"prompt":{"type":"string","title":"Prompt","description":"Desired cinematic continuation — action, camera movement, lighting, mood. Automatically prefixed with \"Continue the video forward.\""},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url","description":"URL of the video to extend. Generation continues from its last frame."},"last_image":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Last Image","description":"Optional target frame URL. When set, the continuation interpolates from the input video's final frame toward this image."},"generate_audio":{"type":"boolean","title":"Generate Audio","description":"Whether to generate synchronized audio for the new segment.","default":true}},"type":"object","required":["prompt","video_url"],"title":"Seedance25VideoExtend480pRequest"},"Seedance25VideoExtend4kRequest":{"properties":{"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","maximum":30.0,"minimum":4.0,"title":"Duration","description":"Video duration in seconds, from 4 to 30.","default":5},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"16:9"},"seed":{"anyOf":[{"type":"integer","maximum":4294967295.0,"minimum":-1.0},{"type":"null"}],"title":"Seed","description":"Random seed for reproducible generation. Use -1 for random."},"high_bitrate":{"type":"boolean","title":"High Bitrate","default":false},"prompt":{"type":"string","title":"Prompt","description":"Desired cinematic continuation — action, camera movement, lighting, mood. Automatically prefixed with \"Continue the video forward.\""},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url","description":"URL of the video to extend. Generation continues from its last frame."},"last_image":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Last Image","description":"Optional target frame URL. When set, the continuation interpolates from the input video's final frame toward this image."},"generate_audio":{"type":"boolean","title":"Generate Audio","description":"Whether to generate synchronized audio for the new segment.","default":true}},"type":"object","required":["prompt","video_url"],"title":"Seedance25VideoExtend4kRequest"},"Seedance25VideoExtendRequest":{"properties":{"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","maximum":30.0,"minimum":4.0,"title":"Duration","description":"Video duration in seconds, from 4 to 30.","default":5},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"16:9"},"seed":{"anyOf":[{"type":"integer","maximum":4294967295.0,"minimum":-1.0},{"type":"null"}],"title":"Seed","description":"Random seed for reproducible generation. Use -1 for random."},"high_bitrate":{"type":"boolean","title":"High Bitrate","default":false},"prompt":{"type":"string","title":"Prompt","description":"Desired cinematic continuation — action, camera movement, lighting, mood. Automatically prefixed with \"Continue the video forward.\""},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url","description":"URL of the video to extend. Generation continues from its last frame."},"last_image":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Last Image","description":"Optional target frame URL. When set, the continuation interpolates from the input video's final frame toward this image."},"generate_audio":{"type":"boolean","title":"Generate Audio","description":"Whether to generate synchronized audio for the new segment.","default":true}},"type":"object","required":["prompt","video_url"],"title":"Seedance25VideoExtendRequest"},"Seedance2CharacterRequest":{"properties":{"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":3,"title":"Images List","description":"1–3 reference photos of the character (JPEG/PNG/WebP)."},"prompt":{"type":"string","title":"Prompt","description":"Describe the outfit or costume the character should wear."},"character_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Character Name","description":"Optional label to identify this character."},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["images_list","prompt"],"title":"Seedance2CharacterRequest"},"Seedance2ExtendRequest":{"properties":{"request_id":{"type":"string","title":"Request Id"},"prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Prompt","description":"Optional prompt to guide the extension. Reference additional images with @image2…@image9, videos with @video1…@video3, and audio with @audio1…@audio3 (the auto-extracted last frame of the source video is always @image1).","default":""},"images_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":8},{"type":"null"}],"title":"Images List","description":"Up to 8 additional reference images. They map to @image2…@image9 in the prompt (@image1 is the source video's last frame)."},"video_files":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":3},{"type":"null"}],"title":"Video Files","description":"Up to 3 reference video clips (MP4, max 15s each). Referenced in prompt via @video1…@video3."},"audio_files":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":3},{"type":"null"}],"title":"Audio Files","description":"Up to 3 reference audio files (MP3/WAV, total max 15s). Referenced in prompt via @audio1…@audio3."},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["21:9","16:9","4:3","1:1","3:4","9:16"],"title":"Aspect Ratio","default":"16:9"},"quality":{"type":"string","enum":["high","basic"],"title":"Quality","default":"basic"},"duration":{"type":"integer","maximum":15.0,"minimum":4.0,"title":"Duration","default":5}},"type":"object","required":["request_id"],"title":"Seedance2ExtendRequest"},"Seedance2I2V480pRequest":{"properties":{"prompt":{"type":"string","title":"Prompt","description":"Text prompt describing the video. Reference uploaded images via @image1, @image2, … @imageN (1-based, matching the order of images_list). To use a fictional character, reference it with @character:<id> (request_id from a completed Seedance 2 Character generation) — characters are automatically appended to images_list. Multiple characters are supported. Example: 'The cat in @image1 walks through a garden alongside @character:ab539e5f'."},"images_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":9},{"type":"null"}],"title":"Images List","description":"Up to 9 image URLs. Reference them in the prompt via @image1 … @image9. Not required when using @character:<id> references."},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","4:3","3:4"],"title":"Aspect Ratio","default":"16:9"},"quality":{"type":"string","enum":["high","basic"],"title":"Quality","default":"basic"},"duration":{"type":"integer","maximum":15.0,"minimum":4.0,"title":"Duration","description":"Video duration in seconds (4–15).","default":5}},"type":"object","required":["prompt"],"title":"Seedance2I2V480pRequest"},"Seedance2I2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt","description":"Text prompt describing the video. Reference uploaded images via @image1, @image2, … @imageN (1-based, matching the order of images_list). To use a fictional character, reference it with @character:<id> (request_id from a completed Seedance 2 Character generation) — characters are automatically appended to images_list. Multiple characters are supported. Example: 'The cat in @image1 walks through a garden alongside @character:ab539e5f'."},"images_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":9},{"type":"null"}],"title":"Images List","description":"Up to 9 image URLs. Reference them in the prompt via @image1 … @image9. Not required when using @character:<id> references."},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","4:3","3:4"],"title":"Aspect Ratio","default":"16:9"},"quality":{"type":"string","enum":["high","basic"],"title":"Quality","default":"basic"},"duration":{"type":"integer","enum":[5,10,15],"title":"Duration","default":5},"remove_watermark":{"type":"boolean","title":"Remove Watermark","default":false}},"type":"object","required":["prompt"],"title":"Seedance2I2VRequest"},"Seedance2MiniI2VRequest":{"properties":{"prompt":{"type":"string","maxLength":20000,"title":"Prompt","description":"Text description guiding the video animation (max 20000 characters).","default":""},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":9,"minItems":1,"title":"Images List","description":"1 image = start frame. 2–9 images = reference images, reference them in your prompt with @image1, @image2, etc."},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["21:9","16:9","4:3","1:1","3:4","9:16"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","maximum":15.0,"minimum":4.0,"title":"Duration","default":5},"resolution":{"type":"string","enum":["480p","720p"],"title":"Resolution","default":"720p"},"generate_audio":{"type":"boolean","title":"Generate Audio","default":true},"high_bitrate":{"type":"boolean","title":"High Bitrate","default":false}},"type":"object","required":["images_list"],"title":"Seedance2MiniI2VRequest"},"Seedance2MiniOmniRequest":{"properties":{"prompt":{"type":"string","maxLength":20000,"title":"Prompt","description":"Text prompt describing the video (max 20000 characters). Reference images with @image1…@image9, videos with @video1…@video3, and audio with @audio1…@audio3."},"images_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":9},{"type":"null"}],"title":"Images List","description":"Up to 9 reference images (JPEG/PNG/WebP). Referenced in prompt via @image1…@image9."},"video_files":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":3},{"type":"null"}],"title":"Video Files","description":"Up to 3 reference video clips (MP4, total max 15s). Referenced in prompt via @video1…@video3."},"audio_files":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":3},{"type":"null"}],"title":"Audio Files","description":"Up to 3 reference audio files (MP3/WAV, total max 15s). Referenced in prompt via @audio1…@audio3."},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["21:9","16:9","4:3","1:1","3:4","9:16"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","maximum":15.0,"minimum":4.0,"title":"Duration","default":5},"resolution":{"type":"string","enum":["480p","720p"],"title":"Resolution","default":"720p"},"generate_audio":{"type":"boolean","title":"Generate Audio","default":true},"high_bitrate":{"type":"boolean","title":"High Bitrate","default":false}},"type":"object","required":["prompt"],"title":"Seedance2MiniOmniRequest"},"Seedance2MiniT2VRequest":{"properties":{"prompt":{"type":"string","maxLength":20000,"title":"Prompt","description":"Text description of the video to generate (max 20000 characters)."},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["21:9","16:9","4:3","1:1","3:4","9:16"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","maximum":15.0,"minimum":4.0,"title":"Duration","default":5},"resolution":{"type":"string","enum":["480p","720p"],"title":"Resolution","default":"720p"},"generate_audio":{"type":"boolean","title":"Generate Audio","default":true},"high_bitrate":{"type":"boolean","title":"High Bitrate","default":false}},"type":"object","required":["prompt"],"title":"Seedance2MiniT2VRequest"},"Seedance2NewFirstLastRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":2,"title":"Images List","description":"1 image = first frame only; 2 images = first and last frame."},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["21:9","16:9","4:3","1:1","3:4","9:16"],"title":"Aspect Ratio","default":"16:9"},"quality":{"type":"string","enum":["high","basic"],"title":"Quality","default":"basic"},"duration":{"type":"integer","maximum":15.0,"minimum":4.0,"title":"Duration","default":5}},"type":"object","required":["prompt","images_list"],"title":"Seedance2NewFirstLastRequest"},"Seedance2NewOmniRequest":{"properties":{"prompt":{"type":"string","title":"Prompt","description":"Text prompt describing the video. Reference uploaded images with @image_file_1 … @image_file_N, video clips with @video_file_1 … @video_file_N, and audio clips with @audio_file_1 … @audio_file_N. Example: 'The character in @image_file_1 performs the moves from @video_file_1.'"},"images_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":9},{"type":"null"}],"title":"Images List","description":"Up to 9 reference images. Referenced in prompt via @image_file_1 … @image_file_9."},"video_files":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":3},{"type":"null"}],"title":"Video Files","description":"Up to 3 reference video clips. Referenced in prompt via @video_file_1 … @video_file_3."},"audio_files":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":3},{"type":"null"}],"title":"Audio Files","description":"Up to 3 reference audio clips. Referenced in prompt via @audio_file_1 … @audio_file_3."},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["21:9","16:9","4:3","1:1","3:4","9:16"],"title":"Aspect Ratio","default":"16:9"},"quality":{"type":"string","enum":["high","basic"],"title":"Quality","default":"basic"},"duration":{"type":"integer","maximum":15.0,"minimum":4.0,"title":"Duration","default":5}},"type":"object","required":["prompt"],"title":"Seedance2NewOmniRequest"},"Seedance2NewT2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["21:9","16:9","4:3","1:1","3:4","9:16"],"title":"Aspect Ratio","default":"16:9"},"quality":{"type":"string","enum":["high","basic"],"title":"Quality","default":"basic"},"duration":{"type":"integer","maximum":15.0,"minimum":4.0,"title":"Duration","default":5}},"type":"object","required":["prompt"],"title":"Seedance2NewT2VRequest"},"Seedance2OmniReference480pRequest":{"properties":{"prompt":{"type":"string","title":"Prompt","description":"Text prompt describing the video. Reference images with @image1…@imageN, videos with @video1…@videoN, and audio with @audio1…@audioN. To use a fictional character, reference it with @character:<id> (request_id from a completed Seedance 2 Character generation) — characters are automatically appended to images_list. Multiple characters are supported. Example: '@character:ab539e5f performs the dance moves from @video1, synced to @audio1'."},"images_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":9},{"type":"null"}],"title":"Images List","description":"Up to 9 reference images (JPEG/PNG/WebP). Referenced in prompt via @image1…@image9."},"video_files":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":3},{"type":"null"}],"title":"Video Files","description":"Up to 3 reference video clips (MP4, max 15s each). Referenced in prompt via @video1…@video3."},"audio_files":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":3},{"type":"null"}],"title":"Audio Files","description":"Up to 3 reference audio files (MP3/WAV, total max 15s). Referenced in prompt via @audio1…@audio3."},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","4:3","3:4"],"title":"Aspect Ratio","default":"16:9"},"quality":{"type":"string","enum":["high","basic"],"title":"Quality","default":"basic"},"duration":{"type":"integer","maximum":15.0,"minimum":8.0,"title":"Duration","default":8}},"type":"object","required":["prompt"],"title":"Seedance2OmniReference480pRequest"},"Seedance2OmniReferenceRequest":{"properties":{"prompt":{"type":"string","title":"Prompt","description":"Text prompt describing the video. Reference images with @image1…@imageN, videos with @video1…@videoN, and audio with @audio1…@audioN. To use a character sheet, reference it with @character:<request_id> (from a completed Seedance 2 Character generation) — appended as an image reference. To use a trained Omni Reference character, reference it with @omni-character:<character_id> where character_id is the value returned by Omni Reference Train Character (e.g. char_1775422630065_4vbana). Both methods can be combined in the same prompt. Multiple characters are supported. Example: '@omni-character:char_1775422630065_4vbana walking through a neon-lit city at night'."},"images_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":9},{"type":"null"}],"title":"Images List","description":"Up to 9 reference images (JPEG/PNG/WebP). Referenced in prompt via @image1…@image9."},"video_files":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":3},{"type":"null"}],"title":"Video Files","description":"Up to 3 reference video clips (MP4, max 15s each). Referenced in prompt via @video1…@video3."},"audio_files":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":3},{"type":"null"}],"title":"Audio Files","description":"Up to 3 reference audio files (MP3/WAV, total max 15s). Referenced in prompt via @audio1…@audio3."},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["21:9","16:9","4:3","1:1","3:4","9:16"],"title":"Aspect Ratio","default":"16:9"},"quality":{"type":"string","enum":["high","basic"],"title":"Quality","default":"high"},"duration":{"type":"integer","maximum":15.0,"minimum":4.0,"title":"Duration","default":5}},"type":"object","required":["prompt"],"title":"Seedance2OmniReferenceRequest"},"Seedance2PiapiFirstLastRequest":{"properties":{"prompt":{"type":"string","maxLength":4000,"title":"Prompt","description":"Text prompt describing the video (max 4000 characters)."},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":2,"minItems":1,"title":"Images List","description":"1 image = first frame only; 2 images = first and last frame."},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["adaptive","21:9","16:9","4:3","1:1","3:4","9:16"],"title":"Aspect Ratio","description":"Output aspect ratio. 'adaptive' matches the input frames (recommended for first/last-frame transitions). Concrete ratios may crop or pad.","default":"adaptive"},"duration":{"type":"integer","maximum":15.0,"minimum":4.0,"title":"Duration","default":5},"high_bitrate":{"type":"boolean","title":"High Bitrate","default":false}},"type":"object","required":["prompt","images_list"],"title":"Seedance2PiapiFirstLastRequest"},"Seedance2PiapiI2VRequest":{"properties":{"prompt":{"type":"string","maxLength":4000,"title":"Prompt","description":"Text description guiding the video animation (max 4000 characters). To use a fictional character, reference it with @character:<id> (the request_id from a completed Seedance 2 Character generation) — the character image is automatically appended to images_list. Example: '@character:ab539e5f walks along a city street at sunset'."},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":9,"minItems":1,"title":"Images List","description":"All image-to-video and reference-based requests use omni_reference mode. 1 image = start frame. 2–9 images = reference them in your prompt with @image1, @image2, etc."},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["21:9","16:9","4:3","1:1","3:4","9:16"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","maximum":15.0,"minimum":4.0,"title":"Duration","default":5},"high_bitrate":{"type":"boolean","title":"High Bitrate","default":false}},"type":"object","required":["prompt","images_list"],"title":"Seedance2PiapiI2VRequest"},"Seedance2PiapiOmniRequest":{"properties":{"prompt":{"type":"string","maxLength":4000,"title":"Prompt","description":"Text prompt describing the video (max 4000 characters). Reference images with @image1…@image9 and audio with @audio1…@audio3. To use a fictional character, reference it with @character:<request_id> (from a completed Seedance 2 Character generation). Example: '@image1 is the character. The person walks along a city street at sunset.'"},"images_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":9,"minItems":1},{"type":"null"}],"title":"Images List","description":"Up to 9 reference images (JPEG/PNG/WebP). Referenced in prompt via @image1…@image9."},"audio_files":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":3},{"type":"null"}],"title":"Audio Files","description":"Up to 3 reference audio files (MP3/WAV, total max 15s). Referenced in prompt via @audio1…@audio3."},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","4:3","3:4"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","maximum":15.0,"minimum":4.0,"title":"Duration","default":5}},"type":"object","required":["prompt"],"title":"Seedance2PiapiOmniRequest"},"Seedance2PiapiT2VRequest":{"properties":{"prompt":{"type":"string","maxLength":4000,"title":"Prompt","description":"Text description of the video to generate (max 4000 characters). Optionally use @character:<id> (the request_id from a completed Seedance 2 Character generation) to anchor the video to a character — this automatically switches to omni_reference mode using the character as the start frame. Example: '@character:ab539e5f walks through a neon-lit city at night'."},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["21:9","16:9","4:3","1:1","3:4","9:16"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","maximum":15.0,"minimum":4.0,"title":"Duration","default":5},"high_bitrate":{"type":"boolean","title":"High Bitrate","default":false}},"type":"object","required":["prompt"],"title":"Seedance2PiapiT2VRequest"},"Seedance2T2V480pRequest":{"properties":{"prompt":{"type":"string","title":"Prompt","description":"Text prompt describing the video. To use a fictional character, reference it inline with @character:<id> (the request_id from a completed Seedance 2 Character generation). Multiple characters are supported. Example: '@character:ab539e5f walks on the beach at sunset'."},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","4:3","3:4"],"title":"Aspect Ratio","default":"16:9"},"quality":{"type":"string","enum":["high","basic"],"title":"Quality","default":"basic"},"duration":{"type":"integer","maximum":15.0,"minimum":4.0,"title":"Duration","description":"Video duration in seconds (4–15).","default":5}},"type":"object","required":["prompt"],"title":"Seedance2T2V480pRequest"},"Seedance2T2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt","description":"Text prompt describing the video. To use a fictional character, reference it inline with @character:<id> (the request_id from a completed Seedance 2 Character generation). Multiple characters are supported. Example: '@character:ab539e5f walks on the beach at sunset'."},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","4:3","3:4"],"title":"Aspect Ratio","default":"16:9"},"quality":{"type":"string","enum":["high","basic"],"title":"Quality","default":"basic"},"duration":{"type":"integer","enum":[5,10,15],"title":"Duration","default":5},"remove_watermark":{"type":"boolean","title":"Remove Watermark","default":false}},"type":"object","required":["prompt"],"title":"Seedance2T2VRequest"},"Seedance2VideoEditRequest":{"properties":{"prompt":{"type":"string","title":"Prompt","description":"Text prompt describing the video edit. You can reference uploaded images using @image1, @image2, … @imageN (1-based, matching the order of images_list)."},"video_urls":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":1,"minItems":1,"title":"Video Urls","description":"Exactly 1 reference video clip. (Max size: 10MB, Max duration: 15s)"},"images_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":9},{"type":"null"}],"title":"Images List","description":"Up to 9 reference images. Reference them in the prompt via @image1 … @image9."},"audio_files":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":3},{"type":"null"}],"title":"Audio Files","description":"Up to 3 reference audio files (MP3/WAV, total max 15s). Referenced in prompt via @audio1…@audio3."},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","4:3","3:4"],"title":"Aspect Ratio","default":"16:9"},"quality":{"type":"string","enum":["high","basic"],"title":"Quality","default":"basic"},"duration":{"type":"integer","maximum":15.0,"minimum":4.0,"title":"Duration (seconds)","description":"Output video duration in seconds (4–15).","default":5}},"type":"object","required":["prompt","video_urls"],"title":"Seedance2VideoEditRequest"},"Seedance2VideoWatermarkRemoverProRequest":{"properties":{"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["video_url"],"title":"Seedance2VideoWatermarkRemoverProRequest"},"Seedance2VipOmniRequest":{"properties":{"prompt":{"type":"string","maxLength":4000,"title":"Prompt","description":"Text prompt describing the video (max 4000 characters). Reference images with @image1…@image9, videos with @video1…@video3, and audio with @audio1…@audio3. To use a fictional character, reference it with @character:<request_id> (from a completed Seedance 2 Character generation). To use a trained Omni Reference character, reference it with @omni-character:<character_id>. Example: '@image1 is the character. The person walks along a city street at sunset.'"},"images_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":9},{"type":"null"}],"title":"Images List","description":"Up to 9 reference images (JPEG/PNG/WebP). Referenced in prompt via @image1…@image9."},"video_files":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":3},{"type":"null"}],"title":"Video Files","description":"Up to 3 reference video clips (MP4, max 15s each). Referenced in prompt via @video1…@video3."},"audio_files":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":3},{"type":"null"}],"title":"Audio Files","description":"Up to 3 reference audio files (MP3/WAV, total max 15s). Referenced in prompt via @audio1…@audio3."},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["21:9","16:9","4:3","1:1","3:4","9:16"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","maximum":15.0,"minimum":4.0,"title":"Duration","default":5},"high_bitrate":{"type":"boolean","title":"High Bitrate","default":false}},"type":"object","required":["prompt"],"title":"Seedance2VipOmniRequest"},"Seedance2WatermarkRemoverRequest":{"properties":{"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["video_url"],"title":"Seedance2WatermarkRemoverRequest"},"SeedanceI2VLiteRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"last_image":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Last Image"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"resolution":{"type":"string","enum":["480p","720p","1080p"],"title":"Resolution","default":"480p"},"duration":{"type":"integer","maximum":12.0,"minimum":3.0,"title":"Duration","default":5}},"type":"object","required":["prompt","image_url"],"title":"SeedanceI2VLiteRequest"},"SeedanceI2VProRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"resolution":{"type":"string","enum":["480p","720p","1080p"],"title":"Resolution","default":"480p"},"duration":{"type":"integer","maximum":12.0,"minimum":3.0,"title":"Duration","default":5}},"type":"object","required":["prompt","image_url"],"title":"SeedanceI2VProRequest"},"SeedanceLiteR2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"resolution":{"type":"string","enum":["480p","720p"],"title":"Resolution","default":"480p"},"duration":{"type":"integer","maximum":12.0,"minimum":3.0,"title":"Duration","default":5}},"type":"object","required":["prompt","images_list"],"title":"SeedanceLiteR2VRequest"},"SeedanceProFastI2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"resolution":{"type":"string","enum":["480p","720p","1080p"],"title":"Resolution","default":"480p"},"duration":{"type":"integer","enum":[2,3,4,5,6,7,8,9,10,11,12],"title":"Duration","default":5},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"camera_fixed":{"type":"boolean","title":"Camera Fixed","default":false}},"type":"object","required":["prompt","image_url"],"title":"SeedanceProFastI2VRequest"},"SeedanceProFastT2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"resolution":{"type":"string","enum":["480p","720p","1080p"],"title":"Resolution","default":"480p"},"duration":{"type":"integer","enum":[2,3,4,5,6,7,8,9,10,11,12],"title":"Duration","default":5},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9"],"title":"Aspect Ratio","default":"16:9"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"camera_fixed":{"type":"boolean","title":"Camera Fixed","default":false}},"type":"object","required":["prompt"],"title":"SeedanceProFastT2VRequest"},"SeedanceT2VLiteRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1","4:3","3:4","9:21"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["480p","720p","1080p"],"title":"Resolution","default":"480p"},"duration":{"type":"integer","maximum":12.0,"minimum":3.0,"title":"Duration","default":5}},"type":"object","required":["prompt"],"title":"SeedanceT2VLiteRequest"},"SeedanceT2VProRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1","4:3","3:4","21:9"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["480p","720p","1080p"],"title":"Resolution","default":"480p"},"duration":{"type":"integer","maximum":12.0,"minimum":3.0,"title":"Duration","default":5}},"type":"object","required":["prompt"],"title":"SeedanceT2VProRequest"},"SeedanceV15ProFastI2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"last_image":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Last Image"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1","4:3","3:4","21:9"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["720p","1080p"],"title":"Resolution","default":"720p"},"duration":{"type":"integer","enum":[4,5,6,7,8,9,10,11,12],"title":"Duration","default":5},"camera_fixed":{"type":"boolean","title":"Camera Fixed","default":false},"generate_audio":{"type":"boolean","title":"Generate Audio","default":true}},"type":"object","required":["prompt","image_url"],"title":"SeedanceV15ProFastI2VRequest"},"SeedanceV15ProFastT2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"resolution":{"type":"string","enum":["720p","1080p"],"title":"Resolution","default":"720p"},"duration":{"type":"integer","enum":[4,5,6,7,8,9,10,11,12],"title":"Duration","default":5},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9"],"title":"Aspect Ratio","default":"16:9"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"camera_fixed":{"type":"boolean","title":"Camera Fixed","default":false},"generate_audio":{"type":"boolean","title":"Generate Audio","default":true}},"type":"object","required":["prompt"],"title":"SeedanceV15ProFastT2VRequest"},"SeedanceV15ProI2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"last_image":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Last Image"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1","4:3","3:4","21:9"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["480p","720p","1080p"],"title":"Resolution","default":"480p"},"duration":{"type":"integer","enum":[4,5,6,7,8,9,10,11,12],"title":"Duration","default":5},"camera_fixed":{"type":"boolean","title":"Camera Fixed","default":false},"generate_audio":{"type":"boolean","title":"Generate Audio","default":true}},"type":"object","required":["prompt","image_url"],"title":"SeedanceV15ProI2VRequest"},"SeedanceV15ProT2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"resolution":{"type":"string","enum":["480p","720p","1080p"],"title":"Resolution","default":"480p"},"duration":{"type":"integer","enum":[4,5,6,7,8,9,10,11,12],"title":"Duration","default":5},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","21:9"],"title":"Aspect Ratio","default":"16:9"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"camera_fixed":{"type":"boolean","title":"Camera Fixed","default":false},"generate_audio":{"type":"boolean","title":"Generate Audio","default":true}},"type":"object","required":["prompt"],"title":"SeedanceV15ProT2VRequest"},"SeedanceV15ProVideoExtendFastRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"resolution":{"type":"string","enum":["720p","1080p"],"title":"Resolution","default":"720p"},"duration":{"type":"integer","enum":[4,5,6,7,8,9,10,11,12],"title":"Duration","default":5},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"generate_audio":{"type":"boolean","title":"Generate Audio","default":true},"camera_fixed":{"type":"boolean","title":"Camera Fixed","default":false}},"type":"object","required":["prompt","video_url"],"title":"SeedanceV15ProVideoExtendFastRequest"},"SeedanceV15ProVideoExtendRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"resolution":{"type":"string","enum":["480p","720p"],"title":"Resolution","default":"720p"},"duration":{"type":"integer","enum":[4,5,6,7,8,9,10,11,12],"title":"Duration","default":5},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"generate_audio":{"type":"boolean","title":"Generate Audio","default":true},"camera_fixed":{"type":"boolean","title":"Camera Fixed","default":false}},"type":"object","required":["prompt","video_url"],"title":"SeedanceV15ProVideoExtendRequest"},"Seedream5LiteEditRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"aspect_ratio":{"type":"string","enum":["1:1","4:3","3:4","16:9","9:16","2:3","3:2","21:9"],"title":"Aspect Ratio","default":"1:1"},"quality":{"type":"string","enum":["basic","high"],"title":"Quality","default":"basic"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","images_list"],"title":"Seedream5LiteEditRequest"},"Seedream5LiteRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["1:1","4:3","3:4","16:9","9:16","2:3","3:2","21:9"],"title":"Aspect Ratio","default":"1:1"},"quality":{"type":"string","enum":["basic","high"],"title":"Quality","default":"basic"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Seedream5LiteRequest"},"Seedream5ProEditRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"aspect_ratio":{"type":"string","enum":["1:1","4:3","3:4","16:9","9:16","2:3","3:2"],"title":"Aspect Ratio","default":"1:1"},"resolution":{"type":"string","enum":["1K","2K"],"title":"Resolution","default":"1K"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","images_list"],"title":"Seedream5ProEditRequest"},"Seedream5ProLayerDecompositionRequest":{"properties":{"prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Prompt"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"resolution":{"type":"string","enum":["1K","1.5K","2K","auto"],"title":"Resolution","default":"auto"},"output_format":{"type":"string","enum":["png","jpeg"],"title":"Output Format","default":"png"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","title":"Seedream5ProLayerDecompositionRequest"},"Seedream5ProRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["1:1","4:3","3:4","16:9","9:16","2:3","3:2"],"title":"Aspect Ratio","default":"1:1"},"resolution":{"type":"string","enum":["1K","2K"],"title":"Resolution","default":"1K"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Seedream5ProRequest"},"SeedreamEditv4I2IRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1","4:3","3:4","2:3","3:2","21:9"],"title":"Aspect Ratio","default":"1:1"},"resolution":{"type":"string","enum":["1K","2K","4K"],"title":"Resolution","default":"4K"},"num_images":{"type":"integer","enum":[1,2,3,4],"title":"Num Images","default":1}},"type":"object","required":["prompt","images_list"],"title":"SeedreamEditv4I2IRequest"},"Seedreamv3T2IRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1","4:3","3:4"],"title":"Aspect Ratio","default":"1:1"}},"type":"object","required":["prompt"],"title":"Seedreamv3T2IRequest"},"Seedreamv45EditRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","3:2","2:3","21:9"],"title":"Aspect Ratio","default":"1:1"},"quality":{"type":"string","enum":["high","basic"],"title":"Quality","default":"high"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","images_list"],"title":"Seedreamv45EditRequest"},"Seedreamv45Request":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","3:2","2:3","21:9"],"title":"Aspect Ratio","default":"1:1"},"quality":{"type":"string","enum":["high","basic"],"title":"Quality","default":"high"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Seedreamv45Request"},"Seedreamv4T2IRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1","4:3","3:4","2:3","3:2","21:9"],"title":"Aspect Ratio","default":"1:1"},"resolution":{"type":"string","enum":["1K","2K","4K"],"title":"Resolution","default":"4K"},"num_images":{"type":"integer","enum":[1,2,3,4],"title":"Num Images","default":1}},"type":"object","required":["prompt"],"title":"Seedreamv4T2IRequest"},"SeoAccountStatusRequest":{"properties":{"force_check":{"type":"boolean","title":"Force Check","default":false},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","title":"SeoAccountStatusRequest","description":"DataForSEO provider account balance and status check."},"SeoAiMentionsMetricsRequest":{"properties":{"target":{"type":"string","maxLength":255,"minLength":1,"title":"Target"},"competitors":{"items":{"type":"string"},"type":"array","maxItems":5,"title":"Competitors","default":[]},"platforms":{"items":{"type":"string","enum":["chat_gpt","google"]},"type":"array","title":"Platforms","default":["chat_gpt","google"]},"date_from":{"anyOf":[{"type":"string","pattern":"^\\d{4}-\\d{2}-\\d{2}$"},{"type":"null"}],"title":"Date From"},"date_to":{"anyOf":[{"type":"string","pattern":"^\\d{4}-\\d{2}-\\d{2}$"},{"type":"null"}],"title":"Date To"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["target"],"title":"SeoAiMentionsMetricsRequest","description":"Aggregated & cross-brand LLM mention metrics, sentiment, and share of voice."},"SeoAiMentionsRequest":{"properties":{"target":{"type":"string","maxLength":500,"minLength":1,"title":"Target"},"platforms":{"items":{"type":"string","enum":["chat_gpt","google"]},"type":"array","title":"Platforms","default":["chat_gpt","google"]},"limit":{"type":"integer","maximum":100.0,"minimum":1.0,"title":"Limit","default":10},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["target"],"title":"SeoAiMentionsRequest","description":"AI and Generative Engine Optimization (GEO) brand mention search and citation analytics."},"SeoAiResponseRequest":{"properties":{"prompt":{"type":"string","maxLength":10000,"minLength":1,"title":"Prompt"},"model":{"type":"string","enum":["gpt-5","claude-sonnet-4-5","gemini-2.5-pro","sonar-reasoning-pro"],"title":"Model","default":"gpt-5"},"web_search":{"type":"boolean","title":"Web Search","default":false},"max_tokens":{"type":"integer","maximum":4000.0,"minimum":100.0,"title":"Max Tokens","default":2000},"country":{"anyOf":[{"type":"string","maxLength":10},{"type":"null"}],"title":"Country"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"SeoAiResponseRequest","description":"Live prompt execution across frontier LLMs with citation extraction and web search."},"SeoBacklinksHistoryRequest":{"properties":{"target":{"type":"string","maxLength":255,"minLength":1,"title":"Target"},"date_from":{"anyOf":[{"type":"string","pattern":"^\\d{4}-\\d{2}-\\d{2}$"},{"type":"null"}],"title":"Date From"},"date_to":{"anyOf":[{"type":"string","pattern":"^\\d{4}-\\d{2}-\\d{2}$"},{"type":"null"}],"title":"Date To"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["target"],"title":"SeoBacklinksHistoryRequest","description":"Historical backlink trend analysis from DataForSEO Backlinks."},"SeoBacklinksPagesRequest":{"properties":{"target":{"type":"string","maxLength":255,"minLength":1,"title":"Target"},"limit":{"type":"integer","maximum":100.0,"minimum":1.0,"title":"Limit","default":10},"include_subdomains":{"type":"boolean","title":"Include Subdomains","default":true},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["target"],"title":"SeoBacklinksPagesRequest","description":"Top linked domain pages summary from DataForSEO Backlinks."},"SeoBacklinksRequest":{"properties":{"domain":{"type":"string","maxLength":255,"minLength":1,"title":"Domain"},"limit":{"type":"integer","maximum":100.0,"minimum":1.0,"title":"Limit","default":10},"include_subdomains":{"type":"boolean","title":"Include Subdomains","default":true},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["domain"],"title":"SeoBacklinksRequest","description":"Backlinks profile, domain rank, referring domains, and link sources."},"SeoBusinessListingsRequest":{"properties":{"keyword":{"anyOf":[{"type":"string","maxLength":500},{"type":"null"}],"title":"Keyword"},"location":{"type":"string","enum":["Afghanistan","Albania","Algeria","American Samoa","Andorra","Angola","Antarctica","Antigua and Barbuda","Argentina","Armenia","Australia","Austria","Azerbaijan","Bahrain","Bangladesh","Barbados","Belgium","Belize","Benin","Bhutan","Bolivia","Bosnia and Herzegovina","Botswana","Brazil","Brunei","Bulgaria","Burkina Faso","Burundi","Cabo Verde","Cambodia","Cameroon","Canada","Caribbean Netherlands","Central African Republic","Chad","Chile","China","Christmas Island","Cocos (Keeling) Islands","Colombia","Comoros","Cook Islands","Costa Rica","Cote d'Ivoire","Croatia","Curacao","Cyprus","Czechia","Democratic Republic of the Congo","Denmark","Djibouti","Dominica","Dominican Republic","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Eswatini","Ethiopia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Greece","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Honduras","Hungary","Iceland","India","Indonesia","Iraq","Ireland","Isle of Man","Israel","Italy","Jamaica","Japan","Jersey","Jordan","Kazakhstan","Kenya","Kiribati","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Marshall Islands","Mauritania","Mauritius","Mexico","Micronesia","Moldova","Monaco","Mongolia","Montenegro","Morocco","Mozambique","Myanmar (Burma)","Namibia","Nauru","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue","Norfolk Island","North Macedonia","Northern Mariana Islands","Norway","Oman","Pakistan","Palau","Panama","Papua New Guinea","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal","Qatar","Republic of the Congo","Romania","Rwanda","Saint Helena, Ascension and Tristan da Cunha","Saint Kitts and Nevis","Saint Lucia","Saint Martin","Saint Pierre and Miquelon","Saint Vincent and the Grenadines","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles","Sierra Leone","Singapore","Sint Maarten","Slovakia","Slovenia","Solomon Islands","Somalia","South Africa","South Georgia and the South Sandwich Islands","South Korea","Spain","Sri Lanka","Suriname","Sweden","Switzerland","Tajikistan","Tanzania","Thailand","The Bahamas","The Gambia","Timor-Leste","Togo","Tokelau","Tonga","Trinidad and Tobago","Tunisia","Turkiye","Turkmenistan","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","United States","United States Minor Outlying Islands","Uruguay","Uzbekistan","Vanuatu","Vatican City","Venezuela","Vietnam","Wallis and Futuna","Yemen","Zambia","Zimbabwe"],"title":"Location","default":"United States"},"limit":{"type":"integer","maximum":100.0,"minimum":1.0,"title":"Limit","default":10},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","title":"SeoBusinessListingsRequest","description":"Search business listings database by keyword, category, and location."},"SeoBusinessProfileRequest":{"properties":{"keyword":{"type":"string","maxLength":500,"minLength":1,"title":"Keyword"},"location":{"type":"string","enum":["Afghanistan","Albania","Algeria","American Samoa","Andorra","Angola","Antarctica","Antigua and Barbuda","Argentina","Armenia","Australia","Austria","Azerbaijan","Bahrain","Bangladesh","Barbados","Belgium","Belize","Benin","Bhutan","Bolivia","Bosnia and Herzegovina","Botswana","Brazil","Brunei","Bulgaria","Burkina Faso","Burundi","Cabo Verde","Cambodia","Cameroon","Canada","Caribbean Netherlands","Central African Republic","Chad","Chile","China","Christmas Island","Cocos (Keeling) Islands","Colombia","Comoros","Cook Islands","Costa Rica","Cote d'Ivoire","Croatia","Curacao","Cyprus","Czechia","Democratic Republic of the Congo","Denmark","Djibouti","Dominica","Dominican Republic","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Eswatini","Ethiopia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Greece","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Honduras","Hungary","Iceland","India","Indonesia","Iraq","Ireland","Isle of Man","Israel","Italy","Jamaica","Japan","Jersey","Jordan","Kazakhstan","Kenya","Kiribati","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Marshall Islands","Mauritania","Mauritius","Mexico","Micronesia","Moldova","Monaco","Mongolia","Montenegro","Morocco","Mozambique","Myanmar (Burma)","Namibia","Nauru","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue","Norfolk Island","North Macedonia","Northern Mariana Islands","Norway","Oman","Pakistan","Palau","Panama","Papua New Guinea","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal","Qatar","Republic of the Congo","Romania","Rwanda","Saint Helena, Ascension and Tristan da Cunha","Saint Kitts and Nevis","Saint Lucia","Saint Martin","Saint Pierre and Miquelon","Saint Vincent and the Grenadines","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles","Sierra Leone","Singapore","Sint Maarten","Slovakia","Slovenia","Solomon Islands","Somalia","South Africa","South Georgia and the South Sandwich Islands","South Korea","Spain","Sri Lanka","Suriname","Sweden","Switzerland","Tajikistan","Tanzania","Thailand","The Bahamas","The Gambia","Timor-Leste","Togo","Tokelau","Tonga","Trinidad and Tobago","Tunisia","Turkiye","Turkmenistan","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","United States","United States Minor Outlying Islands","Uruguay","Uzbekistan","Vanuatu","Vatican City","Venezuela","Vietnam","Wallis and Futuna","Yemen","Zambia","Zimbabwe"],"title":"Location","default":"United States"},"language":{"type":"string","enum":["Afrikaans","Akan","Albanian","Amharic","Arabic","Armenian","Azeri","Balinese","Basque","Belarusian","Bengali","Bosnian","Bulgarian","Burmese","Catalan","Cebuano","Chichewa","Chinese (Simplified)","Chinese (Traditional)","Croatian","Czech","Danish","Dutch","English","Espanol (Latinoamerica)","Estonian","Ewe","Faroese","Farsi","Filipino","Finnish","French","Frisian","Ga","Galician","Ganda","Georgian","German","Greek","Gujarati","Haitian","Hausa","Hebrew","Hebrew (old)","Hindi","Hungarian","Icelandic","IciBemba","Igbo","Indonesian","Irish","Italian","Japanese","Kannada","Kazakh","Khmer","Kinyarwanda","Kirundi","Kongo","Korean","Kreol Seselwa","Kreol morisien","Krio","Kurdish","Kyrgyz","Lao","Latvian","Lingala","Lithuanian","Luo","Macedonian","Malagasy","Malay","Malayam","Maltese","Maori","Marathi","Mongolian","Montenegro","Nepali","Northern Sotho","Norwegian","Nyankole","Oromo","Pashto","Pidgin","Polish","Portuguese","Portuguese (Brazil)","Portuguese (Portugal)","Punjabi","Quechua","Romanian","Romansh","Russian","Serbian","Serbian (Latin)","Sesotho","Shona","Silozi","Sindhi","Sinhalese","Slovak","Slovenian","Somali","Spanish","Swahili","Swedish","Tagalog","Tajik","Tamil","Telugu","Thai","Tigrinya","Tonga (Tonga Islands)","Tshiluba","Tswana","Tumbuka","Turkish","Turkmen","Ukrainian","Urdu","Uzbek","Vietnamese","Welsh","Wolof","Xhosa","Yoruba","Zulu"],"title":"Language","default":"English"},"place_id":{"anyOf":[{"type":"string","maxLength":255},{"type":"null"}],"title":"Place Id"},"cid":{"anyOf":[{"type":"string","maxLength":64},{"type":"null"}],"title":"Cid"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["keyword"],"title":"SeoBusinessProfileRequest","description":"Google My Business profile details, category, contact, rating, and coordinates."},"SeoBusinessReviewsRequest":{"properties":{"keyword":{"type":"string","maxLength":500,"minLength":1,"title":"Keyword"},"location":{"type":"string","enum":["Afghanistan","Albania","Algeria","American Samoa","Andorra","Angola","Antarctica","Antigua and Barbuda","Argentina","Armenia","Australia","Austria","Azerbaijan","Bahrain","Bangladesh","Barbados","Belgium","Belize","Benin","Bhutan","Bolivia","Bosnia and Herzegovina","Botswana","Brazil","Brunei","Bulgaria","Burkina Faso","Burundi","Cabo Verde","Cambodia","Cameroon","Canada","Caribbean Netherlands","Central African Republic","Chad","Chile","China","Christmas Island","Cocos (Keeling) Islands","Colombia","Comoros","Cook Islands","Costa Rica","Cote d'Ivoire","Croatia","Curacao","Cyprus","Czechia","Democratic Republic of the Congo","Denmark","Djibouti","Dominica","Dominican Republic","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Eswatini","Ethiopia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Greece","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Honduras","Hungary","Iceland","India","Indonesia","Iraq","Ireland","Isle of Man","Israel","Italy","Jamaica","Japan","Jersey","Jordan","Kazakhstan","Kenya","Kiribati","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Marshall Islands","Mauritania","Mauritius","Mexico","Micronesia","Moldova","Monaco","Mongolia","Montenegro","Morocco","Mozambique","Myanmar (Burma)","Namibia","Nauru","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue","Norfolk Island","North Macedonia","Northern Mariana Islands","Norway","Oman","Pakistan","Palau","Panama","Papua New Guinea","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal","Qatar","Republic of the Congo","Romania","Rwanda","Saint Helena, Ascension and Tristan da Cunha","Saint Kitts and Nevis","Saint Lucia","Saint Martin","Saint Pierre and Miquelon","Saint Vincent and the Grenadines","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles","Sierra Leone","Singapore","Sint Maarten","Slovakia","Slovenia","Solomon Islands","Somalia","South Africa","South Georgia and the South Sandwich Islands","South Korea","Spain","Sri Lanka","Suriname","Sweden","Switzerland","Tajikistan","Tanzania","Thailand","The Bahamas","The Gambia","Timor-Leste","Togo","Tokelau","Tonga","Trinidad and Tobago","Tunisia","Turkiye","Turkmenistan","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","United States","United States Minor Outlying Islands","Uruguay","Uzbekistan","Vanuatu","Vatican City","Venezuela","Vietnam","Wallis and Futuna","Yemen","Zambia","Zimbabwe"],"title":"Location","default":"United States"},"language":{"type":"string","enum":["Afrikaans","Akan","Albanian","Amharic","Arabic","Armenian","Azeri","Balinese","Basque","Belarusian","Bengali","Bosnian","Bulgarian","Burmese","Catalan","Cebuano","Chichewa","Chinese (Simplified)","Chinese (Traditional)","Croatian","Czech","Danish","Dutch","English","Espanol (Latinoamerica)","Estonian","Ewe","Faroese","Farsi","Filipino","Finnish","French","Frisian","Ga","Galician","Ganda","Georgian","German","Greek","Gujarati","Haitian","Hausa","Hebrew","Hebrew (old)","Hindi","Hungarian","Icelandic","IciBemba","Igbo","Indonesian","Irish","Italian","Japanese","Kannada","Kazakh","Khmer","Kinyarwanda","Kirundi","Kongo","Korean","Kreol Seselwa","Kreol morisien","Krio","Kurdish","Kyrgyz","Lao","Latvian","Lingala","Lithuanian","Luo","Macedonian","Malagasy","Malay","Malayam","Maltese","Maori","Marathi","Mongolian","Montenegro","Nepali","Northern Sotho","Norwegian","Nyankole","Oromo","Pashto","Pidgin","Polish","Portuguese","Portuguese (Brazil)","Portuguese (Portugal)","Punjabi","Quechua","Romanian","Romansh","Russian","Serbian","Serbian (Latin)","Sesotho","Shona","Silozi","Sindhi","Sinhalese","Slovak","Slovenian","Somali","Spanish","Swahili","Swedish","Tagalog","Tajik","Tamil","Telugu","Thai","Tigrinya","Tonga (Tonga Islands)","Tshiluba","Tswana","Tumbuka","Turkish","Turkmen","Ukrainian","Urdu","Uzbek","Vietnamese","Welsh","Wolof","Xhosa","Yoruba","Zulu"],"title":"Language","default":"English"},"depth":{"type":"integer","multipleOf":10.0,"maximum":100.0,"minimum":10.0,"title":"Depth","default":10},"extended":{"type":"boolean","title":"Extended","default":false},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["keyword"],"title":"SeoBusinessReviewsRequest","description":"Google My Business reviews, ratings, and business details."},"SeoBusinessUpdatesRequest":{"properties":{"keyword":{"type":"string","maxLength":255,"minLength":1,"title":"Keyword"},"location":{"type":"string","enum":["Afghanistan","Albania","Algeria","American Samoa","Andorra","Angola","Antarctica","Antigua and Barbuda","Argentina","Armenia","Australia","Austria","Azerbaijan","Bahrain","Bangladesh","Barbados","Belgium","Belize","Benin","Bhutan","Bolivia","Bosnia and Herzegovina","Botswana","Brazil","Brunei","Bulgaria","Burkina Faso","Burundi","Cabo Verde","Cambodia","Cameroon","Canada","Caribbean Netherlands","Central African Republic","Chad","Chile","China","Christmas Island","Cocos (Keeling) Islands","Colombia","Comoros","Cook Islands","Costa Rica","Cote d'Ivoire","Croatia","Curacao","Cyprus","Czechia","Democratic Republic of the Congo","Denmark","Djibouti","Dominica","Dominican Republic","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Eswatini","Ethiopia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Greece","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Honduras","Hungary","Iceland","India","Indonesia","Iraq","Ireland","Isle of Man","Israel","Italy","Jamaica","Japan","Jersey","Jordan","Kazakhstan","Kenya","Kiribati","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Marshall Islands","Mauritania","Mauritius","Mexico","Micronesia","Moldova","Monaco","Mongolia","Montenegro","Morocco","Mozambique","Myanmar (Burma)","Namibia","Nauru","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue","Norfolk Island","North Macedonia","Northern Mariana Islands","Norway","Oman","Pakistan","Palau","Panama","Papua New Guinea","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal","Qatar","Republic of the Congo","Romania","Rwanda","Saint Helena, Ascension and Tristan da Cunha","Saint Kitts and Nevis","Saint Lucia","Saint Martin","Saint Pierre and Miquelon","Saint Vincent and the Grenadines","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles","Sierra Leone","Singapore","Sint Maarten","Slovakia","Slovenia","Solomon Islands","Somalia","South Africa","South Georgia and the South Sandwich Islands","South Korea","Spain","Sri Lanka","Suriname","Sweden","Switzerland","Tajikistan","Tanzania","Thailand","The Bahamas","The Gambia","Timor-Leste","Togo","Tokelau","Tonga","Trinidad and Tobago","Tunisia","Turkiye","Turkmenistan","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","United States","United States Minor Outlying Islands","Uruguay","Uzbekistan","Vanuatu","Vatican City","Venezuela","Vietnam","Wallis and Futuna","Yemen","Zambia","Zimbabwe"],"title":"Location","default":"United States"},"language":{"type":"string","enum":["Afrikaans","Akan","Albanian","Amharic","Arabic","Armenian","Azeri","Balinese","Basque","Belarusian","Bengali","Bosnian","Bulgarian","Burmese","Catalan","Cebuano","Chichewa","Chinese (Simplified)","Chinese (Traditional)","Croatian","Czech","Danish","Dutch","English","Espanol (Latinoamerica)","Estonian","Ewe","Faroese","Farsi","Filipino","Finnish","French","Frisian","Ga","Galician","Ganda","Georgian","German","Greek","Gujarati","Haitian","Hausa","Hebrew","Hebrew (old)","Hindi","Hungarian","Icelandic","IciBemba","Igbo","Indonesian","Irish","Italian","Japanese","Kannada","Kazakh","Khmer","Kinyarwanda","Kirundi","Kongo","Korean","Kreol Seselwa","Kreol morisien","Krio","Kurdish","Kyrgyz","Lao","Latvian","Lingala","Lithuanian","Luo","Macedonian","Malagasy","Malay","Malayam","Maltese","Maori","Marathi","Mongolian","Montenegro","Nepali","Northern Sotho","Norwegian","Nyankole","Oromo","Pashto","Pidgin","Polish","Portuguese","Portuguese (Brazil)","Portuguese (Portugal)","Punjabi","Quechua","Romanian","Romansh","Russian","Serbian","Serbian (Latin)","Sesotho","Shona","Silozi","Sindhi","Sinhalese","Slovak","Slovenian","Somali","Spanish","Swahili","Swedish","Tagalog","Tajik","Tamil","Telugu","Thai","Tigrinya","Tonga (Tonga Islands)","Tshiluba","Tswana","Tumbuka","Turkish","Turkmen","Ukrainian","Urdu","Uzbek","Vietnamese","Welsh","Wolof","Xhosa","Yoruba","Zulu"],"title":"Language","default":"English"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["keyword"],"title":"SeoBusinessUpdatesRequest","description":"Google My Business updates, events, and posts lookup."},"SeoDomainOverviewRequest":{"properties":{"domain":{"type":"string","maxLength":255,"minLength":1,"title":"Domain"},"location":{"type":"string","enum":["Afghanistan","Albania","Algeria","American Samoa","Andorra","Angola","Antarctica","Antigua and Barbuda","Argentina","Armenia","Australia","Austria","Azerbaijan","Bahrain","Bangladesh","Barbados","Belgium","Belize","Benin","Bhutan","Bolivia","Bosnia and Herzegovina","Botswana","Brazil","Brunei","Bulgaria","Burkina Faso","Burundi","Cabo Verde","Cambodia","Cameroon","Canada","Caribbean Netherlands","Central African Republic","Chad","Chile","China","Christmas Island","Cocos (Keeling) Islands","Colombia","Comoros","Cook Islands","Costa Rica","Cote d'Ivoire","Croatia","Curacao","Cyprus","Czechia","Democratic Republic of the Congo","Denmark","Djibouti","Dominica","Dominican Republic","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Eswatini","Ethiopia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Greece","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Honduras","Hungary","Iceland","India","Indonesia","Iraq","Ireland","Isle of Man","Israel","Italy","Jamaica","Japan","Jersey","Jordan","Kazakhstan","Kenya","Kiribati","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Marshall Islands","Mauritania","Mauritius","Mexico","Micronesia","Moldova","Monaco","Mongolia","Montenegro","Morocco","Mozambique","Myanmar (Burma)","Namibia","Nauru","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue","Norfolk Island","North Macedonia","Northern Mariana Islands","Norway","Oman","Pakistan","Palau","Panama","Papua New Guinea","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal","Qatar","Republic of the Congo","Romania","Rwanda","Saint Helena, Ascension and Tristan da Cunha","Saint Kitts and Nevis","Saint Lucia","Saint Martin","Saint Pierre and Miquelon","Saint Vincent and the Grenadines","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles","Sierra Leone","Singapore","Sint Maarten","Slovakia","Slovenia","Solomon Islands","Somalia","South Africa","South Georgia and the South Sandwich Islands","South Korea","Spain","Sri Lanka","Suriname","Sweden","Switzerland","Tajikistan","Tanzania","Thailand","The Bahamas","The Gambia","Timor-Leste","Togo","Tokelau","Tonga","Trinidad and Tobago","Tunisia","Turkiye","Turkmenistan","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","United States","United States Minor Outlying Islands","Uruguay","Uzbekistan","Vanuatu","Vatican City","Venezuela","Vietnam","Wallis and Futuna","Yemen","Zambia","Zimbabwe"],"title":"Location","default":"United States"},"language":{"type":"string","enum":["Afrikaans","Akan","Albanian","Amharic","Arabic","Armenian","Azeri","Balinese","Basque","Belarusian","Bengali","Bosnian","Bulgarian","Burmese","Catalan","Cebuano","Chichewa","Chinese (Simplified)","Chinese (Traditional)","Croatian","Czech","Danish","Dutch","English","Espanol (Latinoamerica)","Estonian","Ewe","Faroese","Farsi","Filipino","Finnish","French","Frisian","Ga","Galician","Ganda","Georgian","German","Greek","Gujarati","Haitian","Hausa","Hebrew","Hebrew (old)","Hindi","Hungarian","Icelandic","IciBemba","Igbo","Indonesian","Irish","Italian","Japanese","Kannada","Kazakh","Khmer","Kinyarwanda","Kirundi","Kongo","Korean","Kreol Seselwa","Kreol morisien","Krio","Kurdish","Kyrgyz","Lao","Latvian","Lingala","Lithuanian","Luo","Macedonian","Malagasy","Malay","Malayam","Maltese","Maori","Marathi","Mongolian","Montenegro","Nepali","Northern Sotho","Norwegian","Nyankole","Oromo","Pashto","Pidgin","Polish","Portuguese","Portuguese (Brazil)","Portuguese (Portugal)","Punjabi","Quechua","Romanian","Romansh","Russian","Serbian","Serbian (Latin)","Sesotho","Shona","Silozi","Sindhi","Sinhalese","Slovak","Slovenian","Somali","Spanish","Swahili","Swedish","Tagalog","Tajik","Tamil","Telugu","Thai","Tigrinya","Tonga (Tonga Islands)","Tshiluba","Tswana","Tumbuka","Turkish","Turkmen","Ukrainian","Urdu","Uzbek","Vietnamese","Welsh","Wolof","Xhosa","Yoruba","Zulu"],"title":"Language","default":"English"},"limit":{"type":"integer","maximum":100.0,"minimum":1.0,"title":"Limit","default":10},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["domain"],"title":"SeoDomainOverviewRequest","description":"Domain organic visibility, ranked keywords, and competitor snapshot."},"SeoGoogleQaRequest":{"properties":{"keyword":{"type":"string","maxLength":255,"minLength":1,"title":"Keyword"},"location":{"type":"string","enum":["Afghanistan","Albania","Algeria","American Samoa","Andorra","Angola","Antarctica","Antigua and Barbuda","Argentina","Armenia","Australia","Austria","Azerbaijan","Bahrain","Bangladesh","Barbados","Belgium","Belize","Benin","Bhutan","Bolivia","Bosnia and Herzegovina","Botswana","Brazil","Brunei","Bulgaria","Burkina Faso","Burundi","Cabo Verde","Cambodia","Cameroon","Canada","Caribbean Netherlands","Central African Republic","Chad","Chile","China","Christmas Island","Cocos (Keeling) Islands","Colombia","Comoros","Cook Islands","Costa Rica","Cote d'Ivoire","Croatia","Curacao","Cyprus","Czechia","Democratic Republic of the Congo","Denmark","Djibouti","Dominica","Dominican Republic","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Eswatini","Ethiopia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Greece","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Honduras","Hungary","Iceland","India","Indonesia","Iraq","Ireland","Isle of Man","Israel","Italy","Jamaica","Japan","Jersey","Jordan","Kazakhstan","Kenya","Kiribati","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Marshall Islands","Mauritania","Mauritius","Mexico","Micronesia","Moldova","Monaco","Mongolia","Montenegro","Morocco","Mozambique","Myanmar (Burma)","Namibia","Nauru","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue","Norfolk Island","North Macedonia","Northern Mariana Islands","Norway","Oman","Pakistan","Palau","Panama","Papua New Guinea","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal","Qatar","Republic of the Congo","Romania","Rwanda","Saint Helena, Ascension and Tristan da Cunha","Saint Kitts and Nevis","Saint Lucia","Saint Martin","Saint Pierre and Miquelon","Saint Vincent and the Grenadines","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles","Sierra Leone","Singapore","Sint Maarten","Slovakia","Slovenia","Solomon Islands","Somalia","South Africa","South Georgia and the South Sandwich Islands","South Korea","Spain","Sri Lanka","Suriname","Sweden","Switzerland","Tajikistan","Tanzania","Thailand","The Bahamas","The Gambia","Timor-Leste","Togo","Tokelau","Tonga","Trinidad and Tobago","Tunisia","Turkiye","Turkmenistan","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","United States","United States Minor Outlying Islands","Uruguay","Uzbekistan","Vanuatu","Vatican City","Venezuela","Vietnam","Wallis and Futuna","Yemen","Zambia","Zimbabwe"],"title":"Location","default":"United States"},"language":{"type":"string","enum":["Afrikaans","Akan","Albanian","Amharic","Arabic","Armenian","Azeri","Balinese","Basque","Belarusian","Bengali","Bosnian","Bulgarian","Burmese","Catalan","Cebuano","Chichewa","Chinese (Simplified)","Chinese (Traditional)","Croatian","Czech","Danish","Dutch","English","Espanol (Latinoamerica)","Estonian","Ewe","Faroese","Farsi","Filipino","Finnish","French","Frisian","Ga","Galician","Ganda","Georgian","German","Greek","Gujarati","Haitian","Hausa","Hebrew","Hebrew (old)","Hindi","Hungarian","Icelandic","IciBemba","Igbo","Indonesian","Irish","Italian","Japanese","Kannada","Kazakh","Khmer","Kinyarwanda","Kirundi","Kongo","Korean","Kreol Seselwa","Kreol morisien","Krio","Kurdish","Kyrgyz","Lao","Latvian","Lingala","Lithuanian","Luo","Macedonian","Malagasy","Malay","Malayam","Maltese","Maori","Marathi","Mongolian","Montenegro","Nepali","Northern Sotho","Norwegian","Nyankole","Oromo","Pashto","Pidgin","Polish","Portuguese","Portuguese (Brazil)","Portuguese (Portugal)","Punjabi","Quechua","Romanian","Romansh","Russian","Serbian","Serbian (Latin)","Sesotho","Shona","Silozi","Sindhi","Sinhalese","Slovak","Slovenian","Somali","Spanish","Swahili","Swedish","Tagalog","Tajik","Tamil","Telugu","Thai","Tigrinya","Tonga (Tonga Islands)","Tshiluba","Tswana","Tumbuka","Turkish","Turkmen","Ukrainian","Urdu","Uzbek","Vietnamese","Welsh","Wolof","Xhosa","Yoruba","Zulu"],"title":"Language","default":"English"},"depth":{"type":"integer","maximum":50.0,"minimum":1.0,"title":"Depth","default":20},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["keyword"],"title":"SeoGoogleQaRequest","description":"Google Business Questions and Answers live lookup."},"SeoGoogleSerpRequest":{"properties":{"keyword":{"type":"string","maxLength":500,"minLength":1,"title":"Keyword"},"location":{"type":"string","enum":["Afghanistan","Albania","Algeria","American Samoa","Andorra","Angola","Antarctica","Antigua and Barbuda","Argentina","Armenia","Australia","Austria","Azerbaijan","Bahrain","Bangladesh","Barbados","Belgium","Belize","Benin","Bhutan","Bolivia","Bosnia and Herzegovina","Botswana","Brazil","Brunei","Bulgaria","Burkina Faso","Burundi","Cabo Verde","Cambodia","Cameroon","Canada","Caribbean Netherlands","Central African Republic","Chad","Chile","China","Christmas Island","Cocos (Keeling) Islands","Colombia","Comoros","Cook Islands","Costa Rica","Cote d'Ivoire","Croatia","Curacao","Cyprus","Czechia","Democratic Republic of the Congo","Denmark","Djibouti","Dominica","Dominican Republic","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Eswatini","Ethiopia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Greece","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Honduras","Hungary","Iceland","India","Indonesia","Iraq","Ireland","Isle of Man","Israel","Italy","Jamaica","Japan","Jersey","Jordan","Kazakhstan","Kenya","Kiribati","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Marshall Islands","Mauritania","Mauritius","Mexico","Micronesia","Moldova","Monaco","Mongolia","Montenegro","Morocco","Mozambique","Myanmar (Burma)","Namibia","Nauru","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue","Norfolk Island","North Macedonia","Northern Mariana Islands","Norway","Oman","Pakistan","Palau","Panama","Papua New Guinea","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal","Qatar","Republic of the Congo","Romania","Rwanda","Saint Helena, Ascension and Tristan da Cunha","Saint Kitts and Nevis","Saint Lucia","Saint Martin","Saint Pierre and Miquelon","Saint Vincent and the Grenadines","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles","Sierra Leone","Singapore","Sint Maarten","Slovakia","Slovenia","Solomon Islands","Somalia","South Africa","South Georgia and the South Sandwich Islands","South Korea","Spain","Sri Lanka","Suriname","Sweden","Switzerland","Tajikistan","Tanzania","Thailand","The Bahamas","The Gambia","Timor-Leste","Togo","Tokelau","Tonga","Trinidad and Tobago","Tunisia","Turkiye","Turkmenistan","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","United States","United States Minor Outlying Islands","Uruguay","Uzbekistan","Vanuatu","Vatican City","Venezuela","Vietnam","Wallis and Futuna","Yemen","Zambia","Zimbabwe"],"title":"Location","default":"United States"},"language":{"type":"string","enum":["Afrikaans","Akan","Albanian","Amharic","Arabic","Armenian","Azeri","Balinese","Basque","Belarusian","Bengali","Bosnian","Bulgarian","Burmese","Catalan","Cebuano","Chichewa","Chinese (Simplified)","Chinese (Traditional)","Croatian","Czech","Danish","Dutch","English","Espanol (Latinoamerica)","Estonian","Ewe","Faroese","Farsi","Filipino","Finnish","French","Frisian","Ga","Galician","Ganda","Georgian","German","Greek","Gujarati","Haitian","Hausa","Hebrew","Hebrew (old)","Hindi","Hungarian","Icelandic","IciBemba","Igbo","Indonesian","Irish","Italian","Japanese","Kannada","Kazakh","Khmer","Kinyarwanda","Kirundi","Kongo","Korean","Kreol Seselwa","Kreol morisien","Krio","Kurdish","Kyrgyz","Lao","Latvian","Lingala","Lithuanian","Luo","Macedonian","Malagasy","Malay","Malayam","Maltese","Maori","Marathi","Mongolian","Montenegro","Nepali","Northern Sotho","Norwegian","Nyankole","Oromo","Pashto","Pidgin","Polish","Portuguese","Portuguese (Brazil)","Portuguese (Portugal)","Punjabi","Quechua","Romanian","Romansh","Russian","Serbian","Serbian (Latin)","Sesotho","Shona","Silozi","Sindhi","Sinhalese","Slovak","Slovenian","Somali","Spanish","Swahili","Swedish","Tagalog","Tajik","Tamil","Telugu","Thai","Tigrinya","Tonga (Tonga Islands)","Tshiluba","Tswana","Tumbuka","Turkish","Turkmen","Ukrainian","Urdu","Uzbek","Vietnamese","Welsh","Wolof","Xhosa","Yoruba","Zulu"],"title":"Language","default":"English"},"device":{"type":"string","enum":["desktop","mobile"],"title":"Device","default":"desktop"},"depth":{"type":"integer","multipleOf":10.0,"maximum":100.0,"minimum":10.0,"title":"Depth","default":10},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["keyword"],"title":"SeoGoogleSerpRequest","description":"One queued Google Organic SERP lookup."},"SeoKeywordOverviewRequest":{"properties":{"keywords":{"items":{"type":"string"},"type":"array","maxItems":50,"minItems":1,"title":"Keywords"},"location":{"type":"string","enum":["Afghanistan","Albania","Algeria","American Samoa","Andorra","Angola","Antarctica","Antigua and Barbuda","Argentina","Armenia","Australia","Austria","Azerbaijan","Bahrain","Bangladesh","Barbados","Belgium","Belize","Benin","Bhutan","Bolivia","Bosnia and Herzegovina","Botswana","Brazil","Brunei","Bulgaria","Burkina Faso","Burundi","Cabo Verde","Cambodia","Cameroon","Canada","Caribbean Netherlands","Central African Republic","Chad","Chile","China","Christmas Island","Cocos (Keeling) Islands","Colombia","Comoros","Cook Islands","Costa Rica","Cote d'Ivoire","Croatia","Curacao","Cyprus","Czechia","Democratic Republic of the Congo","Denmark","Djibouti","Dominica","Dominican Republic","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Eswatini","Ethiopia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Greece","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Honduras","Hungary","Iceland","India","Indonesia","Iraq","Ireland","Isle of Man","Israel","Italy","Jamaica","Japan","Jersey","Jordan","Kazakhstan","Kenya","Kiribati","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Marshall Islands","Mauritania","Mauritius","Mexico","Micronesia","Moldova","Monaco","Mongolia","Montenegro","Morocco","Mozambique","Myanmar (Burma)","Namibia","Nauru","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue","Norfolk Island","North Macedonia","Northern Mariana Islands","Norway","Oman","Pakistan","Palau","Panama","Papua New Guinea","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal","Qatar","Republic of the Congo","Romania","Rwanda","Saint Helena, Ascension and Tristan da Cunha","Saint Kitts and Nevis","Saint Lucia","Saint Martin","Saint Pierre and Miquelon","Saint Vincent and the Grenadines","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles","Sierra Leone","Singapore","Sint Maarten","Slovakia","Slovenia","Solomon Islands","Somalia","South Africa","South Georgia and the South Sandwich Islands","South Korea","Spain","Sri Lanka","Suriname","Sweden","Switzerland","Tajikistan","Tanzania","Thailand","The Bahamas","The Gambia","Timor-Leste","Togo","Tokelau","Tonga","Trinidad and Tobago","Tunisia","Turkiye","Turkmenistan","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","United States","United States Minor Outlying Islands","Uruguay","Uzbekistan","Vanuatu","Vatican City","Venezuela","Vietnam","Wallis and Futuna","Yemen","Zambia","Zimbabwe"],"title":"Location","default":"United States"},"language":{"type":"string","enum":["Afrikaans","Akan","Albanian","Amharic","Arabic","Armenian","Azeri","Balinese","Basque","Belarusian","Bengali","Bosnian","Bulgarian","Burmese","Catalan","Cebuano","Chichewa","Chinese (Simplified)","Chinese (Traditional)","Croatian","Czech","Danish","Dutch","English","Espanol (Latinoamerica)","Estonian","Ewe","Faroese","Farsi","Filipino","Finnish","French","Frisian","Ga","Galician","Ganda","Georgian","German","Greek","Gujarati","Haitian","Hausa","Hebrew","Hebrew (old)","Hindi","Hungarian","Icelandic","IciBemba","Igbo","Indonesian","Irish","Italian","Japanese","Kannada","Kazakh","Khmer","Kinyarwanda","Kirundi","Kongo","Korean","Kreol Seselwa","Kreol morisien","Krio","Kurdish","Kyrgyz","Lao","Latvian","Lingala","Lithuanian","Luo","Macedonian","Malagasy","Malay","Malayam","Maltese","Maori","Marathi","Mongolian","Montenegro","Nepali","Northern Sotho","Norwegian","Nyankole","Oromo","Pashto","Pidgin","Polish","Portuguese","Portuguese (Brazil)","Portuguese (Portugal)","Punjabi","Quechua","Romanian","Romansh","Russian","Serbian","Serbian (Latin)","Sesotho","Shona","Silozi","Sindhi","Sinhalese","Slovak","Slovenian","Somali","Spanish","Swahili","Swedish","Tagalog","Tajik","Tamil","Telugu","Thai","Tigrinya","Tonga (Tonga Islands)","Tshiluba","Tswana","Tumbuka","Turkish","Turkmen","Ukrainian","Urdu","Uzbek","Vietnamese","Welsh","Wolof","Xhosa","Yoruba","Zulu"],"title":"Language","default":"English"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["keywords"],"title":"SeoKeywordOverviewRequest","description":"DataForSEO Labs keyword metrics and search overview for up to 50 keywords."},"SeoKeywordResearchRequest":{"properties":{"keyword":{"type":"string","maxLength":500,"minLength":1,"title":"Keyword"},"location":{"type":"string","enum":["Afghanistan","Albania","Algeria","American Samoa","Andorra","Angola","Antarctica","Antigua and Barbuda","Argentina","Armenia","Australia","Austria","Azerbaijan","Bahrain","Bangladesh","Barbados","Belgium","Belize","Benin","Bhutan","Bolivia","Bosnia and Herzegovina","Botswana","Brazil","Brunei","Bulgaria","Burkina Faso","Burundi","Cabo Verde","Cambodia","Cameroon","Canada","Caribbean Netherlands","Central African Republic","Chad","Chile","China","Christmas Island","Cocos (Keeling) Islands","Colombia","Comoros","Cook Islands","Costa Rica","Cote d'Ivoire","Croatia","Curacao","Cyprus","Czechia","Democratic Republic of the Congo","Denmark","Djibouti","Dominica","Dominican Republic","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Eswatini","Ethiopia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Greece","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Honduras","Hungary","Iceland","India","Indonesia","Iraq","Ireland","Isle of Man","Israel","Italy","Jamaica","Japan","Jersey","Jordan","Kazakhstan","Kenya","Kiribati","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Marshall Islands","Mauritania","Mauritius","Mexico","Micronesia","Moldova","Monaco","Mongolia","Montenegro","Morocco","Mozambique","Myanmar (Burma)","Namibia","Nauru","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue","Norfolk Island","North Macedonia","Northern Mariana Islands","Norway","Oman","Pakistan","Palau","Panama","Papua New Guinea","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal","Qatar","Republic of the Congo","Romania","Rwanda","Saint Helena, Ascension and Tristan da Cunha","Saint Kitts and Nevis","Saint Lucia","Saint Martin","Saint Pierre and Miquelon","Saint Vincent and the Grenadines","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles","Sierra Leone","Singapore","Sint Maarten","Slovakia","Slovenia","Solomon Islands","Somalia","South Africa","South Georgia and the South Sandwich Islands","South Korea","Spain","Sri Lanka","Suriname","Sweden","Switzerland","Tajikistan","Tanzania","Thailand","The Bahamas","The Gambia","Timor-Leste","Togo","Tokelau","Tonga","Trinidad and Tobago","Tunisia","Turkiye","Turkmenistan","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","United States","United States Minor Outlying Islands","Uruguay","Uzbekistan","Vanuatu","Vatican City","Venezuela","Vietnam","Wallis and Futuna","Yemen","Zambia","Zimbabwe"],"title":"Location","default":"United States"},"language":{"type":"string","enum":["Afrikaans","Akan","Albanian","Amharic","Arabic","Armenian","Azeri","Balinese","Basque","Belarusian","Bengali","Bosnian","Bulgarian","Burmese","Catalan","Cebuano","Chichewa","Chinese (Simplified)","Chinese (Traditional)","Croatian","Czech","Danish","Dutch","English","Espanol (Latinoamerica)","Estonian","Ewe","Faroese","Farsi","Filipino","Finnish","French","Frisian","Ga","Galician","Ganda","Georgian","German","Greek","Gujarati","Haitian","Hausa","Hebrew","Hebrew (old)","Hindi","Hungarian","Icelandic","IciBemba","Igbo","Indonesian","Irish","Italian","Japanese","Kannada","Kazakh","Khmer","Kinyarwanda","Kirundi","Kongo","Korean","Kreol Seselwa","Kreol morisien","Krio","Kurdish","Kyrgyz","Lao","Latvian","Lingala","Lithuanian","Luo","Macedonian","Malagasy","Malay","Malayam","Maltese","Maori","Marathi","Mongolian","Montenegro","Nepali","Northern Sotho","Norwegian","Nyankole","Oromo","Pashto","Pidgin","Polish","Portuguese","Portuguese (Brazil)","Portuguese (Portugal)","Punjabi","Quechua","Romanian","Romansh","Russian","Serbian","Serbian (Latin)","Sesotho","Shona","Silozi","Sindhi","Sinhalese","Slovak","Slovenian","Somali","Spanish","Swahili","Swedish","Tagalog","Tajik","Tamil","Telugu","Thai","Tigrinya","Tonga (Tonga Islands)","Tshiluba","Tswana","Tumbuka","Turkish","Turkmen","Ukrainian","Urdu","Uzbek","Vietnamese","Welsh","Wolof","Xhosa","Yoruba","Zulu"],"title":"Language","default":"English"},"limit":{"type":"integer","maximum":100.0,"minimum":1.0,"title":"Limit","default":10},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["keyword"],"title":"SeoKeywordResearchRequest","description":"Keyword research and search intent lookup."},"SeoKeywordsForKeywordsRequest":{"properties":{"keywords":{"items":{"type":"string"},"type":"array","maxItems":10,"minItems":1,"title":"Keywords"},"location":{"type":"string","enum":["Afghanistan","Albania","Algeria","American Samoa","Andorra","Angola","Antarctica","Antigua and Barbuda","Argentina","Armenia","Australia","Austria","Azerbaijan","Bahrain","Bangladesh","Barbados","Belgium","Belize","Benin","Bhutan","Bolivia","Bosnia and Herzegovina","Botswana","Brazil","Brunei","Bulgaria","Burkina Faso","Burundi","Cabo Verde","Cambodia","Cameroon","Canada","Caribbean Netherlands","Central African Republic","Chad","Chile","China","Christmas Island","Cocos (Keeling) Islands","Colombia","Comoros","Cook Islands","Costa Rica","Cote d'Ivoire","Croatia","Curacao","Cyprus","Czechia","Democratic Republic of the Congo","Denmark","Djibouti","Dominica","Dominican Republic","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Eswatini","Ethiopia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Greece","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Honduras","Hungary","Iceland","India","Indonesia","Iraq","Ireland","Isle of Man","Israel","Italy","Jamaica","Japan","Jersey","Jordan","Kazakhstan","Kenya","Kiribati","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Marshall Islands","Mauritania","Mauritius","Mexico","Micronesia","Moldova","Monaco","Mongolia","Montenegro","Morocco","Mozambique","Myanmar (Burma)","Namibia","Nauru","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue","Norfolk Island","North Macedonia","Northern Mariana Islands","Norway","Oman","Pakistan","Palau","Panama","Papua New Guinea","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal","Qatar","Republic of the Congo","Romania","Rwanda","Saint Helena, Ascension and Tristan da Cunha","Saint Kitts and Nevis","Saint Lucia","Saint Martin","Saint Pierre and Miquelon","Saint Vincent and the Grenadines","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles","Sierra Leone","Singapore","Sint Maarten","Slovakia","Slovenia","Solomon Islands","Somalia","South Africa","South Georgia and the South Sandwich Islands","South Korea","Spain","Sri Lanka","Suriname","Sweden","Switzerland","Tajikistan","Tanzania","Thailand","The Bahamas","The Gambia","Timor-Leste","Togo","Tokelau","Tonga","Trinidad and Tobago","Tunisia","Turkiye","Turkmenistan","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","United States","United States Minor Outlying Islands","Uruguay","Uzbekistan","Vanuatu","Vatican City","Venezuela","Vietnam","Wallis and Futuna","Yemen","Zambia","Zimbabwe"],"title":"Location","default":"United States"},"language":{"type":"string","enum":["Afrikaans","Akan","Albanian","Amharic","Arabic","Armenian","Azeri","Balinese","Basque","Belarusian","Bengali","Bosnian","Bulgarian","Burmese","Catalan","Cebuano","Chichewa","Chinese (Simplified)","Chinese (Traditional)","Croatian","Czech","Danish","Dutch","English","Espanol (Latinoamerica)","Estonian","Ewe","Faroese","Farsi","Filipino","Finnish","French","Frisian","Ga","Galician","Ganda","Georgian","German","Greek","Gujarati","Haitian","Hausa","Hebrew","Hebrew (old)","Hindi","Hungarian","Icelandic","IciBemba","Igbo","Indonesian","Irish","Italian","Japanese","Kannada","Kazakh","Khmer","Kinyarwanda","Kirundi","Kongo","Korean","Kreol Seselwa","Kreol morisien","Krio","Kurdish","Kyrgyz","Lao","Latvian","Lingala","Lithuanian","Luo","Macedonian","Malagasy","Malay","Malayam","Maltese","Maori","Marathi","Mongolian","Montenegro","Nepali","Northern Sotho","Norwegian","Nyankole","Oromo","Pashto","Pidgin","Polish","Portuguese","Portuguese (Brazil)","Portuguese (Portugal)","Punjabi","Quechua","Romanian","Romansh","Russian","Serbian","Serbian (Latin)","Sesotho","Shona","Silozi","Sindhi","Sinhalese","Slovak","Slovenian","Somali","Spanish","Swahili","Swedish","Tagalog","Tajik","Tamil","Telugu","Thai","Tigrinya","Tonga (Tonga Islands)","Tshiluba","Tswana","Tumbuka","Turkish","Turkmen","Ukrainian","Urdu","Uzbek","Vietnamese","Welsh","Wolof","Xhosa","Yoruba","Zulu"],"title":"Language","default":"English"},"limit":{"type":"integer","maximum":100.0,"minimum":1.0,"title":"Limit","default":10},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["keywords"],"title":"SeoKeywordsForKeywordsRequest","description":"Google Ads keyword suggestions and expansions based on seed keywords."},"SeoKeywordsSearchVolumeRequest":{"properties":{"keywords":{"items":{"type":"string"},"type":"array","maxItems":100,"minItems":1,"title":"Keywords"},"location":{"type":"string","enum":["Afghanistan","Albania","Algeria","American Samoa","Andorra","Angola","Antarctica","Antigua and Barbuda","Argentina","Armenia","Australia","Austria","Azerbaijan","Bahrain","Bangladesh","Barbados","Belgium","Belize","Benin","Bhutan","Bolivia","Bosnia and Herzegovina","Botswana","Brazil","Brunei","Bulgaria","Burkina Faso","Burundi","Cabo Verde","Cambodia","Cameroon","Canada","Caribbean Netherlands","Central African Republic","Chad","Chile","China","Christmas Island","Cocos (Keeling) Islands","Colombia","Comoros","Cook Islands","Costa Rica","Cote d'Ivoire","Croatia","Curacao","Cyprus","Czechia","Democratic Republic of the Congo","Denmark","Djibouti","Dominica","Dominican Republic","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Eswatini","Ethiopia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Greece","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Honduras","Hungary","Iceland","India","Indonesia","Iraq","Ireland","Isle of Man","Israel","Italy","Jamaica","Japan","Jersey","Jordan","Kazakhstan","Kenya","Kiribati","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Marshall Islands","Mauritania","Mauritius","Mexico","Micronesia","Moldova","Monaco","Mongolia","Montenegro","Morocco","Mozambique","Myanmar (Burma)","Namibia","Nauru","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue","Norfolk Island","North Macedonia","Northern Mariana Islands","Norway","Oman","Pakistan","Palau","Panama","Papua New Guinea","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal","Qatar","Republic of the Congo","Romania","Rwanda","Saint Helena, Ascension and Tristan da Cunha","Saint Kitts and Nevis","Saint Lucia","Saint Martin","Saint Pierre and Miquelon","Saint Vincent and the Grenadines","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles","Sierra Leone","Singapore","Sint Maarten","Slovakia","Slovenia","Solomon Islands","Somalia","South Africa","South Georgia and the South Sandwich Islands","South Korea","Spain","Sri Lanka","Suriname","Sweden","Switzerland","Tajikistan","Tanzania","Thailand","The Bahamas","The Gambia","Timor-Leste","Togo","Tokelau","Tonga","Trinidad and Tobago","Tunisia","Turkiye","Turkmenistan","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","United States","United States Minor Outlying Islands","Uruguay","Uzbekistan","Vanuatu","Vatican City","Venezuela","Vietnam","Wallis and Futuna","Yemen","Zambia","Zimbabwe"],"title":"Location","default":"United States"},"language":{"type":"string","enum":["Afrikaans","Akan","Albanian","Amharic","Arabic","Armenian","Azeri","Balinese","Basque","Belarusian","Bengali","Bosnian","Bulgarian","Burmese","Catalan","Cebuano","Chichewa","Chinese (Simplified)","Chinese (Traditional)","Croatian","Czech","Danish","Dutch","English","Espanol (Latinoamerica)","Estonian","Ewe","Faroese","Farsi","Filipino","Finnish","French","Frisian","Ga","Galician","Ganda","Georgian","German","Greek","Gujarati","Haitian","Hausa","Hebrew","Hebrew (old)","Hindi","Hungarian","Icelandic","IciBemba","Igbo","Indonesian","Irish","Italian","Japanese","Kannada","Kazakh","Khmer","Kinyarwanda","Kirundi","Kongo","Korean","Kreol Seselwa","Kreol morisien","Krio","Kurdish","Kyrgyz","Lao","Latvian","Lingala","Lithuanian","Luo","Macedonian","Malagasy","Malay","Malayam","Maltese","Maori","Marathi","Mongolian","Montenegro","Nepali","Northern Sotho","Norwegian","Nyankole","Oromo","Pashto","Pidgin","Polish","Portuguese","Portuguese (Brazil)","Portuguese (Portugal)","Punjabi","Quechua","Romanian","Romansh","Russian","Serbian","Serbian (Latin)","Sesotho","Shona","Silozi","Sindhi","Sinhalese","Slovak","Slovenian","Somali","Spanish","Swahili","Swedish","Tagalog","Tajik","Tamil","Telugu","Thai","Tigrinya","Tonga (Tonga Islands)","Tshiluba","Tswana","Tumbuka","Turkish","Turkmen","Ukrainian","Urdu","Uzbek","Vietnamese","Welsh","Wolof","Xhosa","Yoruba","Zulu"],"title":"Language","default":"English"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["keywords"],"title":"SeoKeywordsSearchVolumeRequest","description":"Google Ads search volume, competition, and bid lookup for up to 100 keywords."},"SeoLighthouseAuditRequest":{"properties":{"url":{"type":"string","maxLength":2000,"minLength":3,"title":"Url"},"device":{"type":"string","enum":["desktop","mobile"],"title":"Device","default":"desktop"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["url"],"title":"SeoLighthouseAuditRequest","description":"Lighthouse website audit for Core Web Vitals, performance, accessibility, and SEO."},"SeoLocalSerpRequest":{"properties":{"keyword":{"type":"string","maxLength":500,"minLength":1,"title":"Keyword"},"location":{"type":"string","enum":["Afghanistan","Albania","Algeria","American Samoa","Andorra","Angola","Antarctica","Antigua and Barbuda","Argentina","Armenia","Australia","Austria","Azerbaijan","Bahrain","Bangladesh","Barbados","Belgium","Belize","Benin","Bhutan","Bolivia","Bosnia and Herzegovina","Botswana","Brazil","Brunei","Bulgaria","Burkina Faso","Burundi","Cabo Verde","Cambodia","Cameroon","Canada","Caribbean Netherlands","Central African Republic","Chad","Chile","China","Christmas Island","Cocos (Keeling) Islands","Colombia","Comoros","Cook Islands","Costa Rica","Cote d'Ivoire","Croatia","Curacao","Cyprus","Czechia","Democratic Republic of the Congo","Denmark","Djibouti","Dominica","Dominican Republic","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Eswatini","Ethiopia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Greece","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Honduras","Hungary","Iceland","India","Indonesia","Iraq","Ireland","Isle of Man","Israel","Italy","Jamaica","Japan","Jersey","Jordan","Kazakhstan","Kenya","Kiribati","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Marshall Islands","Mauritania","Mauritius","Mexico","Micronesia","Moldova","Monaco","Mongolia","Montenegro","Morocco","Mozambique","Myanmar (Burma)","Namibia","Nauru","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue","Norfolk Island","North Macedonia","Northern Mariana Islands","Norway","Oman","Pakistan","Palau","Panama","Papua New Guinea","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal","Qatar","Republic of the Congo","Romania","Rwanda","Saint Helena, Ascension and Tristan da Cunha","Saint Kitts and Nevis","Saint Lucia","Saint Martin","Saint Pierre and Miquelon","Saint Vincent and the Grenadines","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles","Sierra Leone","Singapore","Sint Maarten","Slovakia","Slovenia","Solomon Islands","Somalia","South Africa","South Georgia and the South Sandwich Islands","South Korea","Spain","Sri Lanka","Suriname","Sweden","Switzerland","Tajikistan","Tanzania","Thailand","The Bahamas","The Gambia","Timor-Leste","Togo","Tokelau","Tonga","Trinidad and Tobago","Tunisia","Turkiye","Turkmenistan","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","United States","United States Minor Outlying Islands","Uruguay","Uzbekistan","Vanuatu","Vatican City","Venezuela","Vietnam","Wallis and Futuna","Yemen","Zambia","Zimbabwe"],"title":"Location","default":"United States"},"language":{"type":"string","enum":["Afrikaans","Akan","Albanian","Amharic","Arabic","Armenian","Azeri","Balinese","Basque","Belarusian","Bengali","Bosnian","Bulgarian","Burmese","Catalan","Cebuano","Chichewa","Chinese (Simplified)","Chinese (Traditional)","Croatian","Czech","Danish","Dutch","English","Espanol (Latinoamerica)","Estonian","Ewe","Faroese","Farsi","Filipino","Finnish","French","Frisian","Ga","Galician","Ganda","Georgian","German","Greek","Gujarati","Haitian","Hausa","Hebrew","Hebrew (old)","Hindi","Hungarian","Icelandic","IciBemba","Igbo","Indonesian","Irish","Italian","Japanese","Kannada","Kazakh","Khmer","Kinyarwanda","Kirundi","Kongo","Korean","Kreol Seselwa","Kreol morisien","Krio","Kurdish","Kyrgyz","Lao","Latvian","Lingala","Lithuanian","Luo","Macedonian","Malagasy","Malay","Malayam","Maltese","Maori","Marathi","Mongolian","Montenegro","Nepali","Northern Sotho","Norwegian","Nyankole","Oromo","Pashto","Pidgin","Polish","Portuguese","Portuguese (Brazil)","Portuguese (Portugal)","Punjabi","Quechua","Romanian","Romansh","Russian","Serbian","Serbian (Latin)","Sesotho","Shona","Silozi","Sindhi","Sinhalese","Slovak","Slovenian","Somali","Spanish","Swahili","Swedish","Tagalog","Tajik","Tamil","Telugu","Thai","Tigrinya","Tonga (Tonga Islands)","Tshiluba","Tswana","Tumbuka","Turkish","Turkmen","Ukrainian","Urdu","Uzbek","Vietnamese","Welsh","Wolof","Xhosa","Yoruba","Zulu"],"title":"Language","default":"English"},"depth":{"type":"integer","multipleOf":10.0,"maximum":100.0,"minimum":10.0,"title":"Depth","default":20},"search_type":{"type":"string","enum":["maps","local_finder"],"title":"Search Type","default":"maps"},"device":{"type":"string","enum":["desktop","mobile"],"title":"Device","default":"desktop"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["keyword"],"title":"SeoLocalSerpRequest","description":"Google Maps and Local Finder search for local business rankings and details."},"SeoRankTrackBatchRequest":{"properties":{"keywords":{"items":{"type":"string"},"type":"array","maxItems":50,"minItems":1,"title":"Keywords"},"target_domain":{"anyOf":[{"type":"string","maxLength":255},{"type":"null"}],"title":"Target Domain"},"location":{"type":"string","enum":["Afghanistan","Albania","Algeria","American Samoa","Andorra","Angola","Antarctica","Antigua and Barbuda","Argentina","Armenia","Australia","Austria","Azerbaijan","Bahrain","Bangladesh","Barbados","Belgium","Belize","Benin","Bhutan","Bolivia","Bosnia and Herzegovina","Botswana","Brazil","Brunei","Bulgaria","Burkina Faso","Burundi","Cabo Verde","Cambodia","Cameroon","Canada","Caribbean Netherlands","Central African Republic","Chad","Chile","China","Christmas Island","Cocos (Keeling) Islands","Colombia","Comoros","Cook Islands","Costa Rica","Cote d'Ivoire","Croatia","Curacao","Cyprus","Czechia","Democratic Republic of the Congo","Denmark","Djibouti","Dominica","Dominican Republic","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Eswatini","Ethiopia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Greece","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Honduras","Hungary","Iceland","India","Indonesia","Iraq","Ireland","Isle of Man","Israel","Italy","Jamaica","Japan","Jersey","Jordan","Kazakhstan","Kenya","Kiribati","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Marshall Islands","Mauritania","Mauritius","Mexico","Micronesia","Moldova","Monaco","Mongolia","Montenegro","Morocco","Mozambique","Myanmar (Burma)","Namibia","Nauru","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue","Norfolk Island","North Macedonia","Northern Mariana Islands","Norway","Oman","Pakistan","Palau","Panama","Papua New Guinea","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal","Qatar","Republic of the Congo","Romania","Rwanda","Saint Helena, Ascension and Tristan da Cunha","Saint Kitts and Nevis","Saint Lucia","Saint Martin","Saint Pierre and Miquelon","Saint Vincent and the Grenadines","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles","Sierra Leone","Singapore","Sint Maarten","Slovakia","Slovenia","Solomon Islands","Somalia","South Africa","South Georgia and the South Sandwich Islands","South Korea","Spain","Sri Lanka","Suriname","Sweden","Switzerland","Tajikistan","Tanzania","Thailand","The Bahamas","The Gambia","Timor-Leste","Togo","Tokelau","Tonga","Trinidad and Tobago","Tunisia","Turkiye","Turkmenistan","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","United States","United States Minor Outlying Islands","Uruguay","Uzbekistan","Vanuatu","Vatican City","Venezuela","Vietnam","Wallis and Futuna","Yemen","Zambia","Zimbabwe"],"title":"Location","default":"United States"},"language":{"type":"string","enum":["Afrikaans","Akan","Albanian","Amharic","Arabic","Armenian","Azeri","Balinese","Basque","Belarusian","Bengali","Bosnian","Bulgarian","Burmese","Catalan","Cebuano","Chichewa","Chinese (Simplified)","Chinese (Traditional)","Croatian","Czech","Danish","Dutch","English","Espanol (Latinoamerica)","Estonian","Ewe","Faroese","Farsi","Filipino","Finnish","French","Frisian","Ga","Galician","Ganda","Georgian","German","Greek","Gujarati","Haitian","Hausa","Hebrew","Hebrew (old)","Hindi","Hungarian","Icelandic","IciBemba","Igbo","Indonesian","Irish","Italian","Japanese","Kannada","Kazakh","Khmer","Kinyarwanda","Kirundi","Kongo","Korean","Kreol Seselwa","Kreol morisien","Krio","Kurdish","Kyrgyz","Lao","Latvian","Lingala","Lithuanian","Luo","Macedonian","Malagasy","Malay","Malayam","Maltese","Maori","Marathi","Mongolian","Montenegro","Nepali","Northern Sotho","Norwegian","Nyankole","Oromo","Pashto","Pidgin","Polish","Portuguese","Portuguese (Brazil)","Portuguese (Portugal)","Punjabi","Quechua","Romanian","Romansh","Russian","Serbian","Serbian (Latin)","Sesotho","Shona","Silozi","Sindhi","Sinhalese","Slovak","Slovenian","Somali","Spanish","Swahili","Swedish","Tagalog","Tajik","Tamil","Telugu","Thai","Tigrinya","Tonga (Tonga Islands)","Tshiluba","Tswana","Tumbuka","Turkish","Turkmen","Ukrainian","Urdu","Uzbek","Vietnamese","Welsh","Wolof","Xhosa","Yoruba","Zulu"],"title":"Language","default":"English"},"device":{"type":"string","enum":["desktop","mobile"],"title":"Device","default":"desktop"},"depth":{"type":"integer","multipleOf":10.0,"maximum":100.0,"minimum":10.0,"title":"Depth","default":10},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["keywords"],"title":"SeoRankTrackBatchRequest","description":"Batch Google organic search rank tracking across multiple keywords for a domain."},"SeoRankTrackRequest":{"properties":{"keyword":{"type":"string","maxLength":500,"minLength":1,"title":"Keyword"},"target_domain":{"anyOf":[{"type":"string","maxLength":255},{"type":"null"}],"title":"Target Domain"},"location":{"type":"string","enum":["Afghanistan","Albania","Algeria","American Samoa","Andorra","Angola","Antarctica","Antigua and Barbuda","Argentina","Armenia","Australia","Austria","Azerbaijan","Bahrain","Bangladesh","Barbados","Belgium","Belize","Benin","Bhutan","Bolivia","Bosnia and Herzegovina","Botswana","Brazil","Brunei","Bulgaria","Burkina Faso","Burundi","Cabo Verde","Cambodia","Cameroon","Canada","Caribbean Netherlands","Central African Republic","Chad","Chile","China","Christmas Island","Cocos (Keeling) Islands","Colombia","Comoros","Cook Islands","Costa Rica","Cote d'Ivoire","Croatia","Curacao","Cyprus","Czechia","Democratic Republic of the Congo","Denmark","Djibouti","Dominica","Dominican Republic","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Eswatini","Ethiopia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Greece","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Honduras","Hungary","Iceland","India","Indonesia","Iraq","Ireland","Isle of Man","Israel","Italy","Jamaica","Japan","Jersey","Jordan","Kazakhstan","Kenya","Kiribati","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Marshall Islands","Mauritania","Mauritius","Mexico","Micronesia","Moldova","Monaco","Mongolia","Montenegro","Morocco","Mozambique","Myanmar (Burma)","Namibia","Nauru","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue","Norfolk Island","North Macedonia","Northern Mariana Islands","Norway","Oman","Pakistan","Palau","Panama","Papua New Guinea","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal","Qatar","Republic of the Congo","Romania","Rwanda","Saint Helena, Ascension and Tristan da Cunha","Saint Kitts and Nevis","Saint Lucia","Saint Martin","Saint Pierre and Miquelon","Saint Vincent and the Grenadines","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles","Sierra Leone","Singapore","Sint Maarten","Slovakia","Slovenia","Solomon Islands","Somalia","South Africa","South Georgia and the South Sandwich Islands","South Korea","Spain","Sri Lanka","Suriname","Sweden","Switzerland","Tajikistan","Tanzania","Thailand","The Bahamas","The Gambia","Timor-Leste","Togo","Tokelau","Tonga","Trinidad and Tobago","Tunisia","Turkiye","Turkmenistan","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","United States","United States Minor Outlying Islands","Uruguay","Uzbekistan","Vanuatu","Vatican City","Venezuela","Vietnam","Wallis and Futuna","Yemen","Zambia","Zimbabwe"],"title":"Location","default":"United States"},"language":{"type":"string","enum":["Afrikaans","Akan","Albanian","Amharic","Arabic","Armenian","Azeri","Balinese","Basque","Belarusian","Bengali","Bosnian","Bulgarian","Burmese","Catalan","Cebuano","Chichewa","Chinese (Simplified)","Chinese (Traditional)","Croatian","Czech","Danish","Dutch","English","Espanol (Latinoamerica)","Estonian","Ewe","Faroese","Farsi","Filipino","Finnish","French","Frisian","Ga","Galician","Ganda","Georgian","German","Greek","Gujarati","Haitian","Hausa","Hebrew","Hebrew (old)","Hindi","Hungarian","Icelandic","IciBemba","Igbo","Indonesian","Irish","Italian","Japanese","Kannada","Kazakh","Khmer","Kinyarwanda","Kirundi","Kongo","Korean","Kreol Seselwa","Kreol morisien","Krio","Kurdish","Kyrgyz","Lao","Latvian","Lingala","Lithuanian","Luo","Macedonian","Malagasy","Malay","Malayam","Maltese","Maori","Marathi","Mongolian","Montenegro","Nepali","Northern Sotho","Norwegian","Nyankole","Oromo","Pashto","Pidgin","Polish","Portuguese","Portuguese (Brazil)","Portuguese (Portugal)","Punjabi","Quechua","Romanian","Romansh","Russian","Serbian","Serbian (Latin)","Sesotho","Shona","Silozi","Sindhi","Sinhalese","Slovak","Slovenian","Somali","Spanish","Swahili","Swedish","Tagalog","Tajik","Tamil","Telugu","Thai","Tigrinya","Tonga (Tonga Islands)","Tshiluba","Tswana","Tumbuka","Turkish","Turkmen","Ukrainian","Urdu","Uzbek","Vietnamese","Welsh","Wolof","Xhosa","Yoruba","Zulu"],"title":"Language","default":"English"},"device":{"type":"string","enum":["desktop","mobile"],"title":"Device","default":"desktop"},"depth":{"type":"integer","multipleOf":10.0,"maximum":100.0,"minimum":10.0,"title":"Depth","default":10},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["keyword"],"title":"SeoRankTrackRequest","description":"Google organic search rank tracking for a keyword and domain."},"SeoRelatedKeywordsRequest":{"properties":{"keyword":{"type":"string","maxLength":500,"minLength":1,"title":"Keyword"},"location":{"type":"string","enum":["Afghanistan","Albania","Algeria","American Samoa","Andorra","Angola","Antarctica","Antigua and Barbuda","Argentina","Armenia","Australia","Austria","Azerbaijan","Bahrain","Bangladesh","Barbados","Belgium","Belize","Benin","Bhutan","Bolivia","Bosnia and Herzegovina","Botswana","Brazil","Brunei","Bulgaria","Burkina Faso","Burundi","Cabo Verde","Cambodia","Cameroon","Canada","Caribbean Netherlands","Central African Republic","Chad","Chile","China","Christmas Island","Cocos (Keeling) Islands","Colombia","Comoros","Cook Islands","Costa Rica","Cote d'Ivoire","Croatia","Curacao","Cyprus","Czechia","Democratic Republic of the Congo","Denmark","Djibouti","Dominica","Dominican Republic","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Eswatini","Ethiopia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Greece","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Honduras","Hungary","Iceland","India","Indonesia","Iraq","Ireland","Isle of Man","Israel","Italy","Jamaica","Japan","Jersey","Jordan","Kazakhstan","Kenya","Kiribati","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Marshall Islands","Mauritania","Mauritius","Mexico","Micronesia","Moldova","Monaco","Mongolia","Montenegro","Morocco","Mozambique","Myanmar (Burma)","Namibia","Nauru","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue","Norfolk Island","North Macedonia","Northern Mariana Islands","Norway","Oman","Pakistan","Palau","Panama","Papua New Guinea","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal","Qatar","Republic of the Congo","Romania","Rwanda","Saint Helena, Ascension and Tristan da Cunha","Saint Kitts and Nevis","Saint Lucia","Saint Martin","Saint Pierre and Miquelon","Saint Vincent and the Grenadines","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles","Sierra Leone","Singapore","Sint Maarten","Slovakia","Slovenia","Solomon Islands","Somalia","South Africa","South Georgia and the South Sandwich Islands","South Korea","Spain","Sri Lanka","Suriname","Sweden","Switzerland","Tajikistan","Tanzania","Thailand","The Bahamas","The Gambia","Timor-Leste","Togo","Tokelau","Tonga","Trinidad and Tobago","Tunisia","Turkiye","Turkmenistan","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","United States","United States Minor Outlying Islands","Uruguay","Uzbekistan","Vanuatu","Vatican City","Venezuela","Vietnam","Wallis and Futuna","Yemen","Zambia","Zimbabwe"],"title":"Location","default":"United States"},"language":{"type":"string","enum":["Afrikaans","Akan","Albanian","Amharic","Arabic","Armenian","Azeri","Balinese","Basque","Belarusian","Bengali","Bosnian","Bulgarian","Burmese","Catalan","Cebuano","Chichewa","Chinese (Simplified)","Chinese (Traditional)","Croatian","Czech","Danish","Dutch","English","Espanol (Latinoamerica)","Estonian","Ewe","Faroese","Farsi","Filipino","Finnish","French","Frisian","Ga","Galician","Ganda","Georgian","German","Greek","Gujarati","Haitian","Hausa","Hebrew","Hebrew (old)","Hindi","Hungarian","Icelandic","IciBemba","Igbo","Indonesian","Irish","Italian","Japanese","Kannada","Kazakh","Khmer","Kinyarwanda","Kirundi","Kongo","Korean","Kreol Seselwa","Kreol morisien","Krio","Kurdish","Kyrgyz","Lao","Latvian","Lingala","Lithuanian","Luo","Macedonian","Malagasy","Malay","Malayam","Maltese","Maori","Marathi","Mongolian","Montenegro","Nepali","Northern Sotho","Norwegian","Nyankole","Oromo","Pashto","Pidgin","Polish","Portuguese","Portuguese (Brazil)","Portuguese (Portugal)","Punjabi","Quechua","Romanian","Romansh","Russian","Serbian","Serbian (Latin)","Sesotho","Shona","Silozi","Sindhi","Sinhalese","Slovak","Slovenian","Somali","Spanish","Swahili","Swedish","Tagalog","Tajik","Tamil","Telugu","Thai","Tigrinya","Tonga (Tonga Islands)","Tshiluba","Tswana","Tumbuka","Turkish","Turkmen","Ukrainian","Urdu","Uzbek","Vietnamese","Welsh","Wolof","Xhosa","Yoruba","Zulu"],"title":"Language","default":"English"},"depth":{"type":"integer","maximum":4.0,"minimum":1.0,"title":"Depth","default":2},"limit":{"type":"integer","maximum":100.0,"minimum":1.0,"title":"Limit","default":10},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["keyword"],"title":"SeoRelatedKeywordsRequest","description":"DataForSEO Labs related keywords discovery and difficulty."},"SeoRelevantPagesRequest":{"properties":{"target":{"type":"string","maxLength":255,"minLength":1,"title":"Target"},"location":{"type":"string","enum":["Afghanistan","Albania","Algeria","American Samoa","Andorra","Angola","Antarctica","Antigua and Barbuda","Argentina","Armenia","Australia","Austria","Azerbaijan","Bahrain","Bangladesh","Barbados","Belgium","Belize","Benin","Bhutan","Bolivia","Bosnia and Herzegovina","Botswana","Brazil","Brunei","Bulgaria","Burkina Faso","Burundi","Cabo Verde","Cambodia","Cameroon","Canada","Caribbean Netherlands","Central African Republic","Chad","Chile","China","Christmas Island","Cocos (Keeling) Islands","Colombia","Comoros","Cook Islands","Costa Rica","Cote d'Ivoire","Croatia","Curacao","Cyprus","Czechia","Democratic Republic of the Congo","Denmark","Djibouti","Dominica","Dominican Republic","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Eswatini","Ethiopia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Greece","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Honduras","Hungary","Iceland","India","Indonesia","Iraq","Ireland","Isle of Man","Israel","Italy","Jamaica","Japan","Jersey","Jordan","Kazakhstan","Kenya","Kiribati","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Marshall Islands","Mauritania","Mauritius","Mexico","Micronesia","Moldova","Monaco","Mongolia","Montenegro","Morocco","Mozambique","Myanmar (Burma)","Namibia","Nauru","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue","Norfolk Island","North Macedonia","Northern Mariana Islands","Norway","Oman","Pakistan","Palau","Panama","Papua New Guinea","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal","Qatar","Republic of the Congo","Romania","Rwanda","Saint Helena, Ascension and Tristan da Cunha","Saint Kitts and Nevis","Saint Lucia","Saint Martin","Saint Pierre and Miquelon","Saint Vincent and the Grenadines","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles","Sierra Leone","Singapore","Sint Maarten","Slovakia","Slovenia","Solomon Islands","Somalia","South Africa","South Georgia and the South Sandwich Islands","South Korea","Spain","Sri Lanka","Suriname","Sweden","Switzerland","Tajikistan","Tanzania","Thailand","The Bahamas","The Gambia","Timor-Leste","Togo","Tokelau","Tonga","Trinidad and Tobago","Tunisia","Turkiye","Turkmenistan","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","United States","United States Minor Outlying Islands","Uruguay","Uzbekistan","Vanuatu","Vatican City","Venezuela","Vietnam","Wallis and Futuna","Yemen","Zambia","Zimbabwe"],"title":"Location","default":"United States"},"language":{"type":"string","enum":["Afrikaans","Akan","Albanian","Amharic","Arabic","Armenian","Azeri","Balinese","Basque","Belarusian","Bengali","Bosnian","Bulgarian","Burmese","Catalan","Cebuano","Chichewa","Chinese (Simplified)","Chinese (Traditional)","Croatian","Czech","Danish","Dutch","English","Espanol (Latinoamerica)","Estonian","Ewe","Faroese","Farsi","Filipino","Finnish","French","Frisian","Ga","Galician","Ganda","Georgian","German","Greek","Gujarati","Haitian","Hausa","Hebrew","Hebrew (old)","Hindi","Hungarian","Icelandic","IciBemba","Igbo","Indonesian","Irish","Italian","Japanese","Kannada","Kazakh","Khmer","Kinyarwanda","Kirundi","Kongo","Korean","Kreol Seselwa","Kreol morisien","Krio","Kurdish","Kyrgyz","Lao","Latvian","Lingala","Lithuanian","Luo","Macedonian","Malagasy","Malay","Malayam","Maltese","Maori","Marathi","Mongolian","Montenegro","Nepali","Northern Sotho","Norwegian","Nyankole","Oromo","Pashto","Pidgin","Polish","Portuguese","Portuguese (Brazil)","Portuguese (Portugal)","Punjabi","Quechua","Romanian","Romansh","Russian","Serbian","Serbian (Latin)","Sesotho","Shona","Silozi","Sindhi","Sinhalese","Slovak","Slovenian","Somali","Spanish","Swahili","Swedish","Tagalog","Tajik","Tamil","Telugu","Thai","Tigrinya","Tonga (Tonga Islands)","Tshiluba","Tswana","Tumbuka","Turkish","Turkmen","Ukrainian","Urdu","Uzbek","Vietnamese","Welsh","Wolof","Xhosa","Yoruba","Zulu"],"title":"Language","default":"English"},"limit":{"type":"integer","maximum":100.0,"minimum":1.0,"title":"Limit","default":10},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["target"],"title":"SeoRelevantPagesRequest","description":"DataForSEO Labs top ranking pages on target domain."},"SeoYoutubeOrganicRequest":{"properties":{"keyword":{"type":"string","maxLength":255,"minLength":1,"title":"Keyword"},"location":{"type":"string","enum":["Afghanistan","Albania","Algeria","American Samoa","Andorra","Angola","Antarctica","Antigua and Barbuda","Argentina","Armenia","Australia","Austria","Azerbaijan","Bahrain","Bangladesh","Barbados","Belgium","Belize","Benin","Bhutan","Bolivia","Bosnia and Herzegovina","Botswana","Brazil","Brunei","Bulgaria","Burkina Faso","Burundi","Cabo Verde","Cambodia","Cameroon","Canada","Caribbean Netherlands","Central African Republic","Chad","Chile","China","Christmas Island","Cocos (Keeling) Islands","Colombia","Comoros","Cook Islands","Costa Rica","Cote d'Ivoire","Croatia","Curacao","Cyprus","Czechia","Democratic Republic of the Congo","Denmark","Djibouti","Dominica","Dominican Republic","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Eswatini","Ethiopia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Greece","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Honduras","Hungary","Iceland","India","Indonesia","Iraq","Ireland","Isle of Man","Israel","Italy","Jamaica","Japan","Jersey","Jordan","Kazakhstan","Kenya","Kiribati","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Marshall Islands","Mauritania","Mauritius","Mexico","Micronesia","Moldova","Monaco","Mongolia","Montenegro","Morocco","Mozambique","Myanmar (Burma)","Namibia","Nauru","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue","Norfolk Island","North Macedonia","Northern Mariana Islands","Norway","Oman","Pakistan","Palau","Panama","Papua New Guinea","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal","Qatar","Republic of the Congo","Romania","Rwanda","Saint Helena, Ascension and Tristan da Cunha","Saint Kitts and Nevis","Saint Lucia","Saint Martin","Saint Pierre and Miquelon","Saint Vincent and the Grenadines","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles","Sierra Leone","Singapore","Sint Maarten","Slovakia","Slovenia","Solomon Islands","Somalia","South Africa","South Georgia and the South Sandwich Islands","South Korea","Spain","Sri Lanka","Suriname","Sweden","Switzerland","Tajikistan","Tanzania","Thailand","The Bahamas","The Gambia","Timor-Leste","Togo","Tokelau","Tonga","Trinidad and Tobago","Tunisia","Turkiye","Turkmenistan","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","United States","United States Minor Outlying Islands","Uruguay","Uzbekistan","Vanuatu","Vatican City","Venezuela","Vietnam","Wallis and Futuna","Yemen","Zambia","Zimbabwe"],"title":"Location","default":"United States"},"language":{"type":"string","enum":["Afrikaans","Akan","Albanian","Amharic","Arabic","Armenian","Azeri","Balinese","Basque","Belarusian","Bengali","Bosnian","Bulgarian","Burmese","Catalan","Cebuano","Chichewa","Chinese (Simplified)","Chinese (Traditional)","Croatian","Czech","Danish","Dutch","English","Espanol (Latinoamerica)","Estonian","Ewe","Faroese","Farsi","Filipino","Finnish","French","Frisian","Ga","Galician","Ganda","Georgian","German","Greek","Gujarati","Haitian","Hausa","Hebrew","Hebrew (old)","Hindi","Hungarian","Icelandic","IciBemba","Igbo","Indonesian","Irish","Italian","Japanese","Kannada","Kazakh","Khmer","Kinyarwanda","Kirundi","Kongo","Korean","Kreol Seselwa","Kreol morisien","Krio","Kurdish","Kyrgyz","Lao","Latvian","Lingala","Lithuanian","Luo","Macedonian","Malagasy","Malay","Malayam","Maltese","Maori","Marathi","Mongolian","Montenegro","Nepali","Northern Sotho","Norwegian","Nyankole","Oromo","Pashto","Pidgin","Polish","Portuguese","Portuguese (Brazil)","Portuguese (Portugal)","Punjabi","Quechua","Romanian","Romansh","Russian","Serbian","Serbian (Latin)","Sesotho","Shona","Silozi","Sindhi","Sinhalese","Slovak","Slovenian","Somali","Spanish","Swahili","Swedish","Tagalog","Tajik","Tamil","Telugu","Thai","Tigrinya","Tonga (Tonga Islands)","Tshiluba","Tswana","Tumbuka","Turkish","Turkmen","Ukrainian","Urdu","Uzbek","Vietnamese","Welsh","Wolof","Xhosa","Yoruba","Zulu"],"title":"Language","default":"English"},"device":{"type":"string","enum":["desktop","mobile"],"title":"Device","default":"desktop"},"depth":{"type":"integer","maximum":700.0,"minimum":10.0,"title":"Depth","default":20},"os":{"anyOf":[{"type":"string","enum":["windows","macos","android","ios"]},{"type":"null"}],"title":"Os"},"search_param":{"anyOf":[{"type":"string","maxLength":255},{"type":"null"}],"title":"Search Param"},"tag":{"anyOf":[{"type":"string","maxLength":255},{"type":"null"}],"title":"Tag"},"method":{"type":"string","enum":["live","standard"],"title":"Method","default":"live"},"priority":{"type":"string","enum":["normal","high"],"title":"Priority","default":"normal"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"idempotency_key":{"anyOf":[{"type":"string","maxLength":128,"minLength":1},{"type":"null"}],"title":"Idempotency Key"}},"type":"object","required":["keyword"],"title":"SeoYoutubeOrganicRequest","description":"YouTube search results ranked by keyword."},"SeoYoutubeVideoCommentsRequest":{"properties":{"video_id":{"type":"string","maxLength":11,"minLength":11,"pattern":"^[A-Za-z0-9_-]{11}$","title":"Video Id"},"depth":{"type":"integer","maximum":700.0,"minimum":20.0,"title":"Depth","default":20},"location":{"type":"string","enum":["Afghanistan","Albania","Algeria","American Samoa","Andorra","Angola","Antarctica","Antigua and Barbuda","Argentina","Armenia","Australia","Austria","Azerbaijan","Bahrain","Bangladesh","Barbados","Belgium","Belize","Benin","Bhutan","Bolivia","Bosnia and Herzegovina","Botswana","Brazil","Brunei","Bulgaria","Burkina Faso","Burundi","Cabo Verde","Cambodia","Cameroon","Canada","Caribbean Netherlands","Central African Republic","Chad","Chile","China","Christmas Island","Cocos (Keeling) Islands","Colombia","Comoros","Cook Islands","Costa Rica","Cote d'Ivoire","Croatia","Curacao","Cyprus","Czechia","Democratic Republic of the Congo","Denmark","Djibouti","Dominica","Dominican Republic","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Eswatini","Ethiopia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Greece","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Honduras","Hungary","Iceland","India","Indonesia","Iraq","Ireland","Isle of Man","Israel","Italy","Jamaica","Japan","Jersey","Jordan","Kazakhstan","Kenya","Kiribati","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Marshall Islands","Mauritania","Mauritius","Mexico","Micronesia","Moldova","Monaco","Mongolia","Montenegro","Morocco","Mozambique","Myanmar (Burma)","Namibia","Nauru","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue","Norfolk Island","North Macedonia","Northern Mariana Islands","Norway","Oman","Pakistan","Palau","Panama","Papua New Guinea","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal","Qatar","Republic of the Congo","Romania","Rwanda","Saint Helena, Ascension and Tristan da Cunha","Saint Kitts and Nevis","Saint Lucia","Saint Martin","Saint Pierre and Miquelon","Saint Vincent and the Grenadines","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles","Sierra Leone","Singapore","Sint Maarten","Slovakia","Slovenia","Solomon Islands","Somalia","South Africa","South Georgia and the South Sandwich Islands","South Korea","Spain","Sri Lanka","Suriname","Sweden","Switzerland","Tajikistan","Tanzania","Thailand","The Bahamas","The Gambia","Timor-Leste","Togo","Tokelau","Tonga","Trinidad and Tobago","Tunisia","Turkiye","Turkmenistan","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","United States","United States Minor Outlying Islands","Uruguay","Uzbekistan","Vanuatu","Vatican City","Venezuela","Vietnam","Wallis and Futuna","Yemen","Zambia","Zimbabwe"],"title":"Location","default":"United States"},"language":{"type":"string","enum":["Afrikaans","Akan","Albanian","Amharic","Arabic","Armenian","Azeri","Balinese","Basque","Belarusian","Bengali","Bosnian","Bulgarian","Burmese","Catalan","Cebuano","Chichewa","Chinese (Simplified)","Chinese (Traditional)","Croatian","Czech","Danish","Dutch","English","Espanol (Latinoamerica)","Estonian","Ewe","Faroese","Farsi","Filipino","Finnish","French","Frisian","Ga","Galician","Ganda","Georgian","German","Greek","Gujarati","Haitian","Hausa","Hebrew","Hebrew (old)","Hindi","Hungarian","Icelandic","IciBemba","Igbo","Indonesian","Irish","Italian","Japanese","Kannada","Kazakh","Khmer","Kinyarwanda","Kirundi","Kongo","Korean","Kreol Seselwa","Kreol morisien","Krio","Kurdish","Kyrgyz","Lao","Latvian","Lingala","Lithuanian","Luo","Macedonian","Malagasy","Malay","Malayam","Maltese","Maori","Marathi","Mongolian","Montenegro","Nepali","Northern Sotho","Norwegian","Nyankole","Oromo","Pashto","Pidgin","Polish","Portuguese","Portuguese (Brazil)","Portuguese (Portugal)","Punjabi","Quechua","Romanian","Romansh","Russian","Serbian","Serbian (Latin)","Sesotho","Shona","Silozi","Sindhi","Sinhalese","Slovak","Slovenian","Somali","Spanish","Swahili","Swedish","Tagalog","Tajik","Tamil","Telugu","Thai","Tigrinya","Tonga (Tonga Islands)","Tshiluba","Tswana","Tumbuka","Turkish","Turkmen","Ukrainian","Urdu","Uzbek","Vietnamese","Welsh","Wolof","Xhosa","Yoruba","Zulu"],"title":"Language","default":"English"},"tag":{"anyOf":[{"type":"string","maxLength":255},{"type":"null"}],"title":"Tag"},"method":{"type":"string","enum":["live","standard"],"title":"Method","default":"live"},"priority":{"type":"string","enum":["normal","high"],"title":"Priority","default":"normal"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"idempotency_key":{"anyOf":[{"type":"string","maxLength":128,"minLength":1},{"type":"null"}],"title":"Idempotency Key"}},"type":"object","required":["video_id"],"title":"SeoYoutubeVideoCommentsRequest","description":"YouTube video comments extraction (billed per 20 comments)."},"SeoYoutubeVideoInfoRequest":{"properties":{"video_id":{"type":"string","maxLength":11,"minLength":11,"pattern":"^[A-Za-z0-9_-]{11}$","title":"Video Id"},"location":{"type":"string","enum":["Afghanistan","Albania","Algeria","American Samoa","Andorra","Angola","Antarctica","Antigua and Barbuda","Argentina","Armenia","Australia","Austria","Azerbaijan","Bahrain","Bangladesh","Barbados","Belgium","Belize","Benin","Bhutan","Bolivia","Bosnia and Herzegovina","Botswana","Brazil","Brunei","Bulgaria","Burkina Faso","Burundi","Cabo Verde","Cambodia","Cameroon","Canada","Caribbean Netherlands","Central African Republic","Chad","Chile","China","Christmas Island","Cocos (Keeling) Islands","Colombia","Comoros","Cook Islands","Costa Rica","Cote d'Ivoire","Croatia","Curacao","Cyprus","Czechia","Democratic Republic of the Congo","Denmark","Djibouti","Dominica","Dominican Republic","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Eswatini","Ethiopia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Greece","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Honduras","Hungary","Iceland","India","Indonesia","Iraq","Ireland","Isle of Man","Israel","Italy","Jamaica","Japan","Jersey","Jordan","Kazakhstan","Kenya","Kiribati","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Marshall Islands","Mauritania","Mauritius","Mexico","Micronesia","Moldova","Monaco","Mongolia","Montenegro","Morocco","Mozambique","Myanmar (Burma)","Namibia","Nauru","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue","Norfolk Island","North Macedonia","Northern Mariana Islands","Norway","Oman","Pakistan","Palau","Panama","Papua New Guinea","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal","Qatar","Republic of the Congo","Romania","Rwanda","Saint Helena, Ascension and Tristan da Cunha","Saint Kitts and Nevis","Saint Lucia","Saint Martin","Saint Pierre and Miquelon","Saint Vincent and the Grenadines","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles","Sierra Leone","Singapore","Sint Maarten","Slovakia","Slovenia","Solomon Islands","Somalia","South Africa","South Georgia and the South Sandwich Islands","South Korea","Spain","Sri Lanka","Suriname","Sweden","Switzerland","Tajikistan","Tanzania","Thailand","The Bahamas","The Gambia","Timor-Leste","Togo","Tokelau","Tonga","Trinidad and Tobago","Tunisia","Turkiye","Turkmenistan","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","United States","United States Minor Outlying Islands","Uruguay","Uzbekistan","Vanuatu","Vatican City","Venezuela","Vietnam","Wallis and Futuna","Yemen","Zambia","Zimbabwe"],"title":"Location","default":"United States"},"language":{"type":"string","enum":["Afrikaans","Akan","Albanian","Amharic","Arabic","Armenian","Azeri","Balinese","Basque","Belarusian","Bengali","Bosnian","Bulgarian","Burmese","Catalan","Cebuano","Chichewa","Chinese (Simplified)","Chinese (Traditional)","Croatian","Czech","Danish","Dutch","English","Espanol (Latinoamerica)","Estonian","Ewe","Faroese","Farsi","Filipino","Finnish","French","Frisian","Ga","Galician","Ganda","Georgian","German","Greek","Gujarati","Haitian","Hausa","Hebrew","Hebrew (old)","Hindi","Hungarian","Icelandic","IciBemba","Igbo","Indonesian","Irish","Italian","Japanese","Kannada","Kazakh","Khmer","Kinyarwanda","Kirundi","Kongo","Korean","Kreol Seselwa","Kreol morisien","Krio","Kurdish","Kyrgyz","Lao","Latvian","Lingala","Lithuanian","Luo","Macedonian","Malagasy","Malay","Malayam","Maltese","Maori","Marathi","Mongolian","Montenegro","Nepali","Northern Sotho","Norwegian","Nyankole","Oromo","Pashto","Pidgin","Polish","Portuguese","Portuguese (Brazil)","Portuguese (Portugal)","Punjabi","Quechua","Romanian","Romansh","Russian","Serbian","Serbian (Latin)","Sesotho","Shona","Silozi","Sindhi","Sinhalese","Slovak","Slovenian","Somali","Spanish","Swahili","Swedish","Tagalog","Tajik","Tamil","Telugu","Thai","Tigrinya","Tonga (Tonga Islands)","Tshiluba","Tswana","Tumbuka","Turkish","Turkmen","Ukrainian","Urdu","Uzbek","Vietnamese","Welsh","Wolof","Xhosa","Yoruba","Zulu"],"title":"Language","default":"English"},"os":{"anyOf":[{"type":"string","enum":["windows","macos"]},{"type":"null"}],"title":"Os"},"tag":{"anyOf":[{"type":"string","maxLength":255},{"type":"null"}],"title":"Tag"},"method":{"type":"string","enum":["live","standard"],"title":"Method","default":"live"},"priority":{"type":"string","enum":["normal","high"],"title":"Priority","default":"normal"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"idempotency_key":{"anyOf":[{"type":"string","maxLength":128,"minLength":1},{"type":"null"}],"title":"Idempotency Key"}},"type":"object","required":["video_id"],"title":"SeoYoutubeVideoInfoRequest","description":"YouTube video metadata, engagement stats, channel details, and tags (3x SERP)."},"SeoYoutubeVideoSubtitlesRequest":{"properties":{"video_id":{"type":"string","maxLength":11,"minLength":11,"pattern":"^[A-Za-z0-9_-]{11}$","title":"Video Id"},"subtitles_language":{"type":"string","maxLength":20,"minLength":2,"title":"Subtitles Language","default":"en"},"subtitles_translate_language":{"anyOf":[{"type":"string","maxLength":20,"minLength":2},{"type":"null"}],"title":"Subtitles Translate Language"},"location":{"type":"string","enum":["Afghanistan","Albania","Algeria","American Samoa","Andorra","Angola","Antarctica","Antigua and Barbuda","Argentina","Armenia","Australia","Austria","Azerbaijan","Bahrain","Bangladesh","Barbados","Belgium","Belize","Benin","Bhutan","Bolivia","Bosnia and Herzegovina","Botswana","Brazil","Brunei","Bulgaria","Burkina Faso","Burundi","Cabo Verde","Cambodia","Cameroon","Canada","Caribbean Netherlands","Central African Republic","Chad","Chile","China","Christmas Island","Cocos (Keeling) Islands","Colombia","Comoros","Cook Islands","Costa Rica","Cote d'Ivoire","Croatia","Curacao","Cyprus","Czechia","Democratic Republic of the Congo","Denmark","Djibouti","Dominica","Dominican Republic","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Eswatini","Ethiopia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Greece","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Honduras","Hungary","Iceland","India","Indonesia","Iraq","Ireland","Isle of Man","Israel","Italy","Jamaica","Japan","Jersey","Jordan","Kazakhstan","Kenya","Kiribati","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Marshall Islands","Mauritania","Mauritius","Mexico","Micronesia","Moldova","Monaco","Mongolia","Montenegro","Morocco","Mozambique","Myanmar (Burma)","Namibia","Nauru","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue","Norfolk Island","North Macedonia","Northern Mariana Islands","Norway","Oman","Pakistan","Palau","Panama","Papua New Guinea","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal","Qatar","Republic of the Congo","Romania","Rwanda","Saint Helena, Ascension and Tristan da Cunha","Saint Kitts and Nevis","Saint Lucia","Saint Martin","Saint Pierre and Miquelon","Saint Vincent and the Grenadines","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles","Sierra Leone","Singapore","Sint Maarten","Slovakia","Slovenia","Solomon Islands","Somalia","South Africa","South Georgia and the South Sandwich Islands","South Korea","Spain","Sri Lanka","Suriname","Sweden","Switzerland","Tajikistan","Tanzania","Thailand","The Bahamas","The Gambia","Timor-Leste","Togo","Tokelau","Tonga","Trinidad and Tobago","Tunisia","Turkiye","Turkmenistan","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","United States","United States Minor Outlying Islands","Uruguay","Uzbekistan","Vanuatu","Vatican City","Venezuela","Vietnam","Wallis and Futuna","Yemen","Zambia","Zimbabwe"],"title":"Location","default":"United States"},"language":{"type":"string","enum":["Afrikaans","Akan","Albanian","Amharic","Arabic","Armenian","Azeri","Balinese","Basque","Belarusian","Bengali","Bosnian","Bulgarian","Burmese","Catalan","Cebuano","Chichewa","Chinese (Simplified)","Chinese (Traditional)","Croatian","Czech","Danish","Dutch","English","Espanol (Latinoamerica)","Estonian","Ewe","Faroese","Farsi","Filipino","Finnish","French","Frisian","Ga","Galician","Ganda","Georgian","German","Greek","Gujarati","Haitian","Hausa","Hebrew","Hebrew (old)","Hindi","Hungarian","Icelandic","IciBemba","Igbo","Indonesian","Irish","Italian","Japanese","Kannada","Kazakh","Khmer","Kinyarwanda","Kirundi","Kongo","Korean","Kreol Seselwa","Kreol morisien","Krio","Kurdish","Kyrgyz","Lao","Latvian","Lingala","Lithuanian","Luo","Macedonian","Malagasy","Malay","Malayam","Maltese","Maori","Marathi","Mongolian","Montenegro","Nepali","Northern Sotho","Norwegian","Nyankole","Oromo","Pashto","Pidgin","Polish","Portuguese","Portuguese (Brazil)","Portuguese (Portugal)","Punjabi","Quechua","Romanian","Romansh","Russian","Serbian","Serbian (Latin)","Sesotho","Shona","Silozi","Sindhi","Sinhalese","Slovak","Slovenian","Somali","Spanish","Swahili","Swedish","Tagalog","Tajik","Tamil","Telugu","Thai","Tigrinya","Tonga (Tonga Islands)","Tshiluba","Tswana","Tumbuka","Turkish","Turkmen","Ukrainian","Urdu","Uzbek","Vietnamese","Welsh","Wolof","Xhosa","Yoruba","Zulu"],"title":"Language","default":"English"},"os":{"anyOf":[{"type":"string","enum":["windows","macos"]},{"type":"null"}],"title":"Os"},"tag":{"anyOf":[{"type":"string","maxLength":255},{"type":"null"}],"title":"Tag"},"method":{"type":"string","enum":["live","standard"],"title":"Method","default":"live"},"priority":{"type":"string","enum":["normal","high"],"title":"Priority","default":"normal"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"idempotency_key":{"anyOf":[{"type":"string","maxLength":128,"minLength":1},{"type":"null"}],"title":"Idempotency Key"}},"type":"object","required":["video_id"],"title":"SeoYoutubeVideoSubtitlesRequest","description":"YouTube video closed captions and subtitles extraction (3x SERP)."},"Shot":{"properties":{"scene":{"type":"string","title":"Scene","description":"Description of the scene."},"duration":{"type":"number","maximum":10.0,"exclusiveMinimum":0.0,"title":"Duration","description":"Duration of the shot in seconds (must be >0 max 10s)."}},"type":"object","required":["scene","duration"],"title":"Shot"},"ShotOperationResponse":{"properties":{"request_id":{"type":"string","title":"Request Id"},"shot_id":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Shot Id"},"scene_id":{"type":"integer","title":"Scene Id"},"status":{"type":"string","title":"Status","default":"processing"},"message":{"type":"string","title":"Message"}},"type":"object","required":["request_id","scene_id","message"],"title":"ShotOperationResponse"},"SkillResponse":{"properties":{"id":{"type":"string","title":"Id"},"aitask_id":{"type":"integer","title":"Aitask Id"},"name":{"type":"string","title":"Name"},"description":{"type":"string","title":"Description"}},"type":"object","required":["id","aitask_id","name","description"],"title":"SkillResponse"},"SmtpCredentialsUpdate":{"properties":{"host":{"type":"string","title":"Host"},"port":{"type":"integer","title":"Port"},"username":{"type":"string","title":"Username"},"password":{"type":"string","title":"Password"},"from_email":{"type":"string","title":"From Email"},"use_tls":{"type":"boolean","title":"Use Tls","default":true}},"type":"object","required":["host","port","username","password","from_email"],"title":"SmtpCredentialsUpdate"},"Sora2CharactersProRequest":{"properties":{"origin_task_id":{"type":"string","title":"Origin Task Id"},"character_user_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Character User Name"},"prompt":{"type":"string","title":"Prompt"},"safety_instruction":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Safety Instruction"},"start_time":{"type":"number","title":"Start Time"},"end_time":{"type":"number","title":"End Time"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["origin_task_id","prompt","start_time","end_time"],"title":"Sora2CharactersProRequest"},"Sora2StandardI2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"mode":{"type":"string","enum":["budget","stable"],"title":"Mode","default":"stable"},"seconds":{"type":"string","enum":["10","15"],"title":"Seconds","default":"10"},"size":{"type":"string","enum":["720x1280","1280x720"],"title":"Size","default":"720x1280"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url"],"title":"Sora2StandardI2VRequest"},"Sora2StandardT2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"mode":{"type":"string","enum":["budget","stable"],"title":"Mode","default":"stable"},"seconds":{"type":"string","enum":["10","15"],"title":"Seconds","default":"10"},"size":{"type":"string","enum":["720x1280","1280x720"],"title":"Size","default":"720x1280"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Sora2StandardT2VRequest"},"StoryboardDataRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"duration":{"type":"integer","enum":[10,15,25],"title":"Duration","default":10},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"StoryboardDataRequest"},"StoryboardProjectCreate":{"properties":{"title":{"type":"string","title":"Title"},"prompt":{"type":"string","maxLength":5000,"minLength":1,"title":"Prompt"},"num_episodes":{"type":"integer","maximum":10.0,"minimum":1.0,"title":"Num Episodes","default":1},"target_duration_per_episode":{"type":"number","maximum":15.0,"minimum":0.25,"title":"Target Duration Per Episode","default":5.0},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"webhook_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Webhook Url"},"meta_data":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Meta Data"}},"type":"object","required":["title","prompt"],"title":"StoryboardProjectCreate"},"StoryboardProjectGenerateRequest":{"properties":{"prompt":{"type":"string","maxLength":5000,"minLength":1,"title":"Prompt"},"num_episodes":{"type":"integer","maximum":10.0,"minimum":1.0,"title":"Num Episodes","default":1},"target_duration_per_episode":{"type":"number","maximum":15.0,"minimum":0.25,"title":"Target Duration Per Episode","default":5.0},"webhook_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Webhook Url"},"sync":{"type":"boolean","title":"Sync","default":false},"style":{"type":"string","title":"Style","default":"cinematic realistic"},"grid_mode":{"type":"boolean","title":"Grid Mode","default":false},"use_pro":{"type":"boolean","title":"Use Pro","default":false},"resolution":{"type":"string","title":"Resolution","default":"1k"}},"type":"object","required":["prompt"],"title":"StoryboardProjectGenerateRequest","description":"Request to generate a full project with multiple episodes"},"StoryboardProjectResponse":{"properties":{"id":{"type":"integer","title":"Id"},"title":{"type":"string","title":"Title"},"prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Prompt"},"num_episodes":{"type":"integer","title":"Num Episodes"},"target_duration_per_episode":{"type":"number","title":"Target Duration Per Episode"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"status":{"type":"string","title":"Status"},"created_at":{"type":"string","format":"date-time","title":"Created At"}},"type":"object","required":["id","title","num_episodes","target_duration_per_episode","status","created_at"],"title":"StoryboardProjectResponse"},"StoryboardRequest":{"properties":{"shots":{"items":{"$ref":"#/components/schemas/Shot"},"type":"array","title":"Shots","description":"List of shots with scenes and durations."},"duration":{"type":"integer","enum":[10,15,25],"title":"Duration","default":10},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List","description":"Optional list of image URLs"},"aspect_ratio":{"type":"string","enum":["9:16","16:9"],"title":"Aspect Ratio","default":"16:9"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","title":"StoryboardRequest"},"StoryboardStepRequest":{"properties":{"webhook_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Webhook Url"},"sync":{"type":"boolean","title":"Sync","default":false}},"type":"object","title":"StoryboardStepRequest"},"StoryboardTaskResponse":{"properties":{"storyboard_id":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Storyboard Id"},"project_id":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Project Id"},"request_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Request Id"},"status":{"type":"string","title":"Status","default":"processing"}},"type":"object","title":"StoryboardTaskResponse"},"StraicoImageRequest":{"properties":{"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"api_key":{"type":"string","title":"Api Key"},"model":{"type":"string","title":"Model"},"description":{"type":"string","title":"Description"},"size":{"type":"string","title":"Size"},"variations":{"type":"integer","title":"Variations"}},"type":"object","required":["api_key","model","description","size","variations"],"title":"StraicoImageRequest"},"StripeCredentialsUpdate":{"properties":{"secret_key":{"type":"string","title":"Secret Key"},"webhook_secret":{"type":"string","title":"Webhook Secret"}},"type":"object","required":["secret_key","webhook_secret"],"title":"StripeCredentialsUpdate"},"SunoAddInstrumentalRequest":{"properties":{"audio_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Audio Url"},"title":{"type":"string","title":"Title"},"tags":{"type":"string","title":"Tags"},"negative_tags":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Negative Tags"},"model":{"type":"string","enum":["V4","V4_5","V4_5PLUS","V5"],"title":"Model","default":"V5"},"vocal_gender":{"anyOf":[{"type":"string","enum":["male","female"]},{"type":"null"}],"title":"Vocal Gender","default":"male"},"style_weight":{"anyOf":[{"type":"number","maximum":1.0,"minimum":0.0},{"type":"null"}],"title":"Style Weight","default":0.65},"weirdness_constraint":{"anyOf":[{"type":"number","maximum":1.0,"minimum":0.0},{"type":"null"}],"title":"Weirdness Constraint","default":0.65},"audio_weight":{"anyOf":[{"type":"number","maximum":1.0,"minimum":0.0},{"type":"null"}],"title":"Audio Weight","default":0.65},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["title","tags"],"title":"SunoAddInstrumentalRequest"},"SunoAddVocalsRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"title":{"type":"string","title":"Title"},"style":{"type":"string","title":"Style"},"negative_tags":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Negative Tags"},"audio_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Audio Url"},"model":{"type":"string","enum":["V4","V4_5","V4_5PLUS","V5"],"title":"Model","default":"V5"},"vocal_gender":{"anyOf":[{"type":"string","enum":["male","female"]},{"type":"null"}],"title":"Vocal Gender","default":"male"},"style_weight":{"anyOf":[{"type":"number","maximum":1.0,"minimum":0.0},{"type":"null"}],"title":"Style Weight","default":0.65},"weirdness_constraint":{"anyOf":[{"type":"number","maximum":1.0,"minimum":0.0},{"type":"null"}],"title":"Weirdness Constraint","default":0.65},"audio_weight":{"anyOf":[{"type":"number","maximum":1.0,"minimum":0.0},{"type":"null"}],"title":"Audio Weight","default":0.65},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","title","style"],"title":"SunoAddVocalsRequest"},"SunoBoostMusicStyleRequest":{"properties":{"content":{"type":"string","title":"Content"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["content"],"title":"SunoBoostMusicStyleRequest"},"SunoConvertToWavRequest":{"properties":{"task_id":{"type":"string","title":"Task Id"},"audio_id":{"type":"string","title":"Audio Id"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["task_id","audio_id"],"title":"SunoConvertToWavRequest"},"SunoExtendMusicRequest":{"properties":{"prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Prompt"},"audio_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Audio Url"},"style":{"type":"string","title":"Style"},"model":{"type":"string","enum":["V3_5","V4","V4_5","V4_5PLUS","V4_5ALL","V5","V5_5"],"title":"Model","default":"V5"},"custom_mode":{"type":"boolean","title":"Custom Mode","default":true},"title":{"anyOf":[{"type":"string","maxLength":80},{"type":"null"}],"title":"Title"},"persona_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Persona Id"},"persona_model":{"anyOf":[{"type":"string","enum":["style_persona","voice_persona"]},{"type":"null"}],"title":"Persona Model"},"instrumental":{"type":"boolean","title":"Instrumental","default":true},"continue_at":{"type":"integer","title":"Continue At","default":1},"negative_tags":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Negative Tags"},"vocal_gender":{"anyOf":[{"type":"string","enum":["male","female"]},{"type":"null"}],"title":"Vocal Gender"},"style_weight":{"anyOf":[{"type":"number","maximum":1.0,"minimum":0.0},{"type":"null"}],"title":"Style Weight"},"weirdness_constraint":{"anyOf":[{"type":"number","maximum":1.0,"minimum":0.0},{"type":"null"}],"title":"Weirdness Constraint"},"audio_weight":{"anyOf":[{"type":"number","maximum":1.0,"minimum":0.0},{"type":"null"}],"title":"Audio Weight"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["audio_url","style"],"title":"SunoExtendMusicRequest"},"SunoGenerateLyricsRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"SunoGenerateLyricsRequest"},"SunoGenerateMashupRequest":{"properties":{"audios_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Audios List"},"prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Prompt"},"style":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Style"},"title":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Title"},"instrumental":{"type":"boolean","title":"Instrumental","default":true},"model":{"type":"string","enum":["V4","V4_5","V4_5PLUS","V4_5ALL","V5"],"title":"Model","default":"V5"},"vocal_gender":{"anyOf":[{"type":"string","enum":["male","female"]},{"type":"null"}],"title":"Vocal Gender","default":"male"},"style_weight":{"anyOf":[{"type":"number","maximum":1.0,"minimum":0.0},{"type":"null"}],"title":"Style Weight","default":0.65},"weirdness_constraint":{"anyOf":[{"type":"number","maximum":1.0,"minimum":0.0},{"type":"null"}],"title":"Weirdness Constraint","default":0.65},"audio_weight":{"anyOf":[{"type":"number","maximum":1.0,"minimum":0.0},{"type":"null"}],"title":"Audio Weight","default":0.65},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["audios_list"],"title":"SunoGenerateMashupRequest"},"SunoGenerateSoundsRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"model":{"type":"string","enum":["V5","V5_5"],"title":"Model","default":"V5"},"sound_loop":{"type":"boolean","title":"Sound Loop","default":false},"sound_tempo":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Sound Tempo"},"sound_key":{"anyOf":[{"type":"string","enum":["Any","Cm","C#m","Dm","D#m","Em","Fm","F#m","Gm","G#m","Am","A#m","Bm","C","C#","D","D#","E","F","F#","G","G#","A","A#","B"]},{"type":"null"}],"title":"Sound Key","default":"Any"},"grab_lyrics":{"type":"boolean","title":"Grab Lyrics","default":false},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"SunoGenerateSoundsRequest"},"SunoMusicRequest":{"properties":{"prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Prompt"},"style":{"type":"string","title":"Style"},"model":{"type":"string","enum":["V3_5","V4","V4_5","V4_5PLUS","V4_5ALL","V5","V5_5"],"title":"Model","default":"V5"},"custom_mode":{"type":"boolean","title":"Custom Mode","default":true},"title":{"anyOf":[{"type":"string","maxLength":80},{"type":"null"}],"title":"Title"},"persona_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Persona Id"},"persona_model":{"anyOf":[{"type":"string","enum":["style_persona","voice_persona"]},{"type":"null"}],"title":"Persona Model"},"instrumental":{"type":"boolean","title":"Instrumental","default":true},"negative_tags":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Negative Tags"},"vocal_gender":{"anyOf":[{"type":"string","enum":["male","female"]},{"type":"null"}],"title":"Vocal Gender"},"style_weight":{"anyOf":[{"type":"number","maximum":1.0,"minimum":0.0},{"type":"null"}],"title":"Style Weight"},"weirdness_constraint":{"anyOf":[{"type":"number","maximum":1.0,"minimum":0.0},{"type":"null"}],"title":"Weirdness Constraint"},"audio_weight":{"anyOf":[{"type":"number","maximum":1.0,"minimum":0.0},{"type":"null"}],"title":"Audio Weight"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["style"],"title":"SunoMusicRequest"},"SunoRemixMusicRequest":{"properties":{"prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Prompt"},"audio_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Audio Url"},"style":{"type":"string","title":"Style"},"model":{"type":"string","enum":["V3_5","V4","V4_5","V4_5PLUS","V4_5ALL","V5","V5_5"],"title":"Model","default":"V5"},"custom_mode":{"type":"boolean","title":"Custom Mode","default":true},"title":{"anyOf":[{"type":"string","maxLength":80},{"type":"null"}],"title":"Title"},"persona_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Persona Id"},"persona_model":{"anyOf":[{"type":"string","enum":["style_persona","voice_persona"]},{"type":"null"}],"title":"Persona Model"},"instrumental":{"type":"boolean","title":"Instrumental","default":true},"negative_tags":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Negative Tags"},"vocal_gender":{"anyOf":[{"type":"string","enum":["male","female"]},{"type":"null"}],"title":"Vocal Gender"},"style_weight":{"anyOf":[{"type":"number","maximum":1.0,"minimum":0.0},{"type":"null"}],"title":"Style Weight"},"weirdness_constraint":{"anyOf":[{"type":"number","maximum":1.0,"minimum":0.0},{"type":"null"}],"title":"Weirdness Constraint"},"audio_weight":{"anyOf":[{"type":"number","maximum":1.0,"minimum":0.0},{"type":"null"}],"title":"Audio Weight"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["audio_url","style"],"title":"SunoRemixMusicRequest"},"SunoVoiceCloneRequest":{"properties":{"audio_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Audio Url"},"voice_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Voice Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"style":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Style"},"language":{"type":"string","enum":["en","zh","es","fr","pt","de","ja","ko","hi","ru"],"title":"Language","default":"en"},"vocal_start_s":{"type":"integer","minimum":0.0,"title":"Vocal Start S","default":0},"vocal_end_s":{"type":"integer","minimum":1.0,"title":"Vocal End S","default":10},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["audio_url"],"title":"SunoVoiceCloneRequest","description":"Stage 1 of Suno custom voice cloning.\n\nUser uploads a short audio sample of their voice. Provider returns a fresh\nrandom phrase the user must read aloud and submit via /suno-voice-clone/{id}/confirm."},"SunoVoiceConfirmRequest":{"properties":{"audio_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Audio Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["audio_url"],"title":"SunoVoiceConfirmRequest","description":"Stage 2 of Suno custom voice cloning.\n\nUser submits a recording of themselves reading the phrase returned by\nstage 1. On success, a reusable voice_id is generated."},"SupportLoginRequest":{"properties":{"token":{"type":"string","maxLength":256,"minLength":32,"title":"Token"}},"type":"object","required":["token"],"title":"SupportLoginRequest"},"SupportPasswordResetRequest":{"properties":{"token":{"type":"string","maxLength":256,"minLength":32,"title":"Token"},"password":{"type":"string","maxLength":256,"minLength":6,"title":"Password"}},"type":"object","required":["token","password"],"title":"SupportPasswordResetRequest"},"TaskCategory":{"type":"string","enum":["Image to Video","Text to Video","Image to Image","Text to Image","Video to Video","Text to Audio","Image to 3D","Training","Audio to Video","Text to Text","Text to 3D","Lora Support","other"],"title":"TaskCategory"},"TextRequest":{"properties":{"prompt":{"type":"string","title":"Prompt","default":""},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"system_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"System Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","title":"TextRequest"},"ThreadsPublishRequest":{"properties":{"account_id":{"type":"integer","title":"Account Id","description":"ID of the connected Threads account (from GET /social/accounts)."},"media_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Media Url","description":"Public URL of the video or image to publish."},"caption":{"type":"string","title":"Caption","description":"Post caption (supports hashtags).","default":""},"placement":{"type":"string","enum":["reels","timeline"],"title":"Placement","description":"Where to publish: Reels or main timeline.","default":"timeline"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["account_id","media_url"],"title":"ThreadsPublishRequest"},"TikTokCarouselRequest":{"properties":{"topic":{"type":"string","title":"Topic"},"format":{"type":"string","enum":["Problem-Solution","Listicle","Tutorial","Before & After"],"title":"Format","default":"Problem-Solution"},"image_count":{"type":"integer","maximum":10.0,"minimum":3.0,"title":"Image Count","default":6},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["topic"],"title":"TikTokCarouselRequest"},"TikTokConnectUrlRequest":{"properties":{"external_user_id":{"type":"string","title":"External User Id","description":"Your identifier for the end-user whose TikTok account should be connected (e.g. a user id from your own system)."},"redirect_to":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Redirect To","description":"URL to redirect the user to after they complete the OAuth consent screen. Must be a full URL (e.g. https://yourapp.com/connected).","default":""}},"type":"object","required":["external_user_id"],"title":"TikTokConnectUrlRequest"},"TikTokLoginRequest":{"properties":{"code_challenge":{"type":"string","title":"Code Challenge"},"code_verifier":{"type":"string","title":"Code Verifier"},"account_name":{"type":"string","title":"Account Name","default":""}},"type":"object","required":["code_challenge","code_verifier"],"title":"TikTokLoginRequest"},"TikTokProfileRequest":{"properties":{"username":{"type":"string","title":"Username"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["username"],"title":"TikTokProfileRequest"},"TikTokPublishRequest":{"properties":{"account_id":{"type":"integer","title":"Account Id","description":"ID of the connected TikTok account (from GET /social/accounts)."},"media_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Media Url","description":"Public URL of the video to upload."},"title":{"type":"string","title":"Title","description":"Video caption / title (max 150 chars).","default":""},"privacy_level":{"type":"string","enum":["PUBLIC_TO_EVERYONE","MUTUAL_FOLLOW_FRIENDS","FOLLOWER_OF_CREATOR","SELF_ONLY"],"title":"Privacy Level","description":"Who can view the video.","default":"PUBLIC_TO_EVERYONE"},"allow_comment":{"type":"boolean","title":"Allow Comment","description":"Allow comments on the video.","default":true},"allow_duet":{"type":"boolean","title":"Allow Duet","description":"Allow Duet for this video.","default":true},"allow_stitch":{"type":"boolean","title":"Allow Stitch","description":"Allow Stitch for this video.","default":true},"is_ai_generated":{"type":"boolean","title":"Is Ai Generated","description":"Mark the video as AI-generated content.","default":false},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["account_id","media_url"],"title":"TikTokPublishRequest"},"TikTokVideosRequest":{"properties":{"username":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Username"},"count":{"type":"integer","maximum":30.0,"minimum":1.0,"title":"Count","default":10},"cursor":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Cursor"},"min_likes":{"anyOf":[{"type":"string","enum":["Any","100+","1k+","5k+","10k+","50k+","100k+","500k+","1M+","5M+","10M+"]},{"type":"null"}],"title":"Min Likes","default":"Any"},"min_views":{"anyOf":[{"type":"string","enum":["Any","100+","1k+","5k+","10k+","50k+","100k+","500k+","1M+","5M+","10M+"]},{"type":"null"}],"title":"Min Views","default":"Any"},"min_shares":{"anyOf":[{"type":"string","enum":["Any","100+","1k+","5k+","10k+","50k+","100k+","500k+","1M+","5M+","10M+"]},{"type":"null"}],"title":"Min Shares","default":"Any"},"min_comments":{"anyOf":[{"type":"string","enum":["Any","100+","1k+","5k+","10k+","50k+","100k+","500k+","1M+","5M+","10M+"]},{"type":"null"}],"title":"Min Comments","default":"Any"},"min_duration":{"anyOf":[{"type":"string","enum":["Any","15s","30s","45s","1m","2m","3m","5m","10m"]},{"type":"null"}],"title":"Min Duration","default":"Any"},"max_duration":{"anyOf":[{"type":"string","enum":["Any","15s","30s","45s","1m","2m","3m","5m","10m"]},{"type":"null"}],"title":"Max Duration","default":"Any"},"hashtags":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Hashtags"},"published_after":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Published After"},"published_before":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Published Before"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","title":"TikTokVideosRequest"},"TopazUpscaleI2IRequest":{"properties":{"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"upscale_factor":{"type":"integer","enum":[1,2,4,8],"title":"Upscale Factor","default":2},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["image_url"],"title":"TopazUpscaleI2IRequest"},"TopazUpscaleV2VRequest":{"properties":{"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"upscale_factor":{"type":"integer","enum":[1,2,4],"title":"Upscale Factor","default":2},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["video_url"],"title":"TopazUpscaleV2VRequest"},"TransactionResponse":{"properties":{"serial_number":{"type":"integer","title":"Serial Number"},"description":{"type":"string","title":"Description"},"created_at":{"type":"string","format":"date-time","title":"Created At"},"amount":{"type":"number","title":"Amount"}},"type":"object","required":["serial_number","description","created_at","amount"],"title":"TransactionResponse"},"TripoH31I23DRequest":{"properties":{"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"texture":{"type":"boolean","title":"Texture","default":true},"texture_quality":{"type":"string","enum":["standard","detailed"],"title":"Texture Quality","default":"standard"},"geometry_quality":{"type":"string","enum":["standard","detailed"],"title":"Geometry Quality","default":"standard"},"pbr":{"type":"boolean","title":"Pbr","default":false},"quad":{"type":"boolean","title":"Quad","default":false},"auto_size":{"type":"boolean","title":"Auto Size","default":false},"face_limit":{"anyOf":[{"type":"integer","maximum":2000000.0,"minimum":1000.0},{"type":"null"}],"title":"Face Limit"},"model_seed":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Model Seed"},"texture_seed":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Texture Seed"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["image_url"],"title":"TripoH31I23DRequest"},"TripoH31MV23DRequest":{"properties":{"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":4,"minItems":2,"title":"Images List"},"texture":{"type":"boolean","title":"Texture","default":true},"texture_quality":{"type":"string","enum":["standard","detailed"],"title":"Texture Quality","default":"standard"},"geometry_quality":{"type":"string","enum":["standard","detailed"],"title":"Geometry Quality","default":"standard"},"pbr":{"type":"boolean","title":"Pbr","default":false},"quad":{"type":"boolean","title":"Quad","default":false},"auto_size":{"type":"boolean","title":"Auto Size","default":false},"face_limit":{"anyOf":[{"type":"integer","maximum":2000000.0,"minimum":1000.0},{"type":"null"}],"title":"Face Limit"},"model_seed":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Model Seed"},"texture_seed":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Texture Seed"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["images_list"],"title":"TripoH31MV23DRequest"},"TripoH31T23DRequest":{"properties":{"prompt":{"type":"string","maxLength":1024,"title":"Prompt"},"negative_prompt":{"anyOf":[{"type":"string","maxLength":1024},{"type":"null"}],"title":"Negative Prompt"},"texture":{"type":"boolean","title":"Texture","default":true},"texture_quality":{"type":"string","enum":["standard","detailed"],"title":"Texture Quality","default":"standard"},"geometry_quality":{"type":"string","enum":["standard","detailed"],"title":"Geometry Quality","default":"standard"},"pbr":{"type":"boolean","title":"Pbr","default":false},"quad":{"type":"boolean","title":"Quad","default":false},"auto_size":{"type":"boolean","title":"Auto Size","default":false},"face_limit":{"anyOf":[{"type":"integer","maximum":2000000.0,"minimum":1000.0},{"type":"null"}],"title":"Face Limit"},"model_seed":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Model Seed"},"image_seed":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Image Seed"},"texture_seed":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Texture Seed"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"TripoH31T23DRequest"},"TripoP1I23DRequest":{"properties":{"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"texture":{"type":"boolean","title":"Texture","default":true},"face_limit":{"anyOf":[{"type":"integer","maximum":20000.0,"minimum":48.0},{"type":"null"}],"title":"Face Limit"},"model_seed":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Model Seed"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["image_url"],"title":"TripoP1I23DRequest"},"TripoP1T23DRequest":{"properties":{"prompt":{"type":"string","maxLength":1024,"title":"Prompt"},"texture":{"type":"boolean","title":"Texture","default":true},"face_limit":{"anyOf":[{"type":"integer","maximum":20000.0,"minimum":48.0},{"type":"null"}],"title":"Face Limit"},"model_seed":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Model Seed"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"TripoP1T23DRequest"},"TwitterPostsRequest":{"properties":{"username":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Username"},"count":{"type":"integer","maximum":30.0,"minimum":1.0,"title":"Count","default":10},"cursor":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Cursor"},"min_likes":{"anyOf":[{"type":"string","enum":["Any","100+","1k+","5k+","10k+","50k+","100k+","500k+","1M+","5M+","10M+"]},{"type":"null"}],"title":"Min Likes","default":"Any"},"min_views":{"anyOf":[{"type":"string","enum":["Any","100+","1k+","5k+","10k+","50k+","100k+","500k+","1M+","5M+","10M+"]},{"type":"null"}],"title":"Min Views","default":"Any"},"min_shares":{"anyOf":[{"type":"string","enum":["Any","100+","1k+","5k+","10k+","50k+","100k+","500k+","1M+","5M+","10M+"]},{"type":"null"}],"title":"Min Shares","default":"Any"},"min_comments":{"anyOf":[{"type":"string","enum":["Any","100+","1k+","5k+","10k+","50k+","100k+","500k+","1M+","5M+","10M+"]},{"type":"null"}],"title":"Min Comments","default":"Any"},"min_duration":{"anyOf":[{"type":"string","enum":["Any","15s","30s","45s","1m","2m","3m","5m","10m"]},{"type":"null"}],"title":"Min Duration","default":"Any"},"max_duration":{"anyOf":[{"type":"string","enum":["Any","15s","30s","45s","1m","2m","3m","5m","10m"]},{"type":"null"}],"title":"Max Duration","default":"Any"},"hashtags":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Hashtags"},"published_after":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Published After"},"published_before":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Published Before"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","title":"TwitterPostsRequest"},"UpdateAgentEmbedRequest":{"properties":{"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"allowed_origins":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Allowed Origins"},"is_active":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Active"}},"type":"object","title":"UpdateAgentEmbedRequest"},"UpdateBase":{"properties":{"title":{"type":"string","title":"Title"},"description":{"type":"string","title":"Description"},"url_path":{"type":"string","title":"Url Path"},"update_value":{"type":"integer","title":"Update Value"},"image_video_url":{"type":"string","title":"Image Video Url"},"cost":{"type":"number","title":"Cost"}},"type":"object","required":["title","description","url_path","update_value","image_video_url","cost"],"title":"UpdateBase"},"UpdateSessionRequest":{"properties":{"name":{"type":"string","title":"Name"}},"type":"object","required":["name"],"title":"UpdateSessionRequest"},"UsageLogDetailResponse":{"properties":{"id":{"type":"string","title":"Id"},"model_name":{"type":"string","title":"Model Name"},"status":{"type":"string","title":"Status"},"cost":{"type":"number","title":"Cost"},"created_at":{"type":"string","format":"date-time","title":"Created At"},"time_taken":{"type":"number","title":"Time Taken"},"input_data":{"additionalProperties":true,"type":"object","title":"Input Data"},"output_data":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Output Data"},"schema_data":{"additionalProperties":true,"type":"object","title":"Schema Data"},"review_status":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Review Status","default":"none"}},"type":"object","required":["id","model_name","status","cost","created_at","time_taken","input_data","schema_data"],"title":"UsageLogDetailResponse"},"UsageLogIdResponse":{"properties":{"usage_log_id":{"type":"string","title":"Usage Log Id"},"request_id":{"type":"string","title":"Request Id"},"status":{"type":"string","title":"Status"}},"type":"object","required":["usage_log_id","request_id","status"],"title":"UsageLogIdResponse"},"UsageLogSummaryResponse":{"properties":{"id":{"type":"string","title":"Id"},"model_name":{"type":"string","title":"Model Name"},"status":{"type":"string","title":"Status"},"created_at":{"type":"string","format":"date-time","title":"Created At"},"cost":{"type":"number","title":"Cost"},"output_data":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Output Data"},"input_data":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Input Data"},"review_status":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Review Status","default":"none"}},"type":"object","required":["id","model_name","status","created_at","cost"],"title":"UsageLogSummaryResponse"},"ValidationError":{"properties":{"loc":{"items":{"anyOf":[{"type":"string"},{"type":"integer"}]},"type":"array","title":"Location"},"msg":{"type":"string","title":"Message"},"type":{"type":"string","title":"Error Type"}},"type":"object","required":["loc","msg","type"],"title":"ValidationError"},"Veo314KVideoRequest":{"properties":{"request_id":{"type":"string","title":"Request Id"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["request_id"],"title":"Veo314KVideoRequest"},"Veo31ExtendVideoRequest":{"properties":{"request_id":{"type":"string","title":"Request Id"},"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["request_id","prompt"],"title":"Veo31ExtendVideoRequest"},"Veo31FastImageToVideoRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"last_image":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Last Image"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["720p","1080p","4k"],"title":"Resolution","default":"1080p"},"duration":{"type":"integer","const":8,"title":"Duration","default":8}},"type":"object","required":["prompt","image_url"],"title":"Veo31FastImageToVideoRequest"},"Veo31FastTextToVideoRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["720p","1080p","4k"],"title":"Resolution","default":"1080p"},"duration":{"type":"integer","const":8,"title":"Duration","default":8}},"type":"object","required":["prompt"],"title":"Veo31FastTextToVideoRequest"},"Veo31ImageToVideoRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"last_image":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Last Image"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["720p","1080p","4k"],"title":"Resolution","default":"1080p"},"duration":{"type":"integer","const":8,"title":"Duration","default":8}},"type":"object","required":["prompt","image_url"],"title":"Veo31ImageToVideoRequest"},"Veo31ReferenceToVideoRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","const":8,"title":"Duration","default":8},"resolution":{"type":"string","enum":["720p","1080p","4k"],"title":"Resolution","default":"720p"},"generate_audio":{"type":"boolean","title":"Generate Audio","default":true}},"type":"object","required":["prompt","images_list"],"title":"Veo31ReferenceToVideoRequest"},"Veo31TextToVideoRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["720p","1080p","4k"],"title":"Resolution","default":"1080p"},"duration":{"type":"integer","const":8,"title":"Duration","default":8}},"type":"object","required":["prompt"],"title":"Veo31TextToVideoRequest"},"Veo3I2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"aspect_ratio":{"type":"string","enum":["9:16","16:9"],"title":"Aspect Ratio","default":"16:9"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","images_list"],"title":"Veo3I2VRequest"},"Veo3T2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["9:16","16:9"],"title":"Aspect Ratio","default":"16:9"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Veo3T2VRequest"},"VideoBackgroundRemoverRequest":{"properties":{"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"background_color":{"type":"string","enum":["Transparent","Black","White","Gray","Red","Green","Blue","Yellow","Cyan","Magenta","Orange"],"title":"Background Color","default":"Transparent"},"output_container_and_codec":{"type":"string","enum":["webm_vp9","mp4_h264","mp4_h265","mov_h265","mov_proresks","mkv_h264","mkv_h265","mkv_vp9","gif"],"title":"Output Container And Codec","default":"webm_vp9"},"preserve_audio":{"type":"boolean","title":"Preserve Audio","default":true},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["video_url"],"title":"VideoBackgroundRemoverRequest"},"VideoCombinerRequest":{"properties":{"videos_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Videos List"},"aspect_ratio":{"type":"string","enum":["auto","16:9","9:16","1:1","4:3","3:4","21:9","9:21"],"title":"Aspect Ratio","default":"auto"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["videos_list"],"title":"VideoCombinerRequest"},"VideoEffectsRequest":{"properties":{"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"name":{"type":"string","enum":["Balloon Flyaway","Blow Kiss","Body Shake","Break Glass","Carry Me","Cartoon Doll","Cheek Kiss","Child Memory","Couple Arrival","Fairy Me","Fashion Stride","Fisherman","Flower Receive","Flying","French Kiss","Gender Swap","Golden Epoch","Hair Swap","Hugging","Jiggle Up","Kissing Pro","Live Memory","Love Drop","Melt","Minecraft","Muscling","Nap Me 360p","Paperman","Pilot","Pinch","Pixel Me","Romantic Lift","Sexy Me","Slice Therapy","Soul Depart","Split Stance Human","Squid Game","Toy Me","Walk Forward","Zoom In Fast","Zoom Out"],"title":"Name","default":"Balloon Flyaway"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["image_url"],"title":"VideoEffectsRequest"},"VideoFaceSwapRequest":{"properties":{"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"target_gender":{"type":"string","enum":["All","Female","Male"],"title":"Target Gender","default":"All"},"target_index":{"type":"integer","maximum":10.0,"minimum":0.0,"title":"Target Index","default":0},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["image_url","video_url"],"title":"VideoFaceSwapRequest"},"VideoPromptRequest":{"properties":{"url":{"type":"string","title":"Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","title":"Aspect Ratio","default":"9:16"},"sync":{"type":"boolean","title":"Sync","default":false}},"type":"object","required":["url"],"title":"VideoPromptRequest"},"VideoWatermarkRemoverRequest":{"properties":{"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["video_url"],"title":"VideoWatermarkRemoverRequest"},"ViduI2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"aspect_ratio":{"type":"string","enum":["16:9","1:1"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["360p","720p","1080p"],"title":"Resolution","default":"720p"},"duration":{"type":"integer","const":4,"title":"Duration","default":4}},"type":"object","required":["prompt","images_list"],"title":"ViduI2VRequest"},"ViduQ1ReferenceRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1"],"title":"Aspect Ratio","default":"1:1"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","images_list"],"title":"ViduQ1ReferenceRequest"},"ViduQ2I2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"resolution":{"type":"string","enum":["720p","1080p"],"title":"Resolution","default":"720p"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","enum":[2,3,4,5,6,7,8],"title":"Duration","default":5},"bgm":{"type":"boolean","title":"Bgm","default":false},"movement_amplitude":{"type":"string","enum":["auto","small","medium","large"],"title":"Movement Amplitude","default":"auto"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url"],"title":"ViduQ2I2VRequest"},"ViduQ2ProRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"last_image":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Last Image"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","enum":[1,2,3,4,5,6,7,8],"title":"Duration","default":5},"resolution":{"type":"string","enum":["540p","720p","1080p"],"title":"Resolution","default":"720p"},"bgm":{"type":"boolean","title":"Bgm","default":true},"movement_amplitude":{"type":"string","enum":["auto","small","medium","large"],"title":"Movement Amplitude","default":"auto"}},"type":"object","required":["prompt","image_url","last_image"],"title":"ViduQ2ProRequest"},"ViduQ2ReferenceImageRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["auto","16:9","9:16","1:1","4:3","3:4","3:2","2:3","21:9"],"title":"Aspect Ratio","default":"1:1"},"resolution":{"type":"string","enum":["1k","2k","4k"],"title":"Resolution","default":"1k"}},"type":"object","required":["prompt","images_list"],"title":"ViduQ2ReferenceImageRequest"},"ViduQ2ReferenceRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","enum":[2,3,4,5,6,7,8],"title":"Duration","default":5},"resolution":{"type":"string","enum":["360p","540p","720p","1080p"],"title":"Resolution","default":"720p"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","4:3","3:4","1:1"],"title":"Aspect Ratio","default":"16:9"},"movement_amplitude":{"type":"string","enum":["auto","small","medium","large"],"title":"Movement Amplitude","default":"auto"}},"type":"object","required":["prompt","images_list"],"title":"ViduQ2ReferenceRequest"},"ViduQ2T2IRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4","3:2","2:3","21:9"],"title":"Aspect Ratio","default":"1:1"},"resolution":{"type":"string","enum":["1k","2k","4k"],"title":"Resolution","default":"1k"}},"type":"object","required":["prompt"],"title":"ViduQ2T2IRequest"},"ViduQ2T2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"resolution":{"type":"string","enum":["720p","1080p"],"title":"Resolution","default":"720p"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","enum":[2,3,4,5,6,7,8],"title":"Duration","default":5},"bgm":{"type":"boolean","title":"Bgm","default":false},"movement_amplitude":{"type":"string","enum":["auto","small","medium","large"],"title":"Movement Amplitude","default":"auto"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"ViduQ2T2VRequest"},"ViduQ2TurboRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"last_image":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Last Image"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"duration":{"type":"integer","enum":[2,3,4,5,6,7,8],"title":"Duration","default":5},"resolution":{"type":"string","enum":["720p","1080p"],"title":"Resolution","default":"720p"},"bgm":{"type":"boolean","title":"Bgm","default":true},"movement_amplitude":{"type":"string","enum":["auto","small","medium","large"],"title":"Movement Amplitude","default":"auto"}},"type":"object","required":["prompt","image_url","last_image"],"title":"ViduQ2TurboRequest"},"ViduQ3FlfRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"last_image":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Last Image"},"resolution":{"type":"string","enum":["360p","540p","720p","1080p"],"title":"Resolution","default":"720p"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","4:3","3:4","1:1"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","enum":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16],"title":"Duration","default":5},"audio":{"type":"boolean","title":"Audio","default":false},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url","last_image"],"title":"ViduQ3FlfRequest"},"ViduQ3I2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"resolution":{"type":"string","enum":["360p","540p","720p","1080p"],"title":"Resolution","default":"720p"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","4:3","3:4","1:1"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","enum":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16],"title":"Duration","default":5},"audio":{"type":"boolean","title":"Audio","default":false},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url"],"title":"ViduQ3I2VRequest"},"ViduQ3T2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"resolution":{"type":"string","enum":["360p","540p","720p","1080p"],"title":"Resolution","default":"720p"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","4:3","3:4","1:1"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","enum":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16],"title":"Duration","default":5},"audio":{"type":"boolean","title":"Audio","default":false},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"ViduQ3T2VRequest"},"ViduT2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","const":"9:16","title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","const":"1080p","title":"Resolution","default":"1080p"},"duration":{"type":"integer","const":4,"title":"Duration","default":4}},"type":"object","required":["prompt"],"title":"ViduT2VRequest"},"VolcengineVideoToVideoLipSyncRequest":{"properties":{"mode":{"type":"string","enum":["lite","basic"],"title":"Mode","default":"lite"},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"audio_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Audio Url"},"separate_vocal":{"type":"boolean","title":"Separate Vocal","default":false},"open_scenedet":{"type":"boolean","title":"Open Scenedet","default":false},"align_audio":{"type":"boolean","title":"Align Audio","default":true},"align_audio_reverse":{"type":"boolean","title":"Align Audio Reverse","default":false},"templ_start_seconds":{"type":"number","title":"Templ Start Seconds","default":0},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["video_url","audio_url"],"title":"VolcengineVideoToVideoLipSyncRequest"},"Wan21I2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9"],"title":"Aspect Ratio","default":"16:9"},"quality":{"type":"string","enum":["medium","high"],"title":"Quality","default":"medium"},"resolution":{"type":"string","enum":["480p","720p"],"title":"Resolution","default":"480p"},"duration":{"type":"integer","enum":[5,10],"title":"Duration","default":5}},"type":"object","required":["prompt","image_url"],"title":"Wan21I2VRequest"},"Wan21R2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["480p","720p"],"title":"Resolution","default":"480p"},"duration":{"type":"integer","enum":[5,10],"title":"Duration","default":5}},"type":"object","required":["prompt","images_list"],"title":"Wan21R2VRequest"},"Wan21T2IRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"width":{"type":"integer","maximum":1536.0,"minimum":256.0,"title":"Width","default":1024},"height":{"type":"integer","maximum":1536.0,"minimum":256.0,"title":"Height","default":1024}},"type":"object","required":["prompt"],"title":"Wan21T2IRequest"},"Wan21T2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9"],"title":"Aspect Ratio","default":"16:9"},"quality":{"type":"string","enum":["medium","high"],"title":"Quality","default":"medium"},"resolution":{"type":"string","enum":["480p","720p"],"title":"Resolution","default":"480p"},"duration":{"type":"integer","enum":[5,10],"title":"Duration","default":5}},"type":"object","required":["prompt"],"title":"Wan21T2VRequest"},"Wan22ATVRequest":{"properties":{"prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"audio_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Audio Url"},"resolution":{"type":"string","enum":["480p","720p"],"title":"Resolution","default":"480p"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["image_url","audio_url"],"title":"Wan22ATVRequest"},"Wan22AnimateRequest":{"properties":{"prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"mode":{"type":"string","enum":["animate","replace"],"title":"Mode","default":"animate"},"resolution":{"type":"string","enum":["480p","720p"],"title":"Resolution","default":"480p"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["image_url","video_url"],"title":"Wan22AnimateRequest"},"Wan22EditVideoRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"resolution":{"type":"string","enum":["480p","720p"],"title":"Resolution","default":"480p"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","video_url"],"title":"Wan22EditVideoRequest"},"Wan22Fast5bT2V":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["9:16","16:9","1:1"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["480p","580p","720p"],"title":"Resolution","default":"480p"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Wan22Fast5bT2V"},"Wan22I2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"last_image":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Last Image"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9"],"title":"Aspect Ratio","default":"16:9"},"quality":{"type":"string","enum":["medium","high"],"title":"Quality","default":"medium"},"resolution":{"type":"string","enum":["480p","720p"],"title":"Resolution","default":"480p"},"duration":{"type":"integer","enum":[5,8],"title":"Duration","default":5}},"type":"object","required":["prompt","image_url"],"title":"Wan22I2VRequest"},"Wan22SpicyExtendVideoRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"resolution":{"type":"string","enum":["480p","720p"],"title":"Resolution","default":"480p"},"duration":{"type":"integer","enum":[5,8],"title":"Duration","default":5}},"type":"object","required":["prompt","video_url"],"title":"Wan22SpicyExtendVideoRequest"},"Wan22SpicyI2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"resolution":{"type":"string","enum":["480p","720p"],"title":"Resolution","default":"480p"},"duration":{"type":"integer","enum":[5,8],"title":"Duration","default":5}},"type":"object","required":["prompt","image_url"],"title":"Wan22SpicyI2VRequest"},"Wan22T2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9"],"title":"Aspect Ratio","default":"16:9"},"quality":{"type":"string","enum":["medium","high"],"title":"Quality","default":"medium"},"resolution":{"type":"string","enum":["480p","720p"],"title":"Resolution","default":"480p"},"duration":{"type":"integer","enum":[5,8],"title":"Duration","default":5}},"type":"object","required":["prompt"],"title":"Wan22T2VRequest"},"Wan25EditImageRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"width":{"type":"integer","maximum":5000.0,"minimum":384.0,"title":"Width","default":2048},"height":{"type":"integer","maximum":5000.0,"minimum":384.0,"title":"Height","default":2048}},"type":"object","required":["prompt","images_list"],"title":"Wan25EditImageRequest"},"Wan25I2VFastRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"audio_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Audio Url"},"resolution":{"type":"string","enum":["720p","1080p"],"title":"Resolution","default":"720p"},"duration":{"type":"integer","enum":[5,10],"title":"Duration","default":5},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url"],"title":"Wan25I2VFastRequest"},"Wan25I2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"audio_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Audio Url"},"resolution":{"type":"string","enum":["480p","720p","1080p"],"title":"Resolution","default":"480p"},"duration":{"type":"integer","enum":[5,10],"title":"Duration","default":5},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url"],"title":"Wan25I2VRequest"},"Wan25T2IRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"width":{"type":"integer","maximum":1440.0,"minimum":768.0,"title":"Width","default":1024},"height":{"type":"integer","maximum":1440.0,"minimum":768.0,"title":"Height","default":1322}},"type":"object","required":["prompt"],"title":"Wan25T2IRequest"},"Wan25T2VFastRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"audio_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Audio Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16"],"title":"Aspect Ratio","default":"9:16"},"resolution":{"type":"string","enum":["720p","1080p"],"title":"Resolution","default":"720p"},"duration":{"type":"integer","enum":[5,10],"title":"Duration","default":5},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Wan25T2VFastRequest"},"Wan25T2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"audio_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Audio Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16"],"title":"Aspect Ratio","default":"9:16"},"resolution":{"type":"string","enum":["480p","720p","1080p"],"title":"Resolution","default":"480p"},"duration":{"type":"integer","enum":[5,10],"title":"Duration","default":5},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Wan25T2VRequest"},"Wan26I2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"audio_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Audio Url"},"resolution":{"type":"string","enum":["720p","1080p"],"title":"Resolution","default":"720p"},"duration":{"type":"integer","enum":[5,10,15],"title":"Duration","default":5},"shot_type":{"type":"string","enum":["single","multi"],"title":"Shot Type","default":"single"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url"],"title":"Wan26I2VRequest"},"Wan26ImageEditRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","images_list"],"title":"Wan26ImageEditRequest"},"Wan26T2IRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"width":{"type":"integer","maximum":1440.0,"minimum":768.0,"title":"Width","default":1024},"height":{"type":"integer","maximum":1440.0,"minimum":768.0,"title":"Height","default":1024},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Wan26T2IRequest"},"Wan26T2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"audio_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Audio Url"},"aspect_ratio":{"type":"string","enum":["16:9","9:16"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["720p","1080p"],"title":"Resolution","default":"720p"},"duration":{"type":"integer","enum":[5,10,15],"title":"Duration","default":5},"shot_type":{"type":"string","enum":["single","multi"],"title":"Shot Type","default":"single"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Wan26T2VRequest"},"Wan27I2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"negative_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Negative Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"last_image":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Last Image"},"audio_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Audio Url"},"resolution":{"type":"string","enum":["720p","1080p"],"title":"Resolution","default":"720p"},"duration":{"type":"integer","maximum":15.0,"minimum":2.0,"title":"Duration","default":5},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url"],"title":"Wan27I2VRequest"},"Wan27ImageEditRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","title":"Images List"},"aspect_ratio":{"type":"string","enum":["1:1","4:3","3:4","16:9","9:16","21:9","9:21","3:2","2:3"],"title":"Aspect Ratio","default":"1:1"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","images_list"],"title":"Wan27ImageEditRequest"},"Wan27R2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array"},{"type":"null"}],"title":"Images List"},"videos_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array"},{"type":"null"}],"title":"Videos List"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"negative_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Negative Prompt"},"resolution":{"type":"string","enum":["720p","1080p"],"title":"Resolution","default":"720p"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","maximum":10.0,"minimum":2.0,"title":"Duration","default":5},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Wan27R2VRequest"},"Wan27T2IRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["1:1","4:3","3:4","16:9","9:16","21:9","9:21","3:2","2:3"],"title":"Aspect Ratio","default":"1:1"},"thinking_mode":{"type":"boolean","title":"Thinking Mode","default":true},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Wan27T2IRequest"},"Wan27T2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"negative_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Negative Prompt"},"audio_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Audio Url"},"resolution":{"type":"string","enum":["720p","1080p"],"title":"Resolution","default":"720p"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","maximum":15.0,"minimum":2.0,"title":"Duration","default":5},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Wan27T2VRequest"},"Wan27VideoEditRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"images_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array"},{"type":"null"}],"title":"Images List"},"negative_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Negative Prompt"},"resolution":{"type":"string","enum":["720p","1080p"],"title":"Resolution","default":"720p"},"duration":{"type":"integer","maximum":10.0,"minimum":0.0,"title":"Duration","default":0},"audio_setting":{"type":"string","enum":["auto","origin"],"title":"Audio Setting","default":"auto"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","video_url"],"title":"Wan27VideoEditRequest"},"Wan27VideoExtendRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"video_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Video Url"},"audio_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Audio Url"},"negative_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Negative Prompt"},"resolution":{"type":"string","enum":["720p","1080p"],"title":"Resolution","default":"720p"},"duration":{"type":"integer","maximum":15.0,"minimum":5.0,"title":"Duration","default":5},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","video_url"],"title":"Wan27VideoExtendRequest"},"Wan30I2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"last_image":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Last Image"},"resolution":{"type":"string","enum":["480p","720p","1080p"],"title":"Resolution","default":"720p"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","maximum":30.0,"minimum":2.0,"title":"Duration","default":5},"thinking_mode":{"type":"boolean","title":"Thinking Mode","default":false},"enable_audio":{"type":"boolean","title":"Enable Audio","default":true},"seed":{"type":"integer","title":"Seed","default":-1},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url"],"title":"Wan30I2VRequest"},"Wan30R2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"images_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":10},{"type":"null"}],"title":"Images List"},"videos_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":5},{"type":"null"}],"title":"Videos List"},"audios_list":{"anyOf":[{"items":{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},"type":"array","maxItems":5},{"type":"null"}],"title":"Audios List"},"resolution":{"type":"string","enum":["480p","720p","1080p"],"title":"Resolution","default":"720p"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","maximum":30.0,"minimum":2.0,"title":"Duration","default":5},"thinking_mode":{"type":"boolean","title":"Thinking Mode","default":false},"enable_audio":{"type":"boolean","title":"Enable Audio","default":true},"seed":{"type":"integer","title":"Seed","default":-1},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Wan30R2VRequest"},"Wan30T2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"resolution":{"type":"string","enum":["480p","720p","1080p"],"title":"Resolution","default":"720p"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","4:3","3:4"],"title":"Aspect Ratio","default":"16:9"},"duration":{"type":"integer","maximum":30.0,"minimum":2.0,"title":"Duration","default":5},"thinking_mode":{"type":"boolean","title":"Thinking Mode","default":false},"enable_audio":{"type":"boolean","title":"Enable Audio","default":true},"seed":{"type":"integer","title":"Seed","default":-1},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"Wan30T2VRequest"},"WanEffectRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"name":{"type":"string","title":"Name"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"},"aspect_ratio":{"type":"string","enum":["9:16","16:9"],"title":"Aspect Ratio","default":"16:9"},"quality":{"type":"string","enum":["medium","high"],"title":"Quality","default":"medium"},"resolution":{"type":"string","enum":["480p","720p"],"title":"Resolution","default":"480p"},"duration":{"type":"integer","enum":[5,10],"title":"Duration","default":5}},"type":"object","required":["prompt","image_url","name"],"title":"WanEffectRequest"},"WanLoRAI2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"lora_list":{"items":{"$ref":"#/components/schemas/LoraItem"},"type":"array","title":"Lora List","default":[]},"aspect_ratio":{"type":"string","enum":["16:9","9:16"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["480p","720p"],"title":"Resolution","default":"480p"},"quality":{"type":"string","enum":["medium","high"],"title":"Quality","default":"medium"},"duration":{"type":"integer","enum":[5,10],"title":"Duration","default":5},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url"],"title":"WanLoRAI2VRequest"},"WanLoRAT2VRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"lora_list":{"items":{"$ref":"#/components/schemas/LoraItem"},"type":"array","title":"Lora List","default":[]},"aspect_ratio":{"type":"string","enum":["16:9","9:16"],"title":"Aspect Ratio","default":"16:9"},"resolution":{"type":"string","enum":["480p","720p"],"title":"Resolution","default":"480p"},"quality":{"type":"string","enum":["medium","high"],"title":"Quality","default":"medium"},"duration":{"type":"integer","enum":[5,10],"title":"Duration","default":5},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"WanLoRAT2VRequest"},"WanPromptRequest":{"properties":{"prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Prompt"},"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"name":{"type":"string","title":"Name"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["image_url","name"],"title":"WanPromptRequest"},"WanSpicyI2VRequest":{"properties":{"image_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Image Url"},"audio_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Audio Url"},"prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Prompt"},"negative_prompt":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Negative Prompt"},"resolution":{"type":"string","enum":["720p","1080p"],"title":"Resolution","default":"720p"},"duration":{"type":"integer","enum":[5,10,15],"title":"Duration","default":5},"shot_type":{"type":"string","enum":["single","multi"],"title":"Shot Type","default":"single"},"enable_prompt_expansion":{"type":"boolean","title":"Enable Prompt Expansion","default":false},"seed":{"type":"integer","title":"Seed","default":-1},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["image_url"],"title":"WanSpicyI2VRequest"},"WhiteLabelCreditAdjustmentRequest":{"properties":{"credit_delta":{"anyOf":[{"type":"number","maximum":1000000.0,"minimum":-1000000.0},{"type":"string","pattern":"^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$"}],"title":"Credit Delta"},"reason":{"type":"string","maxLength":500,"minLength":3,"title":"Reason"}},"type":"object","required":["credit_delta","reason"],"title":"WhiteLabelCreditAdjustmentRequest"},"WhitelabelForgotPasswordRequest":{"properties":{"slug":{"type":"string","title":"Slug"},"email":{"type":"string","format":"email","title":"Email"}},"type":"object","required":["slug","email"],"title":"WhitelabelForgotPasswordRequest"},"WhitelabelInstanceCreate":{"properties":{"slug":{"type":"string","title":"Slug"},"app_name":{"type":"string","title":"App Name"}},"type":"object","required":["slug","app_name"],"title":"WhitelabelInstanceCreate"},"WhitelabelInstanceUpdate":{"properties":{"app_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"App Name"},"custom_domain":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Custom Domain"},"primary_color":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Primary Color"},"enabled_studios":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Enabled Studios"},"credits_on_signup":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Credits On Signup"},"credit_markup":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Credit Markup"},"sandbox_mode":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Sandbox Mode"}},"type":"object","title":"WhitelabelInstanceUpdate"},"WhitelabelLoginRequest":{"properties":{"slug":{"type":"string","title":"Slug"},"email":{"type":"string","format":"email","title":"Email"},"password":{"type":"string","title":"Password"}},"type":"object","required":["slug","email","password"],"title":"WhitelabelLoginRequest"},"WhitelabelRegisterRequest":{"properties":{"slug":{"type":"string","title":"Slug"},"email":{"type":"string","format":"email","title":"Email"},"password":{"type":"string","title":"Password"}},"type":"object","required":["slug","email","password"],"title":"WhitelabelRegisterRequest"},"WhitelabelResendOtpRequest":{"properties":{"slug":{"type":"string","title":"Slug"},"email":{"type":"string","format":"email","title":"Email"}},"type":"object","required":["slug","email"],"title":"WhitelabelResendOtpRequest"},"WhitelabelResetPasswordRequest":{"properties":{"slug":{"type":"string","title":"Slug"},"email":{"type":"string","format":"email","title":"Email"},"otp":{"type":"string","title":"Otp"},"new_password":{"type":"string","title":"New Password"}},"type":"object","required":["slug","email","otp","new_password"],"title":"WhitelabelResetPasswordRequest"},"WhitelabelSubscribeRequest":{"properties":{"tier_id":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Tier Id"},"price_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Price Id"}},"type":"object","title":"WhitelabelSubscribeRequest"},"WhitelabelSubscriptionCheckoutRequest":{"properties":{"plan":{"type":"string","title":"Plan"},"test_mode":{"type":"boolean","title":"Test Mode","default":false}},"type":"object","required":["plan"],"title":"WhitelabelSubscriptionCheckoutRequest"},"WhitelabelSubscriptionTierCreate":{"properties":{"stripe_price_id":{"type":"string","maxLength":255,"minLength":3,"title":"Stripe Price Id"},"tier_name":{"type":"string","maxLength":100,"minLength":1,"title":"Tier Name"},"credit_amount":{"anyOf":[{"type":"number","exclusiveMinimum":0.0},{"type":"string","pattern":"^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$"}],"title":"Credit Amount"},"is_active":{"type":"boolean","title":"Is Active","default":true}},"type":"object","required":["stripe_price_id","tier_name","credit_amount"],"title":"WhitelabelSubscriptionTierCreate"},"WhitelabelSubscriptionTierUpdate":{"properties":{"tier_name":{"anyOf":[{"type":"string","maxLength":100,"minLength":1},{"type":"null"}],"title":"Tier Name"},"credit_amount":{"anyOf":[{"type":"number","exclusiveMinimum":0.0},{"type":"string","pattern":"^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$"},{"type":"null"}],"title":"Credit Amount"},"is_active":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Active"}},"type":"object","title":"WhitelabelSubscriptionTierUpdate"},"WhitelabelTopupRequest":{"properties":{"amount":{"type":"integer","title":"Amount"}},"type":"object","required":["amount"],"title":"WhitelabelTopupRequest"},"WhitelabelVerifyOtpRequest":{"properties":{"slug":{"type":"string","title":"Slug"},"email":{"type":"string","format":"email","title":"Email"},"otp":{"type":"string","title":"Otp"}},"type":"object","required":["slug","email","otp"],"title":"WhitelabelVerifyOtpRequest"},"WorkflowAPIExecuteRequest":{"properties":{"inputs":{"additionalProperties":{"additionalProperties":true,"type":"object"},"type":"object","title":"Inputs","description":"Map of node IDs to their input parameters"},"webhook_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Webhook Url","description":"Optional webhook URL to receive completion/error notifications"}},"type":"object","required":["inputs"],"title":"WorkflowAPIExecuteRequest","description":"Request model for workflow execution via API"},"WorkflowArchitectRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"workflow_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Workflow Id"},"current_data":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Current Data"},"history":{"anyOf":[{"items":{"additionalProperties":true,"type":"object"},"type":"array"},{"type":"null"}],"title":"History"},"webhook_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Webhook Url"},"sync":{"type":"boolean","title":"Sync","default":false}},"type":"object","required":["prompt"],"title":"WorkflowArchitectRequest"},"XPublishRequest":{"properties":{"account_id":{"type":"integer","title":"Account Id","description":"ID of the connected X (Twitter) account (from GET /social/accounts)."},"media_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Media Url","description":"Public URL of the video or image to post."},"caption":{"type":"string","title":"Caption","description":"Tweet text (max 280 chars).","default":""},"reply_settings":{"type":"string","enum":["everyone","subscribers","mentioned"],"title":"Reply Settings","description":"Who can reply to the post. 'everyone' is Twitter's default (omitted from API call).","default":"everyone"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["account_id","media_url"],"title":"XPublishRequest"},"YouTubeConnectUrlRequest":{"properties":{"external_user_id":{"type":"string","title":"External User Id","description":"Your identifier for the end-user whose YouTube channel should be connected (e.g. a user id from your own system)."},"redirect_to":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Redirect To","description":"URL to redirect the user to after they complete the OAuth consent screen. Must be a full URL (e.g. https://yourapp.com/connected).","default":""}},"type":"object","required":["external_user_id"],"title":"YouTubeConnectUrlRequest"},"YouTubePublishRequest":{"properties":{"account_id":{"type":"integer","title":"Account Id","description":"ID of the connected YouTube account (from GET /social/accounts)."},"media_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Media Url","description":"Public URL of the video to upload."},"title":{"type":"string","title":"Title","description":"Video title (required by YouTube, max 100 chars)."},"description":{"type":"string","title":"Description","description":"Video description.","default":""},"tags":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Tags","description":"Keyword tags for the video."},"privacy":{"type":"string","enum":["public","private","unlisted"],"title":"Privacy","description":"Video visibility: public, private, or unlisted.","default":"public"},"category_id":{"anyOf":[{"type":"string","enum":["1","2","10","15","17","19","20","22","23","24","25","26","27","28","29"]},{"type":"null"}],"title":"Category Id","description":"YouTube video category ID (e.g. '22' = People & Blogs). Omit to default to People & Blogs."},"made_for_kids":{"type":"boolean","title":"Made For Kids","description":"Whether this video is made for kids (COPPA).","default":false},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["account_id","media_url","title"],"title":"YouTubePublishRequest"},"YouTubeSetThumbnailRequest":{"properties":{"account_id":{"type":"integer","title":"Account Id","description":"ID of the connected YouTube account (from GET /social/accounts)."},"video_id":{"type":"string","title":"Video Id","description":"YouTube video ID to set the thumbnail for (the 'v' parameter of its watch URL)."},"thumbnail_url":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Thumbnail Url","description":"Public URL of the thumbnail image (JPEG/PNG, under 2MB, 16:9 recommended)."},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["account_id","video_id","thumbnail_url"],"title":"YouTubeSetThumbnailRequest"},"YouTubeUpdateMetadataRequest":{"properties":{"account_id":{"type":"integer","title":"Account Id","description":"ID of the connected YouTube account (from GET /social/accounts)."},"video_id":{"type":"string","title":"Video Id","description":"YouTube video ID to update (the 'v' parameter of its watch URL)."},"title":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Title","description":"New video title (max 100 chars). Omit to leave unchanged."},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description","description":"New video description. Omit to leave unchanged."},"tags":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Tags","description":"New keyword tags. Omit to leave unchanged."},"category_id":{"anyOf":[{"type":"string","enum":["1","2","10","15","17","19","20","22","23","24","25","26","27","28","29"]},{"type":"null"}],"title":"Category Id","description":"New YouTube video category ID (e.g. '22' = People & Blogs). Omit to leave unchanged."},"privacy":{"anyOf":[{"type":"string","enum":["public","private","unlisted"]},{"type":"null"}],"title":"Privacy","description":"New video visibility. Omit to leave unchanged."},"made_for_kids":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Made For Kids","description":"Whether this video is made for kids (COPPA). Omit to leave unchanged."},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["account_id","video_id"],"title":"YouTubeUpdateMetadataRequest"},"YoutubeDownloadRequest":{"properties":{"video_url":{"type":"string","title":"Video Url"},"format":{"type":"string","enum":["mp3","m4a","aac","wav","opus","144","240","360","480","720","1080","1440","4k"],"title":"Format","default":"720"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["video_url"],"title":"YoutubeDownloadRequest"},"YoutubeShortsRequest":{"properties":{"query":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Query"},"channel_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Channel Id"},"count":{"type":"integer","maximum":30.0,"minimum":1.0,"title":"Count","default":10},"next":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Next"},"hl":{"anyOf":[{"type":"string","enum":["English","Spanish","French","German","Japanese","Chinese","Hindi","Portuguese","Russian","Italian"]},{"type":"null"}],"title":"Hl","default":"English"},"gl":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Gl","default":"US"},"upload_date":{"anyOf":[{"type":"string","enum":["Last Hour","Today","This Week","This Month","This Year"]},{"type":"null"}],"title":"Upload Date"},"type":{"anyOf":[{"type":"string","enum":["Video","Channel","Playlist"]},{"type":"null"}],"title":"Type","default":"Video"},"duration":{"anyOf":[{"type":"string","enum":["Short (< 4 minutes)","Long (> 20 minutes)"]},{"type":"null"}],"title":"Duration","default":"Short (< 4 minutes)"},"features":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Features"},"sort":{"anyOf":[{"type":"string","enum":["Relevance","Rating","Upload Date","View Count"]},{"type":"null"}],"title":"Sort","default":"View Count"},"min_likes":{"anyOf":[{"type":"string","enum":["Any","100+","1k+","5k+","10k+","50k+","100k+","500k+","1M+","5M+","10M+"]},{"type":"null"}],"title":"Min Likes","default":"Any"},"min_views":{"anyOf":[{"type":"string","enum":["Any","100+","1k+","5k+","10k+","50k+","100k+","500k+","1M+","5M+","10M+"]},{"type":"null"}],"title":"Min Views","default":"Any"},"min_shares":{"anyOf":[{"type":"string","enum":["Any","100+","1k+","5k+","10k+","50k+","100k+","500k+","1M+","5M+","10M+"]},{"type":"null"}],"title":"Min Shares","default":"Any"},"min_comments":{"anyOf":[{"type":"string","enum":["Any","100+","1k+","5k+","10k+","50k+","100k+","500k+","1M+","5M+","10M+"]},{"type":"null"}],"title":"Min Comments","default":"Any"},"min_duration":{"anyOf":[{"type":"string","enum":["Any","15s","30s","45s","1m","2m","3m","5m","10m"]},{"type":"null"}],"title":"Min Duration","default":"Any"},"max_duration":{"anyOf":[{"type":"string","enum":["Any","15s","30s","45s","1m","2m","3m","5m","10m"]},{"type":"null"}],"title":"Max Duration","default":"Any"},"hashtags":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Hashtags"},"published_after":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Published After"},"published_before":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Published Before"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","title":"YoutubeShortsRequest"},"ZImageBaseLoraRequest":{"properties":{"prompt":{"type":"string","title":"Prompt","description":"The positive prompt for the generation."},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"string"},{"type":"null"}],"title":"Image Url","description":"URL of the reference image to guide generation."},"loras":{"anyOf":[{"items":{"additionalProperties":true,"type":"object"},"type":"array"},{"type":"null"}],"title":"Loras","description":"List of LoRAs to apply (maximum 3). Example: [{'path': '...', 'scale': 1.0}]"},"aspect_ratio":{"anyOf":[{"type":"string","enum":["1:1","16:9","9:16","3:2","2:3","4:3","3:4","21:9","9:21"]},{"type":"null"}],"title":"Aspect Ratio","description":"Output image aspect ratio. Mapped to size (width*height).","default":"1:1"},"strength":{"anyOf":[{"type":"number","maximum":1.0,"minimum":0.0},{"type":"null"}],"title":"Strength","description":"Strength of transformation for reference image (0 to 1).","default":0.6},"output_format":{"anyOf":[{"type":"string","enum":["jpeg","png","webp"]},{"type":"null"}],"title":"Output Format","description":"Output image format.","default":"jpeg"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"ZImageBaseLoraRequest"},"ZImageBaseLoraTrainerRequest":{"properties":{"data":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Data","description":"URL to zip archive with images. Try to use at least 4 images in general the more the better. In addition to images the archive can contain text files with captions."},"trigger_word":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Trigger Word","description":"Optional trigger word. If a caption file exists, it is prepended when not already present. Leave empty to enable no-caption training."},"steps":{"anyOf":[{"type":"integer","maximum":10000.0,"minimum":1000.0},{"type":"null"}],"title":"Steps","description":"Number of steps to train the LoRA on.","default":1000},"learning_rate":{"anyOf":[{"type":"number","maximum":1.0,"minimum":0.0},{"type":"null"}],"title":"Learning Rate","description":"Learning rate for Z-Image Base training.","default":0.0001},"lora_rank":{"anyOf":[{"type":"integer","maximum":64.0,"minimum":1.0},{"type":"null"}],"title":"Lora Rank","description":"LoRA rank dimension.","default":16},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["data"],"title":"ZImageBaseLoraTrainerRequest"},"ZImageBaseRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"aspect_ratio":{"type":"string","enum":["16:9","9:16","1:1","3:4","4:3","21:9","9:21"],"title":"Aspect Ratio","default":"1:1"},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Image Url"},"strength":{"type":"number","maximum":1.0,"minimum":0.0,"title":"Strength","default":0.6},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"ZImageBaseRequest"},"ZImageLoraTrainerRequest":{"properties":{"data":{"type":"string","maxLength":2083,"minLength":1,"format":"uri","title":"Data","description":"URL to zip archive with images. Try to use at least 4 images in general the more the better. In addition to images the archive can contain text files with captions."},"trigger_word":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Trigger Word","description":"Optional trigger word. If a caption file exists, it is prepended when not already present. Leave empty to enable no-caption training."},"steps":{"anyOf":[{"type":"integer","maximum":10000.0,"minimum":1000.0},{"type":"null"}],"title":"Steps","description":"Number of steps to train the LoRA on.","default":1000},"learning_rate":{"anyOf":[{"type":"number","maximum":1.0,"minimum":0.0},{"type":"null"}],"title":"Learning Rate","description":"Learning rate for training.","default":0.0001},"lora_rank":{"anyOf":[{"type":"integer","maximum":64.0,"minimum":1.0},{"type":"null"}],"title":"Lora Rank","description":"LoRA rank dimension.","default":16},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["data"],"title":"ZImageLoraTrainerRequest"},"ZImagePRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"negative_prompt":{"type":"string","title":"Negative Prompt","default":""},"width":{"type":"integer","title":"Width","default":1024},"height":{"type":"integer","title":"Height","default":1024},"seed":{"type":"integer","title":"Seed","default":-1},"flow_shift":{"type":"number","title":"Flow Shift","default":3.0},"batch_size":{"type":"integer","title":"Batch Size","default":1},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"ZImagePRequest"},"ZImageRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"width":{"type":"integer","maximum":1536.0,"minimum":256.0,"title":"Width","default":1024},"height":{"type":"integer","maximum":1536.0,"minimum":256.0,"title":"Height","default":1024},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"ZImageRequest"},"ZImageTurboImageToImageLoraRequest":{"properties":{"prompt":{"type":"string","title":"Prompt","description":"The positive prompt for the generation."},"image_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"string"}],"title":"Image Url","description":"Reference image URL to guide generation style or composition."},"loras":{"anyOf":[{"items":{"additionalProperties":true,"type":"object"},"type":"array"},{"type":"null"}],"title":"Loras","description":"List of LoRAs to apply (maximum 3). Example: [{'path': '...', 'scale': 1.0}]"},"aspect_ratio":{"anyOf":[{"type":"string","enum":["1:1","16:9","9:16","3:2","2:3","4:3","3:4","21:9","9:21"]},{"type":"null"}],"title":"Aspect Ratio","description":"Output image aspect ratio. Mapped to size (width*height).","default":"1:1"},"strength":{"anyOf":[{"type":"number","maximum":1.0,"minimum":0.0},{"type":"null"}],"title":"Strength","description":"Strength of transformation for reference image (0 to 1).","default":0.6},"seed":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Seed","description":"Random seed (-1 for random).","default":-1},"output_format":{"anyOf":[{"type":"string","enum":["jpeg","png","webp"]},{"type":"null"}],"title":"Output Format","description":"Output image format.","default":"jpeg"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt","image_url"],"title":"ZImageTurboImageToImageLoraRequest"},"ZImageTurboLoraRequest":{"properties":{"prompt":{"type":"string","title":"Prompt","description":"The positive prompt for the generation."},"loras":{"anyOf":[{"items":{"additionalProperties":true,"type":"object"},"type":"array"},{"type":"null"}],"title":"Loras","description":"List of LoRAs to apply (maximum 3). Example: [{'path': '...', 'scale': 1.0}]"},"aspect_ratio":{"anyOf":[{"type":"string","enum":["1:1","16:9","9:16","3:2","2:3","4:3","3:4","21:9","9:21"]},{"type":"null"}],"title":"Aspect Ratio","description":"Output image aspect ratio. Mapped to size (width*height).","default":"1:1"},"seed":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Seed","description":"Random seed (-1 for random).","default":-1},"output_format":{"anyOf":[{"type":"string","enum":["jpeg","png","webp"]},{"type":"null"}],"title":"Output Format","description":"Output image format.","default":"jpeg"},"webhook_url":{"anyOf":[{"type":"string","maxLength":2083,"minLength":1,"format":"uri"},{"type":"null"}],"title":"Webhook Url"}},"type":"object","required":["prompt"],"title":"ZImageTurboLoraRequest"},"ZapierRunRequest":{"properties":{"model":{"type":"string","title":"Model"},"inputs":{"additionalProperties":true,"type":"object","title":"Inputs"}},"type":"object","required":["model","inputs"],"title":"ZapierRunRequest"},"ZapierSubscribeRequest":{"properties":{"hookUrl":{"type":"string","title":"Hookurl"},"event":{"type":"string","title":"Event"}},"type":"object","required":["hookUrl","event"],"title":"ZapierSubscribeRequest"},"_ImageGenRequest":{"properties":{"prompt":{"type":"string","title":"Prompt"},"model":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Model","default":"flux-schnell"},"n":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"N","default":1},"size":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Size","default":"1024x1024"},"response_format":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Response Format","default":"url"}},"type":"object","required":["prompt"],"title":"_ImageGenRequest"},"app__routers__creative_agent_router__ChatRequest":{"properties":{"message":{"type":"string","title":"Message"},"model":{"type":"string","title":"Model","default":"gpt-5-mini"},"messages_snapshot":{"items":{},"type":"array","title":"Messages Snapshot","default":[]},"canvas_state":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Canvas State"}},"type":"object","required":["message"],"title":"ChatRequest"},"app__routers__docs_chat_router__ChatRequest":{"properties":{"message":{"type":"string","title":"Message"},"current_slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Current Slug"},"current_page":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Current Page"},"history":{"items":{"$ref":"#/components/schemas/MessageItem"},"type":"array","title":"History","default":[]}},"type":"object","required":["message"],"title":"ChatRequest"}},"securitySchemes":{"ApiKeyAuth":{"type":"apiKey","in":"header","name":"x-api-key","description":"Muapi API key, created via POST /api/v1/keys or https://muapi.ai/access-keys. Also accepted as `Authorization: Bearer <key>`. Unscoped — an API key has full access to its account, same as the account holder."},"OAuth2ClientCredentials":{"type":"oauth2","flows":{"clientCredentials":{"tokenUrl":"https://api.muapi.ai/oauth/token","scopes":{"generate:write":"Submit generation requests (image, video, audio, 3D, etc.) and consume credits.","generate:read":"Poll prediction status and retrieve outputs.","files:write":"Upload media to Muapi-hosted storage.","account:read":"Read wallet balance, usage, and account/plan info.","keys:manage":"Create, list, and revoke API keys and OAuth clients."}}},"description":"OAuth 2.0 client_credentials grant for scoped, machine-to-machine access. Create a client at POST /oauth/clients (session-authenticated), exchange it for a short-lived access token at POST /oauth/token, and send it as `Authorization: Bearer <access_token>` — accepted anywhere ApiKeyAuth is. See /.well-known/oauth-authorization-server."}}},"tags":[{"name":"Image: Text-to-Image","description":"Generate images from text prompts. Pick based on speed/quality/cost — flagship (Imagen4, Seedream v5, Midjourney v8, Flux 2 Pro, Nano Banana Pro) for best quality; Schnell / Klein turbo / SDXL for fast & cheap."},{"name":"Image: Edit & Reference","description":"Edit, restyle, or reference-condition an existing image. Includes Flux Kontext (pro/max/dev), GPT-image edit, Seededit, Qwen edit, Nano Banana edit, Midjourney i2i."},{"name":"Video: Text-to-Video","description":"Generate video from a text prompt. Premium tier: Veo 3.1, Sora 2 Pro, Kling v3 Pro, Seedance Pro. Budget tier: Wan 2.x, Pixverse, Hailuo."},{"name":"Video: Image-to-Video","description":"Animate a still image. Same families as T2V but with image_url required. Use Kling Master / Seedance Pro for motion fidelity, Wan / Hailuo for cheap."},{"name":"Video: Edit & Effects","description":"Modify existing videos — face swap, dress change, watermarking, AI effects, storyboarding, video extension."},{"name":"Video: Lipsync","description":"Sync a video's mouth movements to an audio track. Sync, LatentSync, Creatify, Veed, Heygen translate."},{"name":"Video: Avatars","description":"Talking-head avatar generation (Kling Avatar v1/v2 standard & pro)."},{"name":"Audio","description":"Music, voice, sound-effect, and audio-from-video generation. Suno family for music; MMAudio for SFX; Minimax Speech for TTS."},{"name":"Image: Enhance","description":"Upscale, background-remove, face-swap, skin-enhance, stylize (ghibli/anime/colorize/extend/erase/product-shot). One-call enhancements on an existing image."},{"name":"LLM / Multimodal","description":"Text and vision LLMs proxied through Muapi (Claude, GPT-5, Gemini 3, OpenRouter)."},{"name":"Video: Storyboard","description":"Multi-shot, character-consistent video generation (Sora 2 storyboard)."},{"name":"3D Generation","description":"Text-to-3D and image-to-3D model generation. Tripo3D and Meshy families output .glb meshes."},{"name":"SEO & Web Intelligence","description":"Search engine data, keyword research, backlinks, Lighthouse audits, rank tracking, local SERP / Google Maps, and AI mention/response analysis (GEO)."},{"name":"Account","description":"Wallet balance, top-up, and auto-recharge."},{"name":"API Keys","description":"Create, list, and revoke API keys."},{"name":"Files","description":"Upload media to Muapi-hosted storage so other endpoints can reference it."},{"name":"Predictions","description":"Poll prediction status and retrieve outputs."},{"name":"Utilities","description":"Prompt helpers, autocrop, captions, moderation, YouTube download, transcription. Mostly text-in/text-out endpoints used as workflow pre-steps."},{"name":"Other","description":"Uncategorized endpoints."}],"security":[{"ApiKeyAuth":[]},{"OAuth2ClientCredentials":[]}]}