List datasets available to the bearer token.
curl --request GET \
--url https://api.hebbianrobotics.com/api/quality/datasets \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.hebbianrobotics.com/api/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/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>"
}quality
List datasets available to the bearer token.
Use the returned dataset IDs in the other Robotics Data Quality endpoints. The
metrics array shows which measurements are currently available.
List datasets available to the bearer token.
curl --request GET \
--url https://api.hebbianrobotics.com/api/quality/datasets \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.hebbianrobotics.com/api/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/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>"
}Authorizations
Capability-bearing token issued by a squash operator. Required for curation, exports, dataset registration, and job control when the deployment runs in gated mode; public reads stay open. GET /api/access reports the capabilities a given credential actually carries.
Response
Readable datasets and available metrics
Response of GET /api/quality/datasets.
Datasets the bearer token can read.
Show child attributes
Show child attributes
⌘I
