Preview one file in a dataset repo
GET
/v1/datasets/file-preview
const url = 'https://example.com/v1/datasets/file-preview?path=example&file=example';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/file-preview?path=example&file=example'Format-aware single-file preview: inline text for small text files, parquet schema + sample rows, tensor tables for model formats, plain metadata otherwise.
Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” path
required
Dataset path (org/name)
string
Dataset path (org/name)
file
required
File path within the repo
string
File path within the repo
ref
Branch / tag / commit (default main)
string | null
Branch / tag / commit (default main)
Header Parameters
Section titled “Header Parameters ” x-api-key
string | null
Responses
Section titled “ Responses ”Text content / parquet rows / tensor table / metadata
Media type application/json
Example generated
exampleUnknown file, ref, or non-QDS backend
Validation Error
Media type application/json
HTTPValidationError
object
detail
Array<object>
ValidationErrorobject
loc
required
Location
Array<string | integer>
msg
required
Message
string
type
required
Error Type
string
input
ctx
Context
object
Example generated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example", "input": "example", "ctx": {} } ]}