NoxVR Documentation
Avatars

Get avatar assets

Retrieve all assets for an avatar.

GET
/avatars/{avatar_id}/assets

Path Parameters

avatar_idinteger

Query Parameters

version?string

Filter by version (comma-separated)

engine?string

Filter by engine (comma-separated)

platform?string

Filter by platform (comma-separated)

empty?boolean

Show empty assets

limit?integer
Default10
offset?integer
Default0

Response Body

application/json

curl -X GET "https://nox.hactazia.fr/api/avatars/0/assets"
{
  "total": 0,
  "limit": 0,
  "offset": 0,
  "assets": [
    {
      "id": 0,
      "version": 0,
      "engine": "string",
      "platform": "string",
      "is_empty": true,
      "url": "http://example.com",
      "features": [
        "string"
      ],
      "hash": "string",
      "size": 0
    }
  ]
}