> ## Documentation Index
> Fetch the complete documentation index at: https://myco-29fc6df6-sweetmantech-myc-3925-docs-document-the-apiar.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Artist Socials

> Retrieve all social media profiles associated with an artist. This endpoint should be called before using the Social Posts endpoint to obtain the necessary social IDs.



## OpenAPI

````yaml GET /api/artist/socials
openapi: 3.1.0
info:
  title: Recoup API
  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://recoup-api.vercel.app
security:
  - apiKeyAuth: []
paths:
  /api/artist/socials:
    get:
      description: >-
        Retrieve all social media profiles associated with an artist. This
        endpoint should be called before using the Social Posts endpoint to
        obtain the necessary social IDs.
      parameters:
        - name: artist_account_id
          in: query
          description: >-
            The unique identifier of the artist account to fetch social profiles
            for
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Social profiles retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ArtistSocialsResponse'
        '400':
          description: Bad request - missing required parameters
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ArtistSocialsErrorResponse'
components:
  schemas:
    ArtistSocialsResponse:
      type: object
      required:
        - status
        - socials
        - pagination
      properties:
        status:
          type: string
          enum:
            - success
          description: Status of the request
        socials:
          type: array
          items:
            $ref: '#/components/schemas/SocialProfile'
          description: List of social media profiles associated with the artist
        pagination:
          $ref: '#/components/schemas/ArtistSocialsPagination'
          description: Pagination metadata for the response
    ArtistSocialsErrorResponse:
      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
    SocialProfile:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: UUID of the artist's account_socials record
        social_id:
          type: string
          format: uuid
          description: UUID of the artist's socials account
        username:
          type: string
          description: Username on the platform
        profile_url:
          type: string
          description: Direct URL to the profile
        avatar:
          type: string
          nullable: true
          description: URL to the profile avatar image
        bio:
          type: string
          nullable: true
          description: Profile biography or description
        follower_count:
          type: integer
          nullable: true
          description: Number of followers on this platform
        following_count:
          type: integer
          nullable: true
          description: Number of accounts followed on this platform
        region:
          type: string
          nullable: true
          description: Geographic region of the profile
        updated_at:
          type: string
          format: date-time
          description: ISO timestamp of when the profile was last updated
    ArtistSocialsPagination:
      type: object
      properties:
        total_count:
          type: integer
          description: Total number of social profiles available
        page:
          type: integer
          description: Current page number
        limit:
          type: integer
          description: Number of social profiles per page
        total_pages:
          type: integer
          description: Total number of pages available
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Your Recoup API key. [Learn more](/quickstart#api-keys).

````