cURL
curl --request GET \ --url https://api.animusai.co/v2/generation/groups/{group_id} \ --header 'Authorization: Bearer <token>'
{ "group_id": "<string>", "title": "<string>", "description": "<string>", "group_type": "<string>", "generation_count": 123, "preview_image_url": "<string>", "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z", "status": "<string>", "character_id": "<string>", "generations": [ { "generation_id": "<string>", "prompt": "<string>", "status": "<string>", "result_urls": [ "<string>" ], "created_at": "2023-11-07T05:31:56Z", "performance_metadata": {} } ], "pagination": { "limit": 1, "offset": 1, "returned": 1, "has_more": true } }
Fetch generations and metadata for a specific group.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Maximum number of generations to return.
1 <= x <= 200
Number of items to skip for pagination.
x >= 0
Group detail.
Show child attributes