Skip to main content
GET
/
scraper
/
{scraper_id}
/
{endpoint_name}
Execute an API endpoint (GET)
curl --request GET \
  --url https://api.parse.bot/scraper/{scraper_id}/{endpoint_name} \
  --header 'X-API-Key: <api-key>'
{
  "status": "success",
  "data": "<unknown>",
  "raw_output": "<string>",
  "scraper_id": "<string>",
  "execution_time": 123
}

Authorizations

X-API-Key
string
header
required

API key for programmatic access. Get yours at https://parse.bot or via POST /account/api-key with JWT auth.

Path Parameters

scraper_id
string
required
endpoint_name
string
required

Response

200 - application/json

Endpoint execution result

status
enum<string>

Execution result status

Available options:
success,
error,
timeout
data
any | null

The structured data returned by the endpoint

raw_output
string | null

Raw script output (present on error or when data parsing fails)

scraper_id
string
execution_time
number | null

Execution time in seconds