Returns information about the AI/ML training service, including versions and configurations.
/
Estimate the cost of a tr...
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/
- Mock serverhttp://docs.webrobot.eu/_mock/openapi/webrobot/cloud/training/info
- Productionhttps://api.webrobot.eu/api/webrobot/cloud/training/info
- Local developmenthttp://localhost:8020/api/webrobot/cloud/training/info
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
http://docs.webrobot.eu/_mock/openapi/webrobot/cloud/training/info \
-H 'X-API-Key: YOUR_API_KEY_HERE'- Mock serverhttp://docs.webrobot.eu/_mock/openapi/webrobot/cloud/training/health
- Productionhttps://api.webrobot.eu/api/webrobot/cloud/training/health
- Local developmenthttp://localhost:8020/api/webrobot/cloud/training/health
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
http://docs.webrobot.eu/_mock/openapi/webrobot/cloud/training/health \
-H 'X-API-Key: YOUR_API_KEY_HERE'Response
application/json
{ "status": "UP" }
- Mock serverhttp://docs.webrobot.eu/_mock/openapi/webrobot/api/ai-providers/providers/{provider}/training/{jobId}
- Productionhttps://api.webrobot.eu/api/webrobot/api/ai-providers/providers/{provider}/training/{jobId}
- Local developmenthttp://localhost:8020/api/webrobot/api/ai-providers/providers/{provider}/training/{jobId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
http://docs.webrobot.eu/_mock/openapi/webrobot/api/ai-providers/providers/huggingface/training/job-12345 \
-H 'X-API-Key: YOUR_API_KEY_HERE'- Mock serverhttp://docs.webrobot.eu/_mock/openapi/webrobot/api/ai-providers/providers/{provider}/training/{jobId}/download
- Productionhttps://api.webrobot.eu/api/webrobot/api/ai-providers/providers/{provider}/training/{jobId}/download
- Local developmenthttp://localhost:8020/api/webrobot/api/ai-providers/providers/{provider}/training/{jobId}/download
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'http://docs.webrobot.eu/_mock/openapi/webrobot/api/ai-providers/providers/huggingface/training/job-12345/download?outputPath=%2Fpath%2Fto%2Fmodels' \
-H 'X-API-Key: YOUR_API_KEY_HERE'- Mock serverhttp://docs.webrobot.eu/_mock/openapi/webrobot/api/ai-providers/providers/{provider}/cost-estimate
- Productionhttps://api.webrobot.eu/api/webrobot/api/ai-providers/providers/{provider}/cost-estimate
- Local developmenthttp://localhost:8020/api/webrobot/api/ai-providers/providers/{provider}/cost-estimate
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
http://docs.webrobot.eu/_mock/openapi/webrobot/api/ai-providers/providers/huggingface/cost-estimate \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-d '{
"model": "string",
"trainingFile": "string",
"validationFile": "string",
"datasetId": "string",
"hyperparameters": {
"property1": {},
"property2": {}
}
}'Response
application/json
{ "estimatedCost": 0.1, "currency": "USD" }
- Mock serverhttp://docs.webrobot.eu/_mock/openapi/webrobot/api/ai-providers/providers/{provider}/training/{jobId}/logs
- Productionhttps://api.webrobot.eu/api/webrobot/api/ai-providers/providers/{provider}/training/{jobId}/logs
- Local developmenthttp://localhost:8020/api/webrobot/api/ai-providers/providers/{provider}/training/{jobId}/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/ai-providers/providers/huggingface/training/job-12345/logs \
-H 'X-API-Key: YOUR_API_KEY_HERE'Response
application/json
{ "logs": [ "string" ] }
- Mock serverhttp://docs.webrobot.eu/_mock/openapi/webrobot/api/ai-providers/providers/{provider}/training/{jobId}/status
- Productionhttps://api.webrobot.eu/api/webrobot/api/ai-providers/providers/{provider}/training/{jobId}/status
- Local developmenthttp://localhost:8020/api/webrobot/api/ai-providers/providers/{provider}/training/{jobId}/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/ai-providers/providers/huggingface/training/job-12345/status \
-H 'X-API-Key: YOUR_API_KEY_HERE'Response
application/json
{ "status": "PENDING", "progress": 0.1 }
- Mock serverhttp://docs.webrobot.eu/_mock/openapi/webrobot/api/ai-providers/providers/{provider}/training
- Productionhttps://api.webrobot.eu/api/webrobot/api/ai-providers/providers/{provider}/training
- Local developmenthttp://localhost:8020/api/webrobot/api/ai-providers/providers/{provider}/training
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
http://docs.webrobot.eu/_mock/openapi/webrobot/api/ai-providers/providers/huggingface/training \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-d '{
"model": "string",
"trainingFile": "string",
"validationFile": "string",
"datasetId": "string",
"hyperparameters": {
"property1": {},
"property2": {}
}
}'Response
application/json
{ "jobId": "string" }
- 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'