import requests
response = requests.post(
"https://api.atomscale.ai/projects/",
headers={
"X-API-KEY": "YOUR_API_KEY",
"Content-Type": "application/json"
},
json={
"name": "InGaN LED Development",
"notes": "Blue LED optimization project for Q1 2024"
}
)
project_id = response.json()