GET
/
api
/
scrapers
/
{scraper_id}
curl --request GET \
  --url https://app.mrscraper.com/api/scrapers/{scraper_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": 88683,
    "name": "My scraper 1",
    "urls": [
      "https://example.com/scrape-url"
    ],
    "scheduled": true,
    "schedule": "15 1 * * *",
    "schedule_explanation": "At 01:15 AM",
    "created_at": "2022-11-20T11:54:52.000000Z",
    "updated_at": "2022-11-20T11:54:52.000000Z"
  }
}

Authorizations

Authorization
string
header
required

You can retrieve your token by visiting the API Tokens section inside your profile page or see https://docs.mrscraper.com/documentation/api-token for the details.

Path Parameters

scraper_id
integer
required

The scraper's ID.

Response

200 - application/json
data
object