Skip to main content
GET
/
api
/
v1
/
scrape
/
status
/
{job_id}
Get Batch Status
curl --request GET \
  --url https://api.promptguard.dev/api/v1/scrape/status/{job_id} \
  --header 'Authorization: Bearer <token>'
{
  "job_id": "<string>",
  "status": "<string>",
  "total_urls": 123,
  "completed_urls": 123,
  "failed_urls": 123,
  "results": []
}

Authorizations

Authorization
string
header
required

API Key authentication for developer endpoints (/api/v1/*). Use format: 'Bearer pg_api_your_key_here'

Path Parameters

job_id
string
required

Response

Successful Response

Status of a batch scrape job

job_id
string
required
status
string
required
total_urls
integer
required
completed_urls
integer
required
failed_urls
integer
required
results
ScrapeResponse · object[]