Model Training
View and Search Pre-Trained Data Sets
View and Search Pre-Trained Data Sets that have been uploaded to the platform for use in training search models.
GET
/
api
/
list-datasets
Authorization
curl --request GET \
--url https://api.worqhat.com/api/list-datasets \
--header 'Authorization: <authorization>'
{
"data": [
{
"dataset_description": "This is dataset 1",
"dataset_id": "dataset123",
"dataset_name": "Dataset 1",
"dataset_timestamp": {
"_clock_hash": 1634954636579,
"_seconds": 1624954636
},
"training_for": "Search Models",
"type": "Self"
}
],
"processing_count": 12,
"processing_id": "4b139bfe-1f71-4345-b539-fa6c1700f166",
"processing_time": 888,
"status": "success"
}
Authorizations
Authorization
string
headerrequiredBearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
data
object[]
processing_count
integer
The number of times the request has been processed. This is what is considered in the Billing Process. This is either the number of times the image is processed or the number of words that the server processes.
processing_id
string
A universally unique identifier for the request. This can be used to track the request in the logs.
processing_time
integer
The time taken to process the request, in milliseconds.
status
string
Status indicating the success of the Audio Conversion Process.
Was this page helpful?
curl --request GET \
--url https://api.worqhat.com/api/list-datasets \
--header 'Authorization: <authorization>'
{
"data": [
{
"dataset_description": "This is dataset 1",
"dataset_id": "dataset123",
"dataset_name": "Dataset 1",
"dataset_timestamp": {
"_clock_hash": 1634954636579,
"_seconds": 1624954636
},
"training_for": "Search Models",
"type": "Self"
}
],
"processing_count": 12,
"processing_id": "4b139bfe-1f71-4345-b539-fa6c1700f166",
"processing_time": 888,
"status": "success"
}