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));{
"datasets": [
{
"dataset": "<string>",
"metrics": []
}
]
}{
"code": "<string>",
"message": "<string>"
}Every dataset this credential can read, and which measurements each one carries today.
The entry point of the query interface: every other route takes a dataset id, and this is where one comes from.
A dataset with an empty metrics list is registered but not yet enriched —
reported rather than hidden, so a corpus that was handed over and not yet
measured is visible instead of looking like it was never received.
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));{
"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 their stored measurements
Response of GET /api/quality/datasets.
Every dataset the caller's credential can read, by id.
Show child attributes
Show child attributes
