get:
  tags:
    - All Resources
    - Playlists
    - Public Playlists
  summary: 'Search for playlists followers data'
  operationId: public.playlists.followers
  description: >-
    Resource route for getting playlists followers data within provided dates range. If no dates passed - default is last 30 days  
    
    `followers` response field is a list of numbers of playlist followers at each date between start/end dates inclusively. 
    First element is at start_date, last element is at end_date. If no data for particular date is available - corresponding list element will be null instead of number.
  security:
    - bearerAuth: [ ]
  parameters:
    - $ref: '../parameters/playlist_id_array_required.yaml'
    - $ref: '../parameters/start_date_optional.yaml'
    - $ref: '../parameters/end_date_optional.yaml'
  responses:
    200:
      $ref: '../responses/PublicPlaylistsFollowersResponse.yaml'
    400:
      $ref: '../responses/InvalidInput.yaml'
    401:
      $ref: '../responses/Unauthorized.yaml'
    404:
      $ref: '../responses/NotFoundError.yaml'
    500:
      $ref: '../responses/InternalError.yaml'