Skip to main content

sypho login

Authenticate with the sypho platform.

Usage

sypho login

Opens your browser to app.sypho.ai where you can:

  1. Sign up or log in
  2. Generate an API token
  3. Copy the token back to the CLI

Manual Token Entry

If you already have a token:

sypho login --token sypho_abc123...

Environment Variable

export SYPHO_TOKEN=sypho_abc123...
sypho login

Configuration

Stores credentials in ~/.sypho/config.json:

{
"auth": {
"endpoint": "https://api.sypho.ai",
"token": "sypho_abc123..."
}
}

Getting a Platform Token

Via Dashboard

  1. Visit app.sypho.ai
  2. Sign up or log in
  3. Go to Settings → API Tokens
  4. Click "Generate Token"
  5. Copy and save the token

Token Format

Tokens start with sypho_ and are used for:

  • CLI authentication
  • API requests
  • SDK deployments

Next Steps