Skip to main content
GET
/
instruments
/
synthesis
/
import requests

response = requests.get(
    "https://api.atomscale.ai/instruments/synthesis/",
    headers={"X-API-KEY": "YOUR_API_KEY"}
)
instruments = response.json()
[
  {
    "id": 7,
    "source_name": "MBE Chamber A",
    "source_manufacturer": "Veeco",
    "source_model": "GEN10",
    "source_makes_id": 3,
    "synth_source_type": "mbe",
    "synth_source_id": 42,
    "source_metadata": {
      "manufacture_year": 2021,
      "serial_identifier": "GEN10-00421",
      "inputs": 8
    },
    "detail_note_content": null,
    "detail_note_last_updated": null,
    "user_id": "user_abc123",
    "user_name": "Jane Smith",
    "last_updated": "2024-01-15T10:00:00Z"
  }
]
Returns the synthesis instruments registered in your organization. Synthesis instruments represent the growth tools used to produce samples, such as MBE and sputter systems.

Response

Returns an array of synthesis instrument objects.
id
integer
Synthesis instrument ID
source_name
string
Name or label of the instrument
source_manufacturer
string
Manufacturer of the instrument
source_model
string
Model of the instrument
source_makes_id
integer
ID of the source make (manufacturer and model combination)
synth_source_type
string
Synthesis source type. One of mbe, pvd, sputter, cvd, ald, pld.
synth_source_id
integer
Synthesis source identifier
source_metadata
object
Additional metadata about the instrument.
detail_note_content
string
Content of the linked detail note
detail_note_last_updated
string
ISO 8601 timestamp of when the detail note was last updated
user_id
string
ID of the user who owns the instrument
user_name
string
Display name of the instrument owner
last_updated
string
ISO 8601 timestamp of last update
import requests

response = requests.get(
    "https://api.atomscale.ai/instruments/synthesis/",
    headers={"X-API-KEY": "YOUR_API_KEY"}
)
instruments = response.json()
[
  {
    "id": 7,
    "source_name": "MBE Chamber A",
    "source_manufacturer": "Veeco",
    "source_model": "GEN10",
    "source_makes_id": 3,
    "synth_source_type": "mbe",
    "synth_source_id": 42,
    "source_metadata": {
      "manufacture_year": 2021,
      "serial_identifier": "GEN10-00421",
      "inputs": 8
    },
    "detail_note_content": null,
    "detail_note_last_updated": null,
    "user_id": "user_abc123",
    "user_name": "Jane Smith",
    "last_updated": "2024-01-15T10:00:00Z"
  }
]