---
title: "Followers"
method: GET
path: "/api/followers/users"
tags: ["followers"]
---

# Followers

`GET /api/followers/users`

This endpoint allows the client to retrieve a list of the followers they have.

        ### Integration & Pagination Guidance:
        - "Followers" are other users registered on the platform who follow the authenticated user.
        - Supports pagination, defaulting to 80 followers per page.
        - The `sort` query parameter determines the sorting order based on when the follow relationship was established.

## Query parameters

- `page` integer
- `per_page` integer
- `sort` string

## Response `200`

A List of followers

- object[]
  - `type_of` string — user_follower by default
  - `id` integer
  - `user_id` integer — The follower's user id
  - `name` string — The follower's name
  - `path` string — A path to the follower's profile
  - `profile_image` string — Profile image (640x640)

## Other responses

- `401` — unauthorized

## Changes

> 59 revisions in range; 8 could not be searched.

- **2026-07-13** (v1) `189b62b952ea` — 1 breaking
  - removed the media type `application/json` for the response with the status `401`
- **2026-07-13** (v1) `7db6ba099285` — 1 breaking
  - removed the media type `application/json` for the response with the status `401`
- **2026-05-28** (v1) `6550ad7be94f` — 1 info
  - added the media type `application/json` for the response with the status `401`
- **2026-03-03** (v1) `c9e7662755c2` — 1 breaking
  - removed the media type `application/json` for the response with the status `401`
- **2023-12-18** (v1) `1c81594090c0` — 1 info
  - added the media type `application/json` for the response with the status `401`

[Full history](https://skmtc.dev/forem/apis/forem-api-v1/changes/api/followers/users/get.md)

---

[API](https://skmtc.dev/forem/apis/forem-api-v1.md) · [All operations](https://skmtc.dev/forem/apis/forem-api-v1/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/forem/forem-api-v1/revisions/1f64f71fc2a7/schema)
