Core Capabilities
Use Cases
- Backend integration: Bring BizyAir’s model capabilities into your own product backend
- Agent invocation: Let AI agents call models via API to generate images / videos
- Batch processing: Submit generation tasks in bulk via CLI or scripts
- Service monetization: Wrap model capabilities into an outward-facing SaaS service
Capability Categories
The Model Service APIs are divided into 16 capability categories along the “input → output” dimension.Category Distribution
Vendor Distribution
More vendors are being onboarded.Note:owner=Selfdenotes a SiliconFlow self-deployed model;owner=Thirddenotes a third-party channel version. Billing rates may differ.
API Model Field Reference
Every API model includes the following core fields:How to Call
Direct HTTP Call
- Find the target API model on the Model Service page.
- Get the
endpointand request body format from theAPI Referencedocs. - Include
Authorization: Bearer <token>in the request header (get the token from your personal center). - POST the request; the response returns a
requestIdfor subsequent queries.
Async Tasks
- Keep the returned
requestIdafter submitting a task. - Poll the task status via the async query interface.
- Retrieve the result URL once the task completes.
WebHook Callback
- Set
webhook_urlin the request parameters. - Once the task completes, the platform POSTs the callback result to that URL.
- Verify the signature server-side, then persist the result.
CLI Tool
- Install the BizyAir CLI tool.
- Log in to your account via
bizyair login. - Invoke a model with
bizyair run <endpoint> --input <file>. - Query task status with
bizyair task get <requestId>.
Note: For detailed API fields, error codes, and CLI commands, see theAPI Reference,Return Code Reference, andCLI Toolchapters at docs.bizyair.vip.