NoxVR Documentation
Relations

Get a user's followers

Retrieve the list of users following a specific user.

GET
/relations/{id}/followers

Path Parameters

idstring

User identifier

Query Parameters

limit?integer
Default100
Rangevalue <= 1000
offset?integer
Default0

Response Body

application/json

application/json

curl -X GET "https://nox.hactazia.fr/api/relations/string/followers"
{
  "total": 0,
  "limit": 0,
  "offset": 0,
  "followers": [
    "string"
  ]
}
{
  "error": {
    "message": "User not found.",
    "code": 2,
    "status": 404
  },
  "data": null
}