NoxVR Documentation
Relations

Get users a user is following

Retrieve the list of users a specific user is following.

GET
/relations/{id}/following

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/following"
{
  "total": 0,
  "limit": 0,
  "offset": 0,
  "following": [
    "string"
  ]
}
{
  "error": {
    "message": "User not found.",
    "code": 2,
    "status": 404
  },
  "data": null
}