list_uploads
List datasets in your workspace, newest first, with file details like ID, row count, and source. Filter by filename and page with limit/offset to locate the upload you need.
Instructions
List the datasets in your workspace (newest first) — every source, not just API uploads: dashboard/manual uploads and pipeline-ingested datasets appear too (see source_type per file).
Returns {files, count, limit, offset} where each file has: id (the
uploaded_file_id create_model needs), filename, original_filename,
source_type, row_count, column_count, created_at. Here count IS the
true total matching the filter (unlike list_runs, where it is the page
length). Column names/dtypes are not in the listing — fetch one upload
with get_upload for those.
Args: limit: Page size (API clamps to 1-500; default 50). offset: Rows to skip (paging). name: Optional case-insensitive substring filter on the original filename.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | ||
| limit | No | ||
| offset | No |