> ## Documentation Index
> Fetch the complete documentation index at: https://daun-docs.syahmi.fyi/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Followers

> Fetches a list of followers for the authenticated user.



## OpenAPI

````yaml GET /follow/followers
openapi: 3.0.1
info:
  title: Follow API
  version: 1.0.0
  description: API for managing user follow relationships
servers: []
security: []
paths:
  /follow/followers:
    get:
      summary: Get Followers
      description: Fetches a list of followers for the authenticated user.
      parameters:
        - $ref: '#/components/parameters/X-API-KEY'
        - name: userId
          in: query
          required: true
          schema:
            type: string
            description: userId of the current user
        - name: cursor
          in: query
          required: false
          schema:
            type: integer
            format: int64
          description: Cursor for pagination (last ID of the page)
        - name: size
          in: query
          required: false
          schema:
            type: integer
            format: int32
            default: 20
          description: Number of followers to fetch per page.
      responses:
        '200':
          description: A list of followers
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: integer
                    username:
                      type: string
                    name:
                      type: string
                    image:
                      type: string
                    bio:
                      type: string
                      nullable: true
                    verifiedAt:
                      type: string
                      format: date-time
                      description: Last timestamp of user verified by admin
                      nullable: true
                    role:
                      type: string
                      enum:
                        - user
                        - admin
                      nullable: true
                    tags:
                      type: array
                      items:
                        type: string
                      nullable: true
        '401':
          description: Unauthorized access
        '500':
          description: Internal server error
      security:
        - bearerAuth: []
components:
  parameters:
    X-API-KEY:
      name: X-API-KEY
      description: API key required for authentication
      in: header
      required: true
      schema:
        type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````