get:
  tags:
    - All Resources
    - Artists
  summary: 'Search for Artists'
  operationId: artists.search
  description: >-
    Resource route for getting a list of `Artists`
    with filtering based on provided parameters.

    At least one identifying parameter must be provided (e.g.: `product_id`, `isrc`, `track_id` or `artist_id`)
  security:
    - bearerAuth: []
  parameters:
    - $ref: '../parameters/product_id.yaml'
    - $ref: '../parameters/track_id.yaml'
    - $ref: '../parameters/isrc.yaml'
    - $ref: '../parameters/artist_id_array.yaml'
    - $ref: '../parameters/limit.yaml'
    - $ref: '../parameters/offset.yaml'
    - $ref: '../parameters/sort_by_artists.yaml'
    - $ref: '../parameters/sort_order.yaml'
  responses:
    200:
      $ref: '../responses/ArtistsResponse.yaml'
    400:
      $ref: '../responses/InvalidInput.yaml'
    401:
      $ref: '../responses/Unauthorized.yaml'
    500:
      $ref: '../responses/InternalError.yaml'