Project ID
- Get logs of a job execution
Execute EAN Image Sourcing job for a country
Get status of the last EAN job executed for a country
Get all jobs of a project
Add a job to a project
Get all tasks of a job
Create a new task in a job
Get a specific task
Update a task
Delete a task
Execute a Spark job immediately
Get status of a job execution
Get a specific job
Update a job
Remove a job from a project
Get status of a task
Webhook to notify job completion
Start a task
Stop a task
Get metrics of a task
Get metrics aggregate of a job
Get logs of a job executi...
WebRobot ETL API (1.0.0)
API for managing projects, jobs, datasets, and ETL pipelines on WebRobot.
The API uses API Keys for authentication. Include the X-API-Key header in all requests.
Download OpenAPI description
Overview
WebRobot Support
License
Languages
Servers
Mock server
http://docs.webrobot.eu/_mock/openapi/
Production
https://api.webrobot.eu/api/
Local development
http://localhost:8020/api/
Request
Executes a Spark job immediately, allocating resources in the Kubernetes cluster.
The job is executed with the configurations specified in the job itself or through optional parameters in the request.
Important notes:
- The job must be associated with an agent with valid PySpark code
- Cloud credentials are injected automatically if configured
- The webhook is called automatically at start (RUNNING) and at the end (COMPLETED/FAILED)
Rate limiting: Max 10 concurrent executions per project
Security
ApiKeyAuth
Optional parameters for job execution.
If not provided, the job's default values are used.
- Mock serverhttp://docs.webrobot.eu/_mock/openapi/webrobot/api/projects/id/{projectId}/jobs/{jobId}/execute
- Productionhttps://api.webrobot.eu/api/webrobot/api/projects/id/{projectId}/jobs/{jobId}/execute
- Local developmenthttp://localhost:8020/api/webrobot/api/projects/id/{projectId}/jobs/{jobId}/execute
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
http://docs.webrobot.eu/_mock/openapi/webrobot/api/projects/id/98/jobs/210/execute \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-d '{}'Response
application/json
{ "executionId": "spark-2d53940045a6-95379617", "status": "SUBMITTED", "message": "Job execution submitted successfully", "clusterId": "default-cluster", "success": true }
- Mock serverhttp://docs.webrobot.eu/_mock/openapi/webrobot/api/projects/id/{projectId}/jobs/{jobId}/executions/{executionId}/logs
- Productionhttps://api.webrobot.eu/api/webrobot/api/projects/id/{projectId}/jobs/{jobId}/executions/{executionId}/logs
- Local developmenthttp://localhost:8020/api/webrobot/api/projects/id/{projectId}/jobs/{jobId}/executions/{executionId}/logs
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'http://docs.webrobot.eu/_mock/openapi/webrobot/api/projects/id/98/jobs/210/executions/spark-2d53940045a6-95379617/logs?podType=driver&tail=100' \
-H 'X-API-Key: YOUR_API_KEY_HERE'Response
application/json
{ "logs": [ "string" ] }
Request
Returns the detailed status of a Spark job execution, including information on progress, duration, metrics, and any errors.
The status is retrieved from the database and includes details such as:
- Execution status (PENDING, RUNNING, COMPLETED, FAILED)
- Start and end timestamps
- Execution time
- URL Spark UI
- Number of executor pods
- Error messages (if failed)
Security
ApiKeyAuth
- Mock serverhttp://docs.webrobot.eu/_mock/openapi/webrobot/api/projects/id/{projectId}/jobs/{jobId}/executions/{executionId}/status
- Productionhttps://api.webrobot.eu/api/webrobot/api/projects/id/{projectId}/jobs/{jobId}/executions/{executionId}/status
- Local developmenthttp://localhost:8020/api/webrobot/api/projects/id/{projectId}/jobs/{jobId}/executions/{executionId}/status
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
http://docs.webrobot.eu/_mock/openapi/webrobot/api/projects/id/98/jobs/210/executions/spark-2d53940045a6-95379617/status \
-H 'X-API-Key: YOUR_API_KEY_HERE'Response
application/json
{ "executionId": "spark-2d53940045a6-95379617", "status": "COMPLETED", "startedAt": "2019-08-24T14:15:22Z", "completedAt": "2019-08-24T14:15:22Z", "executionTimeSeconds": 0, "errorMessage": "string", "sparkUiUrl": "string", "executorPodCount": 0 }
- Mock serverhttp://docs.webrobot.eu/_mock/openapi/webrobot/api/html/{url}/{protocol}
- Productionhttps://api.webrobot.eu/api/webrobot/api/html/{url}/{protocol}
- Local developmenthttp://localhost:8020/api/webrobot/api/html/{url}/{protocol}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'http://docs.webrobot.eu/_mock/openapi/webrobot/api/html/{url}/{protocol}' \
-H 'X-API-Key: YOUR_API_KEY_HERE'- Mock serverhttp://docs.webrobot.eu/_mock/openapi/api/strapi-tables/{table}/{id}
- Productionhttps://api.webrobot.eu/api/api/strapi-tables/{table}/{id}
- Local developmenthttp://localhost:8020/api/api/strapi-tables/{table}/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'http://docs.webrobot.eu/_mock/openapi/api/strapi-tables/{table}/{id}' \
-H 'X-API-Key: YOUR_API_KEY_HERE'- Mock serverhttp://docs.webrobot.eu/_mock/openapi/api/strapi-tables/{table}/{id}
- Productionhttps://api.webrobot.eu/api/api/strapi-tables/{table}/{id}
- Local developmenthttp://localhost:8020/api/api/strapi-tables/{table}/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'http://docs.webrobot.eu/_mock/openapi/api/strapi-tables/{table}/{id}' \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-d '{
"property1": {},
"property2": {}
}'- Mock serverhttp://docs.webrobot.eu/_mock/openapi/api/strapi-tables/{table}/{id}
- Productionhttps://api.webrobot.eu/api/api/strapi-tables/{table}/{id}
- Local developmenthttp://localhost:8020/api/api/strapi-tables/{table}/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'http://docs.webrobot.eu/_mock/openapi/api/strapi-tables/{table}/{id}' \
-H 'X-API-Key: YOUR_API_KEY_HERE'- Mock serverhttp://docs.webrobot.eu/_mock/openapi/api/strapi-tables/{table}
- Productionhttps://api.webrobot.eu/api/api/strapi-tables/{table}
- Local developmenthttp://localhost:8020/api/api/strapi-tables/{table}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'http://docs.webrobot.eu/_mock/openapi/api/strapi-tables/{table}?page=0&pageSize=50' \
-H 'X-API-Key: YOUR_API_KEY_HERE'- Mock serverhttp://docs.webrobot.eu/_mock/openapi/api/strapi-tables/{table}
- Productionhttps://api.webrobot.eu/api/api/strapi-tables/{table}
- Local developmenthttp://localhost:8020/api/api/strapi-tables/{table}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'http://docs.webrobot.eu/_mock/openapi/api/strapi-tables/{table}' \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-d '{
"property1": {},
"property2": {}
}'- Mock serverhttp://docs.webrobot.eu/_mock/openapi/health
- Productionhttps://api.webrobot.eu/api/health
- Local developmenthttp://localhost:8020/api/health
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
http://docs.webrobot.eu/_mock/openapi/health \
-H 'X-API-Key: YOUR_API_KEY_HERE'