> ## 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 Following List

> Retrieves the list of artists the user is following



## OpenAPI

````yaml GET /follows/following
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/following:
    get:
      summary: Get Following List
      description: Retrieves the list of artists the user is following
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            default: 20
            minimum: 1
            maximum: 50
          description: Number of follows to retrieve
        - name: cursor
          in: query
          required: false
          schema:
            type: string
          description: Pagination cursor
      responses:
        '200':
          description: Following list retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FollowingListResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    FollowingListResponse:
      type: object
      properties:
        follows:
          type: array
          items:
            type: object
          description: List of follow relationships
        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

````