Skip to main content

Follow User

POST /api/users/{userId}/follow
Authorization: Bearer <token>

Unfollow User

DELETE /api/users/{userId}/follow
Authorization: Bearer <token>

Get Followers

GET /api/users/{userId}/followers
{
  "followers": [
    {
      "id": "user-456",
      "username": "bob_trader",
      "displayName": "Bob",
      "profileImageUrl": "https://..."
    }
  ],
  "count": 42
}

Search Users

GET /api/users/search?q=alice