Skip to main content
GET
/
sims
/
{data_id}
/
species
/
{species_name}
import requests

response = requests.get(
    "https://api.atomscale.ai/sims/d290f1ee-6c54-4b01-90e6-d701748f0851/species/Si",
    headers={"X-API-KEY": "YOUR_API_KEY"}
)
profile = response.json()
{
  "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 the SIMS depth profile for a single chemical species within a data entry. Returns null if no profile exists for the requested species.
data_id
string
required
The data entry UUID for the SIMS measurement
species_name
string
required
The chemical species to retrieve (e.g., Si)

Response

Returns a single depth profile object with the same shape as an item in the Get SIMS Data response, or null if the species is not present.
import requests

response = requests.get(
    "https://api.atomscale.ai/sims/d290f1ee-6c54-4b01-90e6-d701748f0851/species/Si",
    headers={"X-API-KEY": "YOUR_API_KEY"}
)
profile = response.json()
{
  "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"
}