List
Resolves a list of current user's avatar ids.
GET /avatars
Request
curl -X GET "https://api.loomai.com/v0.5/avatars?page={page}&pagesize={pagesize}&fields={fields}"curl -X GET "https://api.loomai.com/v0.5/avatars?fields=image,labels"Response
{
"entries": [
{
"id": int64,
"updated_at": "string", // ISO-8601 DATETIME
"image": {
"id": int64,
"width": int32,
"height": int32,
"channels": int32
},
"labels": {
"entries": [
{
"name": "string",
"value": "string"
},
...
]
}
}
]
}Last updated
Was this helpful?