Overview
This endpoint retrieves details for a specific look of an avatar. Use this to get full information about a particular look including available models and generation status.
Authentication
This endpoint requires API key authentication. Include your API key in the Authorization header.
Path Parameters
The unique identifier of the avatar.
The unique identifier of the look to retrieve.
Response
Unique identifier of the look.
Unique identifier of the parent avatar.
Gender of the avatar: male or female.
Place or context of the look (e.g., “studio”, “office”).
Image format: vertical or horizontal.
Array of tags associated with the look.
URL of the look thumbnail image.
Preview URL if available, otherwise null.
Available models for this look. Possible values: standard, premium, ultra, veo-3-fast, veo-3.
Current status: ready, pending, or error.
Error message if status is error.
curl -X GET "https://app.hoox.video/api/public/v1/avatar/avtr_abc123/look/look_123" \
-H "Authorization: Bearer your_api_key"
Success Response
Error 404 - Avatar Not Found
Error 404 - Look Not Found
{
"id" : "look_123" ,
"avatar_id" : "avtr_abc123" ,
"avatar_name" : "Alex" ,
"look_name" : "Office Look" ,
"gender" : "male" ,
"place" : "office" ,
"format" : "vertical" ,
"tags" : [ "business" , "professional" ],
"thumbnail" : "https://cdn.example.com/thumbnail.jpg" ,
"preview" : null ,
"model_available" : [ "premium" , "ultra" , "veo-3" , "veo-3-fast" ],
"status" : "ready" ,
"error_message" : null
}