Skip to main content
GET
/
sims
/
{data_id}
from atomscale import Client

client = Client(api_key="YOUR_API_KEY")
results = client.get(data_ids="d290f1ee-6c54-4b01-90e6-d701748f0851")
sims = results[0]  # SIMSResult
print(sims.depth_profiles)
[
  {
    "data_id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
    "id": "sims_001",
    "processed_data_id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
    "species_name": "Si",
    "depths": [0, 10, 20, 30, 40],
    "depth_units": "nm",
    "concentrations": [1.2e18, 3.4e18, 5.1e18, 2.0e18, 8.0e17],
    "concentration_units": "atoms/cm^3",
    "species_metadata": {},
    "last_updated": "2024-01-15T10:35:00Z"
  }
]
Returns secondary ion mass spectrometry (SIMS) depth profile data for a data entry, as a list of profiles with one entry per chemical species. Each profile pairs a depth axis with the measured concentration at each depth.
data_id
string
required
The data entry UUID for the SIMS measurement

Response

Returns an array of depth profile objects, one per species, ordered by species name. If no SIMS data exists for the entry, an empty array is returned.
data_id
string
Data entry UUID
id
string
SIMS depth profile identifier
processed_data_id
string
Processed data entry UUID
species_name
string
Chemical species for this depth profile (e.g., Si, O)
depths
array
Depth values
depth_units
string
Unit for the depths values (e.g., nm)
concentrations
array
Concentration values corresponding to each depth
concentration_units
string
Unit for the concentrations values (e.g., atoms/cm^3)
species_metadata
object
Additional metadata for this species profile
last_updated
string
ISO 8601 timestamp of last update
from atomscale import Client

client = Client(api_key="YOUR_API_KEY")
results = client.get(data_ids="d290f1ee-6c54-4b01-90e6-d701748f0851")
sims = results[0]  # SIMSResult
print(sims.depth_profiles)
[
  {
    "data_id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
    "id": "sims_001",
    "processed_data_id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
    "species_name": "Si",
    "depths": [0, 10, 20, 30, 40],
    "depth_units": "nm",
    "concentrations": [1.2e18, 3.4e18, 5.1e18, 2.0e18, 8.0e17],
    "concentration_units": "atoms/cm^3",
    "species_metadata": {},
    "last_updated": "2024-01-15T10:35:00Z"
  }
]