Uploads a dataset to use for training AI models on the provider specified.
The dataset must be in a format supported by the provider.
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/ai-providers/providers/huggingface/datasets \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-d '{
"localPath": "string",
"format": "string",
"description": "string"
}'curl -i -X GET \
'http://docs.webrobot.eu/_mock/openapi/webrobot/api/datasets?type=parquet&indexed=true&format=parquet' \
-H 'X-API-Key: YOUR_API_KEY_HERE'[ { "id": "string", "name": "string", "description": "string", "userId": "string", "sourceUrl": "string", "sourceType": "string", "filePath": "string", "fileFormat": "string", "fileSize": 0, "schema": "string", "metadata": "string", "enabled": true, "fieldIds": [ … ], "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "storagePath": "string", "format": "string", "datasetType": "string", "trinoSchema": "string" } ]
curl -i -X POST \
http://docs.webrobot.eu/_mock/openapi/webrobot/api/datasets \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-d '{
"id": "string",
"name": "string",
"description": "string",
"userId": "string",
"sourceUrl": "string",
"sourceType": "string",
"filePath": "string",
"fileFormat": "string",
"fileSize": 0,
"schema": "string",
"metadata": "string",
"enabled": true,
"fieldIds": [
"string"
],
"createdAt": "2019-08-24T14:15:22Z",
"updatedAt": "2019-08-24T14:15:22Z",
"storagePath": "string",
"format": "string",
"datasetType": "string",
"trinoSchema": "string"
}'{ "id": "string", "name": "string", "description": "string", "userId": "string", "sourceUrl": "string", "sourceType": "string", "filePath": "string", "fileFormat": "string", "fileSize": 0, "schema": "string", "metadata": "string", "enabled": true, "fieldIds": [ "string" ], "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "storagePath": "string", "format": "string", "datasetType": "string", "trinoSchema": "string" }
curl -i -X GET \
http://docs.webrobot.eu/_mock/openapi/webrobot/api/datasets/123 \
-H 'X-API-Key: YOUR_API_KEY_HERE'{ "id": "string", "name": "string", "description": "string", "userId": "string", "sourceUrl": "string", "sourceType": "string", "filePath": "string", "fileFormat": "string", "fileSize": 0, "schema": "string", "metadata": "string", "enabled": true, "fieldIds": [ "string" ], "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "storagePath": "string", "format": "string", "datasetType": "string", "trinoSchema": "string" }
curl -i -X PUT \
http://docs.webrobot.eu/_mock/openapi/webrobot/api/datasets/123 \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-d '{
"id": "string",
"name": "string",
"description": "string",
"userId": "string",
"sourceUrl": "string",
"sourceType": "string",
"filePath": "string",
"fileFormat": "string",
"fileSize": 0,
"schema": "string",
"metadata": "string",
"enabled": true,
"fieldIds": [
"string"
],
"createdAt": "2019-08-24T14:15:22Z",
"updatedAt": "2019-08-24T14:15:22Z",
"storagePath": "string",
"format": "string",
"datasetType": "string",
"trinoSchema": "string"
}'{ "id": "string", "name": "string", "description": "string", "userId": "string", "sourceUrl": "string", "sourceType": "string", "filePath": "string", "fileFormat": "string", "fileSize": 0, "schema": "string", "metadata": "string", "enabled": true, "fieldIds": [ "string" ], "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "storagePath": "string", "format": "string", "datasetType": "string", "trinoSchema": "string" }
curl -i -X DELETE \
http://docs.webrobot.eu/_mock/openapi/webrobot/api/datasets/123 \
-H 'X-API-Key: YOUR_API_KEY_HERE'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'