Skip to content

Get Artist Fans

Retrieve all social profiles from fans of an artist across all platforms.

Endpoint

GET https://api.recoupable.com/api/fans

Parameters

NameTypeRequiredDescription
artist_account_idstringYesThe unique identifier of the artist account to fetch fans for
pagenumberNoThe page number to retrieve (default: 1)
limitnumberNoThe number of records per page (default: 20, max: 100)

Request Examples

cURL
curl -X GET "https://api.recoupable.com/api/fans?artist_account_id=YOUR_ARTIST_ACCOUNT_ID&page=1&limit=20" \
  -H "Content-Type: application/json"

Response Format

The API returns JSON responses. Here's an example success response:

{
  "status": "success",
  "fans": [
    {
      "id": "fan123",
      "username": "@superfan",
      "avatar": "https://example.com/avatar1.jpg",
      "profile_url": "https://twitter.com/superfan",
      "region": "US",
      "bio": "Music lover and digital art collector",
      "followerCount": 1234,
      "followingCount": 567,
      "updated_at": "2024-03-06T15:33:27Z"
    },
    {
      "id": "fan456",
      "username": "artcollector",
      "avatar": "https://example.com/avatar2.jpg",
      "profile_url": "https://instagram.com/artcollector",
      "region": "UK",
      "bio": "Supporting emerging artists 🎨",
      "followerCount": 5678,
      "followingCount": 432,
      "updated_at": "2024-03-06T12:22:15Z"
    }
  ],
  "pagination": {
    "total_count": 156,
    "page": 1,
    "limit": 20,
    "total_pages": 8
  }
}

Response Properties

Response Object

PropertyTypeDescription
statusstringStatus of the request ("success" or "error")
fansarrayList of social profiles from fans across all platforms
fans[].idstringUnique identifier for the fan's social profile
fans[].usernamestringUsername or handle on the platform
fans[].avatarstringURL to the fan's avatar/profile image
fans[].profile_urlstringFull URL to the fan's profile on the platform
fans[].regionstringGeographic region or location of the fan
fans[].biostringFan's biography or profile description
fans[].followerCountnumberNumber of followers the fan has
fans[].followingCountnumberNumber of accounts the fan is following
fans[].updated_atstringISO timestamp of when the fan data was last updated
paginationobjectPagination metadata for the response
pagination.total_countnumberTotal number of records available
pagination.pagenumberCurrent page number
pagination.limitnumberNumber of records per page
pagination.total_pagesnumberTotal number of pages available