Resolve
Resolves rendered pose or animation for given avatar & rendering id.
GET /avatars/{AVATAR_ID}/renderings/{RENDERING_ID}
Request
curl -X GET "https://api.loomai.com/v0.5/avatars/{AVATAR_ID}/renderings/{RENDERING_ID}"curl -X GET "https://api.loomai.com/v0.5/avatars/5723980430835712/renderings/5739650719678464"Response
{
"id": int64,
"random": int32,
"type": "string",
"pose": "string",
"animation": "string",
"attachment": {
"id": int64,
"width": int32,
"height": int32,
"channels": int32,
"url": "string"
}
}{
"id": 5739650719678464,
"random": 0,
"type": "pose",
"pose": "kiss",
"animation": "",
"attachment": {
"id": 5111294722572288,
"width": 1024,
"height": 1024,
"channels": 4,
"url": "/v0.5/avatars/5723980430835712/attachments/5111294722572288?redirect=true"
}
}Last updated
Was this helpful?