> ## Documentation Index
> Fetch the complete documentation index at: https://developers.trynawa.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Dashboard

> Language intelligence platform for Arabic and English. Classify, translate, detect dialects, and generate replies - powered by HUMAIN's ALLaM and Claude.

<img className="block dark:hidden" src="https://mintlify.s3.us-west-1.amazonaws.com/nawalabs/images/hero-light.png" alt="NAWA API" style={{ display: 'none' }} />

# The language intelligence API

NAWA is the language intelligence platform for Arabic and English. Classify comments, translate between dialects, detect languages, and generate context-aware replies - powered by [HUMAIN's ALLaM](https://humain.com) for Arabic and Claude for English.

<CardGroup>
  <Card title="Classify Comments" icon="tags" href="/api-reference/classify">
    Detect intent, sentiment, dialect, and toxicity in a single API call. Arabic (4 dialects) and English supported.
  </Card>

  <Card title="Translate" icon="arrows-rotate" href="/api-reference/translate">
    Dialect-aware Arabic translation. Convert between English and Gulf, Egyptian, Levantine, or MSA Arabic with tone control.
  </Card>

  <Card title="Detect Language" icon="magnifying-glass" href="/api-reference/detect">
    Identify Arabic dialect, script direction, and language in under 100ms. No AI model call required.
  </Card>

  <Card title="Moderate Content" icon="shield-check" href="/api-reference/moderate">
    Dialect-aware Arabic content moderation. Catches profanity and slang that Western APIs miss.
  </Card>

  <Card title="Generate Replies" icon="reply" href="/api-reference/comments-reply">
    Generate context-aware replies to Arabic and English comments automatically. Dialect-matched for Arabic.
  </Card>

  <Card title="Intelligence Reports" icon="file-chart-column" href="/api-reference/report">
    Generate audience intelligence reports with clusters, narratives, spam detection, and strategic recommendations. Basic $0.50, Pro $1.50.
  </Card>

  <Card title="Manage at Scale" icon="chart-mixed" href="/api-reference/analytics">
    Track comment trends, sentiment shifts, and engagement analytics across channels.
  </Card>
</CardGroup>

## Why NAWA?

| Metric                  | Value                                                                                                           |
| ----------------------- | --------------------------------------------------------------------------------------------------------------- |
| Languages               | Arabic (4 dialects) + English                                                                                   |
| Arabic dialect accuracy | 100% (Gulf, Egyptian, Levantine, MSA)                                                                           |
| Live endpoints          | 12 (classify, translate, detect, moderate, rubric, reply, report, feedback, comments, analytics, health, usage) |
| p95 latency             | \<2 seconds                                                                                                     |
| Cost per classify       | \$0.006                                                                                                         |
| Cost per translate      | \$0.005                                                                                                         |
| Cost per detect         | \$0.002                                                                                                         |
| Cost per moderate       | \$0.004                                                                                                         |
| Cost per report (Basic) | \$0.50                                                                                                          |
| Cost per report (Pro)   | \$1.50                                                                                                          |
| Free tier               | 100 requests, no credit card                                                                                    |
| Uptime SLA              | 99.9%                                                                                                           |

## Quick taste

Make your first classification in seconds:

<CodeGroup>
  ```bash cURL theme={null}
  curl -X POST https://api.trynawa.com/v1/classify \
    -H "Authorization: Bearer nawa_test_sk_xxx" \
    -H "Content-Type: application/json" \
    -d '{"text": "متى الجزء الثاني؟", "platform": "youtube"}'
  ```

  ```typescript TypeScript theme={null}
  import { Nawa } from '@nawalabs/sdk'

  const nawa = new Nawa({ apiKey: 'nawa_test_sk_xxx' })
  const { data } = await nawa.classify({
    text: 'متى الجزء الثاني؟',
    platform: 'youtube'
  })
  console.log(data.intent) // "question"
  ```

  ```python Python theme={null}
  from nawa import Nawa

  nawa = Nawa(api_key="nawa_test_sk_xxx")
  result = nawa.classify(
      text="متى الجزء الثاني؟",
      platform="youtube"
  )
  print(result.data.intent)  # "question"
  ```
</CodeGroup>

<Card title="Get started in 3 minutes" icon="rocket" href="/quickstart">
  Get your API key and make your first call -- no credit card required.
</Card>
