Returns data catalogue items for your organization with advanced filtering options.
Filter by specific data entry UUIDs
Filter by physical sample UUIDs
Filter by characterization source type (e.g., rheed_video, xps, sem, optical, raman, photoluminescence, metrology)
Filter by pipeline status: success, pending, error, running, all
Search keywords to filter results
include_organization_data
Include data from the entire organization (not just your own)
Maximum number of results to return (max 10000)
Number of results to skip for pagination
Response
Returns an array of data catalogue objects. Key fields shown below (the full response includes additional metadata fields).
Original filename of the uploaded data
Characterization source type (e.g., rheed_video, xps, sem)
Processing pipeline status
ISO 8601 timestamp of upload
Associated physical sample UUID
Name of the associated physical sample
Tags associated with this data entry
Projects this data entry belongs to
from atomscale import Client
client = Client(api_key="YOUR_API_KEY")
results = client.search(data_type="rheed_video", status="success")
[
{
"data_id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
"raw_name": "rheed_video_2024_01_15.mp4",
"char_source_type": "rheed_video",
"pipeline_status": "success",
"upload_datetime": "2024-01-15T10:30:00Z",
"last_accessed_datetime": "2024-01-15T14:00:00Z",
"physical_sample_id": "a1b2c3d4-5678-90ab-cdef-1234567890ab",
"physical_sample_name": "GaAs-001",
"tags": [],
"projects": []
}
]