API Authentication

Authenticate your API requests.

Last updated: January 15, 2025

API Keys

Generate API keys from Dashboard → Settings → API Keys.

terminalbash
# Include in request header
Authorization: Bearer YOUR_API_KEY

# Example request
curl -X POST https://api.clawnomad.com/v1/commands \
  -H "Authorization: Bearer sk_live_..." \
  -H "Content-Type: application/json" \
  -d '{"command": "Check ETH balance"}'

Key Security

Never expose API keys in client-side code. Use environment variables and server-side requests.