Skip to main content
POST
/
follows
/
follow
Follow Artist
curl --request POST \
  --url http://localhost:3000/api/follows/follow \
  --header 'Content-Type: application/json' \
  --data '
{
  "artistId": "<string>"
}
'
{
  "success": true,
  "follow": {},
  "message": "<string>"
}

Body

application/json
artistId
string
required

ID of the artist to follow

Response

Successfully followed artist

success
boolean
follow
object
message
string