NoxVR Documentation
Relations

Get my followers

Retrieve the list of users following the current user.

GET
/relations/@me/followers
AuthorizationBearer <token>

Bearer token authentication for user sessions

In: header

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/@me/followers"
{
  "total": 0,
  "limit": 0,
  "offset": 0,
  "followers": [
    {
      "user": "string",
      "at": 0
    }
  ]
}
{
  "error": {
    "message": "You are not logged in.",
    "code": 7,
    "status": 401
  },
  "data": null
}