Skip to main content
POST
/
projects
curl -X POST "https://api.atomscale.ai/projects/" \
  -H "X-API-KEY: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "InGaN LED Development",
    "notes": "Blue LED optimization project for Q1 2024"
  }'
"d290f1ee-6c54-4b01-90e6-d701748f0851"
Creates a new project for organizing samples and data. Projects serve as the top-level container for related experiments.
name
string
required
Project name (must be non-empty)
notes
string
Notes or description for the project
type
string
Project type. Set to growth_monitoring for growth monitoring projects, or omit for a standard project.

Response

Returns the UUID of the newly created project.
curl -X POST "https://api.atomscale.ai/projects/" \
  -H "X-API-KEY: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "InGaN LED Development",
    "notes": "Blue LED optimization project for Q1 2024"
  }'
"d290f1ee-6c54-4b01-90e6-d701748f0851"