Skip to main content
POST
/
instruments
/
synthesis
/
curl -X POST "https://api.atomscale.ai/instruments/synthesis/" \
  -H "X-API-KEY: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "MBE Chamber A",
    "label": "MBE-A",
    "type": "mbe"
  }'
{
  "synth_source_id": 42,
  "source_name": "MBE Chamber A",
  "source_makes_id": 3,
  "synth_source_type": "mbe",
  "source_metadata": {
    "manufacture_year": null,
    "serial_identifier": null,
    "inputs": null
  },
  "user_id": "user_abc123",
  "last_updated": "2024-01-15T11:00:00Z"
}
Creates a new synthesis instrument record. Synthesis instruments represent the growth tools used to produce samples, such as MBE and sputter systems.
name
string
required
Name of the instrument
label
string
required
Label for the instrument
type
string
required
Synthesis source type. One of mbe, pvd, sputter, cvd, ald, pld.
serial_id
string
Serial identifier of the instrument

Response

synth_source_id
integer
Synthesis source identifier
source_name
string
Name 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.
source_metadata
object
Additional metadata about the instrument.
user_id
string
ID of the user who owns the instrument
last_updated
string
ISO 8601 timestamp of last update
curl -X POST "https://api.atomscale.ai/instruments/synthesis/" \
  -H "X-API-KEY: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "MBE Chamber A",
    "label": "MBE-A",
    "type": "mbe"
  }'
{
  "synth_source_id": 42,
  "source_name": "MBE Chamber A",
  "source_makes_id": 3,
  "synth_source_type": "mbe",
  "source_metadata": {
    "manufacture_year": null,
    "serial_identifier": null,
    "inputs": null
  },
  "user_id": "user_abc123",
  "last_updated": "2024-01-15T11:00:00Z"
}