datasets
Get Dataset Data
Get all data items in a dataset.
This endpoint retrieves all data items (documents, files, etc.) that belong to a specific dataset. Each data item includes metadata such as name, type, creation time, and storage location.
Path Parameters
- dataset_id (UUID): The unique identifier of the dataset
Response
Returns a list of data objects containing:
- id: Unique data item identifier
- name: Data item name
- created_at: When the data was added
- updated_at: When the data was last updated
- extension: File extension
- mime_type: MIME type of the data
- raw_data_location: Storage location of the raw data
- dataset_id: ID of the containing dataset
Error Codes
- 404 Not Found: Dataset doesn’t exist or user doesn’t have access
- 500 Internal Server Error: Error retrieving data
GET
Get Dataset Data
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Dataset UUID, the id field from GET /api/v1/datasets (not the name)
Example:
"b8a7c3de-4f5a-4b6c-8d9e-0f1a2b3c4d5e"
Get Dataset Data