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

# Get Followers List

> Retrieves the list of followers for an artist (artist-only)



## OpenAPI

````yaml GET /follows/followers/{artistId}
openapi: 3.1.0
info:
  title: Tatu API
  description: API documentation for Tatu's booking and artist management system
  version: 1.0.0
servers:
  - url: http://localhost:3000/api
    description: Development server
security: []
paths:
  /follows/followers/{artistId}:
    get:
      summary: Get Followers List
      description: Retrieves the list of followers for an artist (artist-only)
      parameters:
        - name: artistId
          in: path
          required: true
          schema:
            type: string
          description: The ID of the artist
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            default: 20
            minimum: 1
            maximum: 50
          description: Number of followers to retrieve
        - name: cursor
          in: query
          required: false
          schema:
            type: string
          description: Pagination cursor
      responses:
        '200':
          description: Followers list retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FollowersListResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Forbidden - can only view own followers
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    FollowersListResponse:
      type: object
      properties:
        follows:
          type: array
          items:
            type: object
          description: List of followers
        hasMore:
          type: boolean
          description: Whether there are more results
        nextCursor:
          type: string
          description: Cursor for next page
        total:
          type: number
          description: Total number of results in current page
    Error:
      type: object
      required:
        - message
      properties:
        message:
          type: string

````