List

GET /avatars/{AVATAR_ID}/renderings

Request

curl -X GET "https://api.loomai.com/v0.5/avatars/{AVATAR_ID}/renderings"

Response

On success the endpoint returns HTTP 200 OK as well as a JSON body containing a list of rendered poses & animations.

{
  "entries": [
    {
      "id": int64,
      "random": int32,
      "type": "string",
      "pose": "string",
      "animation": "string",
      "attachment": {
        "id": int64,
        "width": int32,
        "height": int32,
        "channels": int32,
        "url": "string"
      }
    },
    ...
  ]
}

Last updated