Documentation
Users

Get my following

Return the list of users the current user follows.

GET
/api/users/@me/following

Authorization

bearer
AuthorizationBearer token

User session token. Obtained from POST /api/auth/login.

In: header

Query Parameters

limit*string
offset*string

Response Body

application/json

curl -X GET "https://loading/api/users/@me/following?limit=string&offset=string"
{
  "data": {
    "total": 100,
    "limit": 10,
    "offset": 0,
    "items": [
      {
        "id": "rel_1",
        "type": "follow",
        "target": "1@my-server.com",
        "created_at": 1680000000000
      }
    ]
  },
  "error": null,
  "time": 1680000000000,
  "request": "/api/endpoint"
}