> ## Documentation Index
> Fetch the complete documentation index at: https://docs.recoupable.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Artists

> Retrieve artists accessible to the authenticated account. The account is derived from the API key or Bearer token. When org_id is omitted, returns only the account's own artists. Pass org_id to view artists in a specific organization. Pass account_id to filter to a specific account the API key has access to.



## OpenAPI

````yaml api-reference/openapi/releases.json GET /api/artists
openapi: 3.1.0
info:
  title: Recoup API - Releases
  description: >-
    API documentation for the Recoup platform - an AI agent platform for the
    music industry
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.recoupable.dev
security: []
paths:
  /api/artists:
    get:
      description: >-
        Retrieve artists accessible to the authenticated account. The account is
        derived from the API key or Bearer token. When org_id is omitted,
        returns only the account's own artists. Pass org_id to view artists in a
        specific organization. Pass account_id to filter to a specific account
        the API key has access to.
      parameters:
        - name: account_id
          in: query
          description: >-
            Filter to a specific account's artists. Only applicable when the
            authenticated account has access to multiple accounts via
            organization membership.
          required: false
          schema:
            type: string
            format: uuid
        - name: org_id
          in: query
          description: >-
            Filter to artists in a specific organization. When omitted, returns
            only personal (non-organization) artists.
          required: false
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Artists retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ArtistsResponse'
        '400':
          description: Bad request - invalid parameters
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ArtistsErrorResponse'
        '401':
          description: Unauthorized - missing or invalid authentication
        '403':
          description: >-
            Forbidden - account_id is not accessible with the provided
            credentials
components:
  schemas:
    ArtistsResponse:
      type: object
      required:
        - status
        - artists
      properties:
        status:
          type: string
          enum:
            - success
            - error
          description: Status of the request
        artists:
          type: array
          items:
            $ref: '#/components/schemas/Artist'
          description: List of artist objects
        message:
          type: string
          description: Error message (only present if status is error)
    ArtistsErrorResponse:
      type: object
      required:
        - status
        - message
      properties:
        status:
          type: string
          enum:
            - error
          description: Status of the request
        message:
          type: string
          description: Error message describing what went wrong
    Artist:
      type: object
      properties:
        account_id:
          type: string
          format: uuid
          description: UUID of the artist account
        name:
          type: string
          description: Artist display name
        image:
          type: string
          nullable: true
          description: Artist profile image URL
        pinned:
          type: boolean
          description: Whether the account has pinned this artist
        socials:
          type: array
          items:
            $ref: '#/components/schemas/ArtistSocial'
          description: Social media profiles linked to the artist
    ArtistSocial:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: UUID of the social profile
        platform:
          type: string
          description: Social media platform (e.g., instagram, twitter, tiktok)
        username:
          type: string
          description: Username on the platform
        profile_url:
          type: string
          description: Full URL to the social media profile

````