Skip to main content
GET
/
api
/
apify
/
runs
/
{runId}
cURL
curl --request GET \
  --url https://recoup-api.vercel.app/api/apify/runs/{runId}
{
  "status": "RUNNING",
  "dataset_id": "def456uvw"
}

Documentation Index

Fetch the complete documentation index at: https://developers.recoupable.com/llms.txt

Use this file to discover all available pages before exploring further.

Path 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"

dataset_id
string | null
required

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

Example:

"def456uvw"