Skip to main content
GET
/
api
/
artist-profile
cURL
curl --request GET \
  --url https://recoup-api.vercel.app/api/artist-profile \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "profile": {
    "id": "<string>",
    "profiles": [
      {
        "id": "<string>",
        "username": "<string>",
        "profile_url": "<string>",
        "avatar": "<string>",
        "bio": "<string>",
        "follower_count": 123,
        "following_count": 123,
        "post_count": 123,
        "region": "<string>",
        "updated_at": "2023-11-07T05:31:56Z"
      }
    ],
    "total_followers": 123,
    "total_following": 123,
    "total_posts": 123,
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

artist_account_id
string<uuid>
required

The unique identifier of the artist account to fetch profile data for

Response

Artist profile retrieved successfully

status
enum<string>
required

Status of the request

Available options:
success
profile
object
required

The artist's comprehensive profile information