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

# Artist Profile

> Get a full artist profile — bio, genres, social URLs, label, career stage, and basic metrics.



## OpenAPI

````yaml api-reference/openapi/research.json GET /api/research/profile
openapi: 3.1.0
info:
  title: Recoup API - Research
  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/research/profile:
    get:
      description: >-
        Get a full artist profile — bio, genres, social URLs, label, career
        stage, and basic metrics.
      parameters:
        - name: artist
          in: query
          required: false
          description: Artist name. Required unless `id` is provided.
          schema:
            type: string
        - name: id
          in: query
          required: false
          description: >-
            Provider artist ID returned by lookup or search. Required unless
            `artist` is provided.
          schema:
            type: string
            pattern: ^[A-Za-z0-9][A-Za-z0-9._:-]*$
            example: artist_123
      responses:
        '200':
          description: Artist profile
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResearchProfileResponse'
        '400':
          description: Validation error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResearchErrorResponse'
        '401':
          description: Authentication failed — invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResearchErrorResponse'
        '501':
          $ref: '#/components/responses/ResearchDataSourceUnsupported'
components:
  schemas:
    ResearchProfileResponse:
      type: object
      description: >-
        Full artist profile. For longitudinal platform metrics call `GET
        /api/research/metrics`.
      properties:
        status:
          type: string
          example: success
        result:
          type: string
          example: success
        message:
          type: string
          example: Data Retrieved.
        artist_info:
          $ref: '#/components/schemas/ResearchArtistInfo'
    ResearchErrorResponse:
      type: object
      required:
        - status
        - error
      description: >-
        Error response returned by all research endpoints for validation
        failures (400) and authentication errors (401).
      properties:
        status:
          type: string
          enum:
            - error
          example: error
        error:
          type: string
          description: Human-readable error message describing what went wrong.
          example: 'Missing required parameter: artist'
    ResearchArtistInfo:
      type: object
      description: >-
        Full artist record — identity, bio, genres, platform links, and related
        artists.
      properties:
        name:
          type: string
        avatar:
          type: string
        site_url:
          type: string
        country:
          type: string
          description: ISO country code.
          nullable: true
        bio:
          type: string
          nullable: true
        genres:
          type: array
          items:
            type: string
        links:
          type: array
          items:
            $ref: '#/components/schemas/ResearchLink'
        related_artists:
          type: array
          items:
            $ref: '#/components/schemas/ResearchArtistRef'
      additionalProperties: true
    ResearchLink:
      type: object
      description: External platform link.
      properties:
        source:
          type: string
          description: Platform name, e.g. `spotify`, `apple_music`.
        external_id:
          type: string
          description: Platform-specific ID.
        url:
          type: string
        isrc:
          type: string
          description: ISRC (tracks only).
      additionalProperties: true
    ResearchArtistRef:
      type: object
      description: Provider-neutral artist reference.
      properties:
        id:
          type: string
          description: Provider-neutral artist ID.
          example: wjcgfd9i
        name:
          type: string
          example: Drake
        avatar:
          type: string
          description: Artist image URL.
          nullable: true
        site_url:
          type: string
          description: Artist page URL.
          nullable: true
      additionalProperties: true
  responses:
    ResearchDataSourceUnsupported:
      description: >-
        The configured research data source does not support this endpoint or
        data shape.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ResearchErrorResponse'
          example:
            status: error
            error: Request failed with status 501

````