Skip to main content
POST
/
api
/
artist
/
socials
/
scrape
cURL
curl --request POST \
  --url https://recoup-api.vercel.app/api/artist/socials/scrape \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "artist_account_id": "1873859c-dd37-4e9a-9bac-80d35a1b2c3d"
}
'
[
  {
    "runId": "<string>",
    "datasetId": "<string>",
    "error": "<string>"
  }
]

Authorizations

Authorization
string
header
required

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

Body

application/json

Artist to scrape socials for

artist_account_id
string<uuid>
required

UUID of the artist account to scrape socials for

Example:

"1873859c-dd37-4e9a-9bac-80d35a1b2c3d"

Response

Scrape jobs triggered successfully

runId
string

Unique identifier for the Apify run

datasetId
string

Unique identifier for the dataset containing scraped data

error
string | null

Error message if the run failed (null if successful)