Skip to content

WebRobot ETL API (1.0.0)

API for managing projects, jobs, datasets, and ETL pipelines on WebRobot.

Authentication

The API uses API Keys for authentication. Include the X-API-Key header in all requests.

Base URL

  • Production: https://api.webrobot.eu/api
  • Development: http://localhost:8020/api

Rate Limiting

Requests are limited to 1000 requests per minute per API key.

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/

Cloud

Operations

Scheduler

Operations

Spark

Operations

Health

Operations

Training

Operations

EAN Plugin

Operations

Jobs

Operations

Bootstrap

Operations

Images

Operations

Info

Operations

Query

Operations

Upload

Operations

AI Providers

Operations

Models

Operations

Datasets

Operations

Agents

Operations

Categories

Operations

Test

Operations

Cloud Credentials

Operations

Tasks

Operations

Admin

Operations

ETL Library

Operations

Package

Operations

Get URL for package download

Request

Returns a temporary URL to download a package of projects and configurations.

Security
ApiKeyAuth
curl -i -X GET \
  http://docs.webrobot.eu/_mock/openapi/webrobot/api/package/download \
  -H 'X-API-Key: YOUR_API_KEY_HERE'

Responses

Download URL

Bodyapplication/json
urlstring(uri)

Temporary URL for download

Response
application/json
{ "url": "http://example.com" }

Get URL for package upload

Request

Returns a temporary URL to upload a package of projects and configurations.

Security
ApiKeyAuth
curl -i -X GET \
  http://docs.webrobot.eu/_mock/openapi/webrobot/api/package/upload \
  -H 'X-API-Key: YOUR_API_KEY_HERE'

Responses

URL di upload

Bodyapplication/json
urlstring(uri)

Temporary URL for upload

Response
application/json
{ "url": "http://example.com" }

Start export of all projects

Request

Starts the export process for all projects and system configurations in a compressed package.

Security
ApiKeyAuth
curl -i -X GET \
  http://docs.webrobot.eu/_mock/openapi/webrobot/api/package/export/all \
  -H 'X-API-Key: YOUR_API_KEY_HERE'

Responses

Export started successfully

Bodyapplication/json
exportIdstring

Export operation ID

Response
application/json
{ "exportId": "string" }

Start export of a specific project

Request

Starts the export process for a specific project and its configurations in a compressed package.

Security
ApiKeyAuth
Path
projectIdstringrequired

Project ID to export

Example: 98
curl -i -X GET \
  http://docs.webrobot.eu/_mock/openapi/webrobot/api/package/export/id/98 \
  -H 'X-API-Key: YOUR_API_KEY_HERE'

Responses

Export started successfully

Bodyapplication/json
exportIdstring

Export operation ID

Response
application/json
{ "exportId": "string" }

Start import of all projects

Request

Starts the import process of all projects and configurations from a compressed package.

Warning: This operation may overwrite existing projects.

Security
ApiKeyAuth
curl -i -X GET \
  http://docs.webrobot.eu/_mock/openapi/webrobot/api/package/import/all \
  -H 'X-API-Key: YOUR_API_KEY_HERE'

Responses

Import started successfully

Bodyapplication/json
importIdstring

Import operation ID

Response
application/json
{ "importId": "string" }

Start import of a specific project

Request

Starts the import process of a specific project and its configurations from a compressed package.

Warning: This operation may overwrite the existing project if present.

Security
ApiKeyAuth
Path
projectIdstringrequired

Project ID to import

Example: 98
curl -i -X GET \
  http://docs.webrobot.eu/_mock/openapi/webrobot/api/package/import/id/98 \
  -H 'X-API-Key: YOUR_API_KEY_HERE'

Responses

Import started successfully

Bodyapplication/json
importIdstring

Import operation ID

Response
application/json
{ "importId": "string" }

Plugins

Operations

Projects

Operations

ETL Execution

Operations

Execution

Operations

Webhooks

Operations

Metrics

Operations

getHtml

Request

Security
ApiKeyAuth
Path
protocolstringrequired

HTTP protocol (http or https)

urlstringrequired

URL to fetch HTML content from

curl -i -X GET \
  'http://docs.webrobot.eu/_mock/openapi/webrobot/api/html/{url}/{protocol}' \
  -H 'X-API-Key: YOUR_API_KEY_HERE'

Responses

default response

Bodytext/html

getById

Request

Security
ApiKeyAuth
Path
tablestringrequired

Table name in Strapi

idstringrequired

Record ID

curl -i -X GET \
  'http://docs.webrobot.eu/_mock/openapi/api/strapi-tables/{table}/{id}' \
  -H 'X-API-Key: YOUR_API_KEY_HERE'

Responses

default response

Bodyapplication/json
Response
application/json
null

update

Request

Security
ApiKeyAuth
Path
tablestringrequired

Table name in Strapi

idstringrequired

Record ID

Bodyapplication/json
property name*objectadditional property
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": {}
  }'

Responses

default response

Bodyapplication/json
Response
application/json
null

delete

Request

Security
ApiKeyAuth
Path
tablestringrequired

Table name in Strapi

idstringrequired

Record ID

curl -i -X DELETE \
  'http://docs.webrobot.eu/_mock/openapi/api/strapi-tables/{table}/{id}' \
  -H 'X-API-Key: YOUR_API_KEY_HERE'

Responses

default response

Bodyapplication/json
Response
application/json
null

findAll

Request

Security
ApiKeyAuth
Path
tablestringrequired
Query
pageinteger(int32)
Default 0
pageSizeinteger(int32)

Number of records per page

Default 50
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'

Responses

default response

Bodyapplication/json
Response
application/json
null

insert

Request

Security
ApiKeyAuth
Path
tablestringrequired

Table name in Strapi

Bodyapplication/json
property name*objectadditional property
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": {}
  }'

Responses

default response

Bodyapplication/json
Response
application/json
null

getHealth

Request

Security
ApiKeyAuth
curl -i -X GET \
  http://docs.webrobot.eu/_mock/openapi/health \
  -H 'X-API-Key: YOUR_API_KEY_HERE'

Responses

default response

Bodyapplication/json
Response
application/json
null

Python Extensions

Operations