Login

Getting Started with OpenAtman API

This guide walks you through OpenAtman Console access, API key creation, and your first successful request.


1. Sign in to OpenAtman Console

Sign in and select the correct workspace and team for your integration.

2. Create an API Key

Open the API Keys section, generate a new key, and store it securely.

OPENATMAN_API_KEY=oa_live_xxxxxxxxxxxxxxxxx

3. Send Your First API Request

Configure your environment variable and execute your first request.

curl -X POST "YOUR_BASE_URL/v1/chat/completions" \
  -H "Authorization: Bearer $OPENATMAN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "openatman-chat",
    "messages": [{"role": "user", "content": "Hello OpenAtman"}]
  }'

4. Validate in Usage Logs

Check request status, latency, and error traces in the Console logs. If you see a 401 response, verify key scope and environment configuration.