Skip to main content

1. Get your token

See Authentication to install the CLI and log in. Once authenticated, export your token:
export ATLAS_TOKEN=$(cat ~/.atlas/token)

2. Create a system

All work in Atlas is scoped to a system.
curl -X POST "https://spacex.atlas.arenaphysica.com/api/v1/systems" \
  -H "Authorization: Bearer $ATLAS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "system_name": "Power Distribution Unit",
    "description": "24V DC power distribution system for the vehicle platform"
  }'
Save the system_id from the response:
export SYSTEM_ID="<system_id from response>"

3. Fetch the system

curl "https://spacex.atlas.arenaphysica.com/api/v1/systems/$SYSTEM_ID" \
  -H "Authorization: Bearer $ATLAS_TOKEN"
From here, see the Guides section to continue: Populating the System Metagraph, Creating a Test Run Report, Generating an Issue, or Adding a Personal Skill & System Memory.