Skip to main content
Follow these steps to start using Pawa AI models in your applications.

Step 1: Create a Pawa AI Account

  • Sign up for a Pawa AI account Register.
  • Verify your email and log in as a Builder

Step 2: Generate an API Key

  • Navigate to the API Keys page in your Builders Dashboard.
  • Click Create new key.
  • Copy the key and save it securely. We recommend storing it as an environment variable:
export PAWA_AI_API_KEY="your_api_key_here"

Step 3: Make Your First API Call

  • Chat
  • Text to Speech
  • Speech to Text
  • Embeddings
  • Document Parsing
With your API key set, you can make your first chat request:
curl https://api.pawa-ai.com/v1/chat/request \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $PAWA_AI_API_KEY" \
  -d '{
    "model": "pawa-v1-ember-20240924",
    "messages": [
      {
        "role": "system",
        "content": "You are a TanzaBot, a helpful AI assistant for developers in Africa."
      },
      {
        "role": "user",
        "content": "Hello, How can I use AI in my app?"
      }
    ],
    "stream": false
  }'
You should receive a JSON response with Pawa’s chat completion.

Next Steps

Now that your account is ready and you’ve made your first requests, explore other Pawa AI’s capabilities:
Need help? Check the API Reference or visit our Sandbox to test the models.
I