cURL
curl --request POST \ --url https://api.animusai.co/v2/generation/batch \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "prompts": [ { "prompt": "<string>", "face_swap": true, "use_face_lora": true, "use_body_lora": true, "source_image_url": "<string>" } ], "character_id": "<string>", "group_id": "<string>", "group_title": "<string>" } '
{ "batch_id": "<string>", "group_id": "<string>", "generation_type": "<string>", "status": "<string>", "message": "<string>", "total_requested": 123, "successful_submissions": 123, "failed_submissions": 123, "estimated_time": 123, "credits_deducted": 123, "remaining_balance": 123, "results": [ { "generation_id": "<string>", "status": "<string>", "prompt_index": 123, "error": "<string>" } ] }
Submit multiple prompts at once for character renders or photo edits.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
1
Show child attributes
Batch submission accepted.