Skip to main content
This guide provides instructions for configuring your applications to use Munsit’s API endpoints.

Regional Endpoints

Munsit provides regional API endpoints to ensure optimal performance and data residency compliance. Use the endpoint closest to your users or the one that matches your data residency requirements.
RegionBase URLDashboard
Global (Default)https://api.munsit.com/api/v1app.munsit.com
UAEhttps://ae.api.faseeh.ai/api/v1ae.app.munsit.com
Each regional endpoint has its own dashboard. To use the UAE endpoint, you must sign up and generate your API key from the UAE dashboard at ae.app.munsit.com. API keys are not interchangeable between regions.
If you have data residency requirements for the UAE, use the UAE regional endpoint (ae.api.faseeh.ai). All API functionality is identical across regions.

How to Use

  1. Sign up on the correct dashboard: Use app.munsit.com for the global endpoint or ae.app.munsit.com for the UAE endpoint
  2. Choose your base URL: Select the regional endpoint that matches your dashboard
  3. Include your API key: Add your API key in the x-api-key header for authentication
  4. Set Content-Type: Include Content-Type: application/json header for JSON requests

Direct API Calls

cURL Example

Global endpoint:
# Base URL: https://api.munsit.com/api/v1

curl -X POST "https://api.munsit.com/api/v1/text-to-speech/faseeh-v1-preview" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "voice_id": "ar-najdi-male-2",
    "text": "مرحبا بك في فصيح",
    "stability": 0.5,
    "streaming": true,
    "speed": 1
  }'
UAE endpoint:
# Base URL: https://ae.api.faseeh.ai/api/v1

curl -X POST "https://ae.api.faseeh.ai/api/v1/text-to-speech/faseeh-v1-preview" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "voice_id": "ar-najdi-male-2",
    "text": "مرحبا بك في فصيح",
    "stability": 0.5,
    "streaming": true,
    "speed": 1
  }'