List User Datasets
const url = 'https://example.com/v1/datasets/list?dataset_type=lerobot_v2_1&limit=20&sort=name';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://example.com/v1/datasets/list?dataset_type=lerobot_v2_1&limit=20&sort=name'List published QDS datasets for exactly one authorized account.
The legacy artifact/job catalog is deliberately not consulted. QDS’s canonical dataset UUID is the stable public identity; source format is a persisted ingest fact, never inferred from filenames or another service.
Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ”Filter by the persisted QDS source format
Filter by the persisted QDS source format
Scope to this account (the dashboard’s active account). Membership is verified upstream; a non-member gets 403.
Scope to this account (the dashboard’s active account). Membership is verified upstream; a non-member gets 403.
Search dataset path
Search dataset path
Pagination cursor
Pagination cursor
Header Parameters
Section titled “Header Parameters ”Responses
Section titled “ Responses ”Paginated list of user’s datasets
object
object
Artifact ID
Dataset subtype (lerobot_v2_1, lerobot_v3, mcap_ros2)
Alias of subtype
Dataset path (org/name)
object
object
Input or output
Immutable timestamp of the first successful structured QDS publication
QDS catalog facts (P6a)
object
REAL logical bytes (file sizes sum)
Mean of STORED episode quality scores
How many episodes have a stored score
object
Whether more items exist after this page
Cursor for the next page
Total matching items
Example generated
{ "items": [ { "artifact_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "subtype": "example", "artifact_subtype": "example", "path": "example", "metadata": {}, "jobs": [ { "job_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "direction": "example" } ], "published_at": "2026-04-15T12:00:00Z", "qds": { "repo_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "size_bytes": 1, "file_count": 1, "dataset_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "episode_count": 1, "total_frames": 1, "quality_avg": 1, "scored_episodes": 1 } } ], "page_info": { "has_next": true, "end_cursor": "example", "total_count": 1 }}Invalid or missing API key
Standard error response.
object
Error message describing what went wrong
Example generated
{ "detail": "example"}Invalid pagination parameters