PoYo AI gives developers one production API workflow for image, video, music, chat, and 3D model generation: submit a task, store task_id, poll in testing, and use webhooks in production.
Start with PoyoAPI/poyo-examples for the full backend-safe workflow, then use focused model repos when you already know which model you want to integrate.
Use PoyoAPI/poyo-examples when you want the full backend-safe path across cURL, Node.js, Python, Next.js routes, status polling, and production webhooks.
Use these when you are coming from a recent model demo and want the smallest backend-safe request first.
Use these when you already know the model you want and need a smaller repo to copy from.
Use these repos to track high-interest models before runnable examples are available.
| Model | Links | Notes |
|---|---|---|
| Seedance 2.5 | Model page, GitHub repo | Tracks expected 30-second, 4K-oriented, multimodal-reference, and region-editing workflows before public API availability. |
| Category | Families |
|---|---|
| Chat | |
| Image | |
| Video | |
| Music | |
| 3D |
- Create an account at poyo.ai.
- Create an API key in the dashboard.
- Submit a generation task.
- Save the returned
task_id. - Poll status in testing.
- Use
callback_urlwebhooks in production.
export POYO_API_KEY="your-api-key"
export POYO_BASE_URL="https://api.poyo.ai"
curl -X POST "$POYO_BASE_URL/api/generate/submit" \
-H "Authorization: Bearer $POYO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-image-2",
"input": {
"prompt": "A clean product render of a translucent AI cube on a white studio surface",
"size": "1:1",
"resolution": "1K",
"quality": "low",
"n": 1
}
}'- Website: poyo.ai
- API docs: docs.poyo.ai
- Models: poyo.ai/models
- API keys: poyo.ai/dashboard/api-key
- Examples: PoyoAPI/poyo-examples
- Support: support@poyo.ai