Executes a custom query on the EAN dataset of the specified country.
Allows querying the dataset with custom filters and conditions.
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.
curl -i -X POST \
http://docs.webrobot.eu/_mock/openapi/webrobot/api/ean-image-sourcing/denmark/query \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-d '{
"property1": {},
"property2": {}
}'curl -i -X POST \
http://docs.webrobot.eu/_mock/openapi/webrobot/api/datasets/query \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-d '{
"sql": "string",
"catalog": "string",
"schema": "string",
"limit": 0,
"offset": 0
}'{ "results": [ {} ] }
curl -i -X GET \
http://docs.webrobot.eu/_mock/openapi/webrobot/api/datasets/query/task/123/info \
-H 'X-API-Key: YOUR_API_KEY_HERE'curl -i -X GET \
'http://docs.webrobot.eu/_mock/openapi/webrobot/api/datasets/query/columns?catalog=minio&schema=default&table=my_table' \
-H 'X-API-Key: YOUR_API_KEY_HERE'[ { "name": "string", "type": "string" } ]
curl -i -X GET \
'http://docs.webrobot.eu/_mock/openapi/webrobot/api/datasets/query/tables?catalog=minio&schema=default' \
-H 'X-API-Key: YOUR_API_KEY_HERE'curl -i -X POST \
http://docs.webrobot.eu/_mock/openapi/webrobot/api/datasets/query/task/123 \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-d '{
"sql": "string",
"catalog": "string",
"schema": "string",
"limit": 0,
"offset": 0
}'{ "results": [ {} ] }
curl -i -X GET \
'http://docs.webrobot.eu/_mock/openapi/webrobot/api/html/{url}/{protocol}' \
-H 'X-API-Key: YOUR_API_KEY_HERE'curl -i -X GET \
'http://docs.webrobot.eu/_mock/openapi/api/strapi-tables/{table}/{id}' \
-H 'X-API-Key: YOUR_API_KEY_HERE'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": {}
}'curl -i -X DELETE \
'http://docs.webrobot.eu/_mock/openapi/api/strapi-tables/{table}/{id}' \
-H 'X-API-Key: YOUR_API_KEY_HERE'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'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": {}
}'curl -i -X GET \
http://docs.webrobot.eu/_mock/openapi/health \
-H 'X-API-Key: YOUR_API_KEY_HERE'