Loomie™ 3D Avatar Platform
  • Welcome
  • REST API Tutorials
    • API Credentials
    • Create Avatar & Render
    • Create Avatar & Render (fast)
    • Create Avatar & Download GLTF
    • Create Stickers & Animations
  • Voice2Animation SDK Tutorials
    • Unity Tutorial
    • Loom.ai Facial Rig Specification
  • Loomie SDK Tutorials
    • Deploying the Docker Image
    • Example App Walkthrough
      • Example App Full Source
  • REST API
    • Authentication
      • Authorization Code Flow
      • Authorization Code Flow with PKCE
      • Client Credentials Flow
      • Implicit Flow
      • Refresh Token Flow
      • Resource Owner Flow
    • Authorization
    • Avatars
      • List
      • Create
      • Resolve Status
      • Delete
      • Attachments
        • List
        • Resolve
      • Renderings
        • List
        • Create
        • Resolve
        • Resolve Status
    • Schema
      • Animation
      • Attachment Type
      • Dimensions
      • Quota
      • Scope
      • Status
      • Sticker
Powered by GitBook
On this page

Was this helpful?

  1. REST API
  2. Avatars
  3. Renderings

List

GET /avatars/{AVATAR_ID}/renderings

Request

curl -X GET "https://api.loomai.com/v0.5/avatars/{AVATAR_ID}/renderings"
curl -X GET "https://api.loomai.com/v0.5/avatars/5723980430835712/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"
      }
    },
    ...
  ]
}
{
  "entries": [
    {
      "id": 6476783722954752,
      "random": 0,
      "type": "preview",
      "pose": "neutral",
      "animation": "",
      "attachment": {
        "id": 5745273952796672,
        "width": 256,
        "height": 256,
        "channels": 3,
        "url": "/v0.5/avatars/5723980430835712/attachments/5745273952796672?redirect=true"
      }
    },
    {
      "id": 6476783722954732,
      "random": 0,
      "type": "animation",
      "pose": "",
      "animation": "idle",
      "attachment": {
        "id": 5745273952796642,
        "width": 256,
        "height": 256,
        "channels": 3,
        "url": "/v0.5/avatars/5723980430835712/attachments/5745273952796642?redirect=true"
      }
    }
  ]
}
PreviousRenderingsNextCreate

Last updated 4 years ago

Was this helpful?