> ## 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.

# Follow Artist

> Follow an artist to see their updates



## OpenAPI

````yaml POST /follows/follow
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/follow:
    post:
      summary: Follow Artist
      description: Follow an artist to see their updates
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FollowRequest'
      responses:
        '200':
          description: Successfully followed artist
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  follow:
                    type: object
                  message:
                    type: string
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Artist not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    FollowRequest:
      type: object
      required:
        - artistId
      properties:
        artistId:
          type: string
          description: ID of the artist to follow
    Error:
      type: object
      required:
        - message
      properties:
        message:
          type: string

````