1. Sign in to OpenAtman Console
Sign in and select the correct workspace and team for your integration.
This guide walks you through OpenAtman Console access, API key creation, and your first successful request.
Sign in and select the correct workspace and team for your integration.
Open the API Keys section, generate a new key, and store it securely.
OPENATMAN_API_KEY=oa_live_xxxxxxxxxxxxxxxxxConfigure 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"}]
}'Check request status, latency, and error traces in the Console logs. If you see a 401 response, verify key scope and environment configuration.