Get Photo Avatar Group Training Status
GET
https://api.konpro.ai/v1/photo_avatar/train/status/{group_id}Check the current training status of a specified photo avatar group by its unique group ID.
Request History
Log in to see full request history
| TIME | STATUS | USER AGENT |
|---|---|---|
| Make a request to see history. | ||
0 Requests This Month
cURL Request
shell
curl --request GET \
--url https://api.konpro.ai/v1/photo_avatar/train/status/<group_id> \
--header 'accept: application/json' \
--header 'x-api-key: <your-api-key>'Path Parameter
| Parameter | Type | Description |
|---|---|---|
| group_id | string | Unique identifier of the photo avatar group to check status for (required) |
Response
Response Structure
Returns current training status such as pending, in_progress, completed, or failed. May include additional metadata or error information.
Sample Successful Response
json
{
"training_job_id": "train_123456",
"group_id": "avatarGroup123",
"status": "in_progress",
"progress": 65,
"started_at": "2024-01-15T10:30:00Z",
"estimated_completion": "2024-01-15T12:00:00Z",
"message": "Training is currently in progress"
}Notes
- Requires API authentication.
- The group_id must reference an existing photo avatar group.
- Status can be: pending, in_progress, completed, or failed.
- Progress percentage is included for in_progress jobs.
- Refer to Error Responses for error information.
Example Usage
Shell
curl --request GET \
--url https://api.konpro.ai/v1/photo_avatar/train/status/<group_id> \
--header 'accept: application/json' \
--header 'x-api-key: <your-api-key>'LANGUAGE
CREDENTIALS
HEADER
RESPONSE
Examples
Choose an example:
application/json
200 - Success
400 - Bad Request
LANGUAGE
CREDENTIALS
HEADER
RESPONSE
Examples
Choose an example:
application/json
200 - Success
400 - Bad Request