Skip to main content
Create and manage your API keys in your Dashboard settings Your API key is confidential!. Treat it like a password. Never share it publicly or include it in client-side code (like in web browsers or mobile apps). Always store your API keys securely, preferably loaded from an environment variable or a key management service on your server. API keys should be provided via HTTP Bearer authentication
  Authorization: Bearer PAWA_AI_API_KEY

Example.

curl -X POST "https://api.pawa-ai.com/v1/chat/request" \
     -H "Authorization: Bearer PAWA_AI_API_KEY" \
     -H "Content-Type: application/json" \
You can view your API usage through the Usage Dashboard.
I