> ## 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 Follow Status

> Checks if the authenticated user is following a specific artist



## OpenAPI

````yaml GET /follows/status/{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/status/{artistId}:
    get:
      summary: Get Follow Status
      description: Checks if the authenticated user is following a specific artist
      parameters:
        - name: artistId
          in: path
          required: true
          schema:
            type: string
          description: The ID of the artist
      responses:
        '200':
          description: Follow status retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FollowStatusResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    FollowStatusResponse:
      type: object
      properties:
        isFollowing:
          type: boolean
          description: Whether the user is following the artist
        followedAt:
          type: number
          description: Timestamp when the follow occurred
    Error:
      type: object
      required:
        - message
      properties:
        message:
          type: string

````