List datasets
curl --request GET \
--url https://api.hebbianrobotics.com/api/v1beta/quality/datasets \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.hebbianrobotics.com/api/v1beta/quality/datasets"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.hebbianrobotics.com/api/v1beta/quality/datasets', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));false{
"datasets": [
{
"dataset": "<string>",
"metrics": []
}
]
}{
"code": "<string>",
"message": "<string>"
}{
"code": "<string>",
"message": "<string>"
}{
"code": "<string>",
"message": "<string>"
}{
"code": "<string>",
"message": "<string>"
}{
"code": "<string>",
"message": "<string>"
}quality
List datasets
Use the returned dataset IDs in the other Robotics Data Quality endpoints. The
metrics array shows which measurements are currently available.
GET
/
api
/
v1beta
/
quality
/
datasets
List datasets
curl --request GET \
--url https://api.hebbianrobotics.com/api/v1beta/quality/datasets \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.hebbianrobotics.com/api/v1beta/quality/datasets"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.hebbianrobotics.com/api/v1beta/quality/datasets', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));false{
"datasets": [
{
"dataset": "<string>",
"metrics": []
}
]
}{
"code": "<string>",
"message": "<string>"
}{
"code": "<string>",
"message": "<string>"
}{
"code": "<string>",
"message": "<string>"
}{
"code": "<string>",
"message": "<string>"
}{
"code": "<string>",
"message": "<string>"
}⌘I
