Skip to main content
POST
/
api
/
social
/
scrape
cURL
curl --request POST \
  --url https://api.recoupable.com/api/social/scrape \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "social_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'
{
  "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

Social profile to scrape

social_id
string<uuid>
required

UUID of the social profile to scrape. Obtain this from the Get Artist Socials API.

Response

Scrape job 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)