QuickStart
API Documentation
URL to Video
Create Avatar Videos
Get Generated Video
AI Scripts
Upload Media
Avatar
Visual Style
Avatar
Generate Avatar New Look Photo
Based on the provided photo, a new photo is generated by marrying the input parameters
POST
/
photo_avatar
/
new_look
/
generate
Copy
curl --request POST \
--url https://api.jogg.ai/v1/photo_avatar/new_look/generate \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"age": "Adult",
"appearance": "<string>",
"aspect_ratio": 0,
"avatar_style": "Professional",
"background": "<string>",
"ethnicity": "European",
"gender": "Female",
"image_url": "<string>",
"model": "classic"
}'
Copy
{
"code": 123,
"msg": "<string>",
"data": {
"photo_id": "<string>"
}
}
Authorizations
Body
application/json
Request parameter
The body is of type object
.
Response
200
application/json
OK
The response is of type object
.
Copy
curl --request POST \
--url https://api.jogg.ai/v1/photo_avatar/new_look/generate \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"age": "Adult",
"appearance": "<string>",
"aspect_ratio": 0,
"avatar_style": "Professional",
"background": "<string>",
"ethnicity": "European",
"gender": "Female",
"image_url": "<string>",
"model": "classic"
}'
Copy
{
"code": 123,
"msg": "<string>",
"data": {
"photo_id": "<string>"
}
}
Assistant
Responses are generated using AI and may contain mistakes.