NoxVR Documentation
Avatars

Search avatars

Search for avatars by query string or specific IDs.

GET
/avatars

Query Parameters

search?string

Text query to search avatars

ids?string

Comma-separated avatar IDs

tags?string

Comma-separated tags to filter by

limit?integer
Default10
Range1 <= value <= 100
offset?integer
Default0
Range0 <= value

Response Body

application/json

curl -X GET "https://nox.hactazia.fr/api/avatars"
{
  "total": 0,
  "search": "string",
  "ids": [
    0
  ],
  "limit": 0,
  "offset": 0,
  "avatars": [
    {
      "id": 0,
      "title": "string",
      "description": "string",
      "server": "string",
      "tags": [
        "string"
      ],
      "thumbnail": "http://example.com",
      "owner": "string"
    }
  ]
}