Skip to main content
GET
/
api
/
apify
/
scraper
cURL
curl --request GET \
  --url https://api.recoupable.com/api/apify/scraper \
  --header 'Authorization: Bearer <token>'
{
  "status": "RUNNING",
  "datasetId": "def456uvw"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

runId
string
required

The ID of the Apify run to check status for. This is returned when starting a scrape via Instagram Comments, Instagram Profiles, Social Scrape, or Artist Socials Scrape endpoints.

Response

Scraper run status retrieved successfully. Returns status info for in-progress runs, or status info plus data for completed runs.

Response when the Apify run is still in progress

status
string
required

Current status of the Apify run (e.g., 'RUNNING', 'READY')

Example:

"RUNNING"

datasetId
string
required

ID of the dataset that will contain the results when the run completes

Example:

"def456uvw"