Scheduler
Scheduler is a free feature of the Scraper APIs that lets you automate recurring scraping and parsing jobs by creating schedules.
Check out the video tutorial below to learn more about Scheduler and how it works.
We advise using Scheduler together with the Upload to Cloud Storage feature. This way, you can set up your schedule and receive regular data updates in your storage without trying to fetch results from our system.
IMPORTANT: Scheduler is a powerful tool that can quickly raise your service bill. We advise testing it with a few job items and a limited number of repeats to ensure you get the correct data at the right intervals. Once that's established, you can stop the test schedule and create a new, scaled-up schedule.
Quick Start
When creating a new schedule, follow the simple steps below.
Tell us how often we should repeat the jobs by submitting a cron schedule expression;
Give us a bunch of job parameter sets that we should execute at scheduled times;
Let us know when to stop by submitting an end time.
See here to find a code example for submitting a new schedule.
HINT: Find out how to form job parameter sets by visiting the documentation of the particular Scraper API (SERP / E-Commerce / Web) you want to use.
NOTE: You can also download and import this Postman collection to try out all our Scheduler endpoints. New to Postman? Learn more about this tool here.
Endpoints
Scheduler has several endpoints you can use to control the service:
Create a new schedule
Overview
Use this endpoint to initiate a new schedule.
Endpoint:
https://data.oxylabs.io/v1/schedules
Method:
POST
Authentication:
Basic
Request headers:
Content-Type: application/json
Input
Parameter | Description | Default Value |
---|---|---|
| - | |
| List of Scraper APIs job parameter sets that should be executed as part of the schedule. | - |
| The time at which the schedule should stop running. NB: the end time is inclusive. | - |
- required parameter
The payload below will make Scheduler run two jobs schedule at 03:00 on Mondays until end_time
(inclusive).
Output
The response below confirms that the schedule was created successfully.
Get all schedules
Overview
Use this endpoint to get the list of all schedules associated with your user account.
Endpoint:
https://data.oxylabs.io/v1/schedules
Method:
GET
Authentication:
Basic
Output
This endpoint returns the list of all schedule IDs associated with the user account making the request.
See the sample response below.
Get schedule information
Overview
Use this endpoint to get information about a specific schedule.
Endpoint:
https://data.oxylabs.io/v1/schedules/{id}
Method:
GET
Authentication:
Basic
Output
The payload below contains a sample schedule info response.
NOTE: Currently,items
(i.e., the jobs to be executed as part of a schedule) are missing in the output. We are aware of this and will add them shortly.
Key | Description | Type |
---|---|---|
| The unique ID of the schedule. | Integer |
| Is the schedule active right now? | Boolean |
| The number of items (jobs) in the schedule. | Integer |
| The cron expression associated with the schedule. | String |
| The time upon which the schedule will stop being repeated. | String |
| The time upon which the schedule will run next. | String |
| Contains stats job creation and job completion statistics. | JSON Object |
| The number of items (jobs) in the schedule. | Integer |
| Contains job creation statistics. | JSON Array |
| The status code received in response to an attempt to execute the schedule (create a scraping/parsing job). | Integer |
| The number of job creation attempts that resulted in that particular status code. | Integer |
| The ratio between the number of job creation attempts that resulted in that particular attempt and the total number of job creation attempts. | Float |
| Contains the outcome statistics of scraping/parsing jobs executed as part of the schedule. | JSON Array |
| The job status. Possible values: | String |
| The number of jobs that resulted in that particular | Integer |
| The ratio between the number of jobs with that particular status and the total number of jobs created. | Float |
Deactivate or reactivate a schedule
Overview
Use this endpoint to activate or deactivate a particular schedule.
Endpoint:
https://data.oxylabs.io/v1/schedules/{id}/state
Method:
PUT
Authentication:
Basic
Input
Use this endpoint to stop or restart a schedule.
By setting active
to false
, you can stop the execution of a particular schedule.
If you set active
to true
, you can reactivate a previously stopped schedule.
Output
The standard response is an empty response body with a 202
status code.
API response codes
For API response codes, refer to API section.
Last updated