List avatars
GET
/v1/avatarsQuery parameters
cursorstringOpaque composite pagination cursor from the previous response. Do not parse or construct it.
limitintegerNumber of items to return
min 1 · max 100 · default: 20
Responses
200List of avatars
dataobject[]requiredmax items 100
Show propertiesHide properties
Array of
objectidstring<uuid>requirednamestringrequiredmin length 1 · max length 255
descriptionstring | nullrequiredmin length 1 · max length 2000
imagesobjectrequiredShow propertiesHide properties
frontstring<uri>requiredmax length 4096
full_bodystring<uri>requiredmax length 4096
tagsstring[]requiredmax items 50
created_atstring<date-time>requiredmetaobjectrequiredShow propertiesHide properties
cursorstringmin length 1 · max length 4096
has_morebooleanrequiredRequest
curl -X GET "https://api.roasos.com/v1/avatars"const response = await fetch("https://api.roasos.com/v1/avatars", {
method: "GET"
});import requests
response = requests.get(
"https://api.roasos.com/v1/avatars",
)Response
{
"data": [
{
"id": "<uuid>",
"name": "string",
"description": "string",
"images": {
"front": "<uri>",
"full_body": "<uri>"
},
"tags": [
"string"
],
"created_at": "2024-01-01T00:00:00Z"
}
],
"meta": {
"cursor": "string",
"has_more": true
}
}