Skip to main content
GET
/
data_entries
/
raw_data
/
staged
/
timeseries
/
{data_id}
curl "https://api.atomscale.ai/data_entries/raw_data/staged/timeseries/d290f1ee-6c54-4b01-90e6-d701748f0851" \
  -H "X-API-KEY: YOUR_API_KEY"
[
  {
    "timeseries_id": "ts_001",
    "data_id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
    "system": "scienta",
    "version": "1.0",
    "name": "temperature",
    "unit": "C",
    "component": "substrate",
    "unix_times": [1705312200000, 1705312201000, 1705312202000],
    "values": [550.1, 550.3, 550.5],
    "last_updated": "2024-01-15T10:30:02Z"
  }
]
Returns timeseries data associated with a staged data entry. This is used for instrument timeseries data that has been uploaded but may not yet be fully processed.
data_id
string
required
The data entry UUID

Response

Returns an array of timeseries channel objects.
timeseries_id
string
Unique identifier for this timeseries channel
data_id
string
Data entry UUID
name
string
Channel name
unit
string
Measurement unit for the values
component
string
Component or sub-channel identifier
unix_times
array
Array of Unix timestamps (milliseconds)
values
array
Array of measurement values corresponding to the timestamps
last_updated
string
ISO 8601 timestamp of last update
curl "https://api.atomscale.ai/data_entries/raw_data/staged/timeseries/d290f1ee-6c54-4b01-90e6-d701748f0851" \
  -H "X-API-KEY: YOUR_API_KEY"
[
  {
    "timeseries_id": "ts_001",
    "data_id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
    "system": "scienta",
    "version": "1.0",
    "name": "temperature",
    "unit": "C",
    "component": "substrate",
    "unix_times": [1705312200000, 1705312201000, 1705312202000],
    "values": [550.1, 550.3, 550.5],
    "last_updated": "2024-01-15T10:30:02Z"
  }
]