NoxVR Documentation
Relations

Get users I'm following

Retrieve the list of users the current user is following.

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