Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions api-reference/artist/profile.mdx

This file was deleted.

79 changes: 0 additions & 79 deletions api-reference/openapi/releases.json
Original file line number Diff line number Diff line change
Expand Up @@ -994,45 +994,6 @@
}
}
},
"/api/artist-profile": {
"get": {
"description": "Retrieve comprehensive profile information for an artist across all connected social media platforms, including profile details and post metrics.",
"parameters": [
{
"name": "artist_account_id",
"in": "query",
"description": "The unique identifier of the artist account to fetch profile data for",
"required": true,
"schema": {
"type": "string",
"format": "uuid"
}
}
],
"responses": {
"200": {
"description": "Artist profile retrieved successfully",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ArtistProfileResponse"
}
}
}
},
"400": {
"description": "Bad request - missing required parameters",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ArtistProfileErrorResponse"
}
}
}
}
}
}
},
"/api/artists/{id}/fans": {
"get": {
"description": "Retrieve all social profiles from fans of an artist across all platforms. This endpoint aggregates fan data from all connected social media platforms. Supports pagination for large fan lists.",
Expand Down Expand Up @@ -2013,46 +1974,6 @@
}
}
},
"ArtistProfileErrorResponse": {
"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"
}
}
},
"ArtistProfileResponse": {
"type": "object",
"required": [
"status",
"profile"
],
"properties": {
"status": {
"type": "string",
"enum": [
"success"
],
"description": "Status of the request"
},
"profile": {
"$ref": "#/components/schemas/ArtistProfile",
"description": "The artist's comprehensive profile information"
}
}
},
"ArtistProfileSocialProfile": {
"type": "object",
"properties": {
Expand Down
3 changes: 1 addition & 2 deletions docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,7 @@
"api-reference/artists/pin",
"api-reference/artists/unpin",
"api-reference/artists/delete",
"api-reference/artists/socials",
"api-reference/artist/profile"
"api-reference/artists/socials"
]
},
{
Expand Down
4 changes: 2 additions & 2 deletions quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,9 @@ With your API key ready, you can now:
<Card
title="Artist Data"
icon="user"
href="/api-reference/artist/profile"
href="/api-reference/artists/socials"
>
Fetch artist profiles and social accounts.
Fetch artists' social accounts and follower counts.
</Card>
<Card
title="Fan Analytics"
Expand Down