Developers

Build with NAWA

Integrate AI-powered comment moderation into your own products. RESTful API, TypeScript and Python SDKs, webhooks, and real-time events.

Official SDKs

TypeScriptnpm install @nawa/sdk
import { Nawa } from '@nawa/sdk';

const nawa = new Nawa({ apiKey: 'your-key' });

const reply = await nawa.comments.generateReply({
  commentId: 'abc123',
  tone: 'friendly',
  platform: 'youtube',
});
Pythonpip install nawa-sdk
from nawa import NawaClient

client = NawaClient(api_key="your-key")

reply = client.comments.generate_reply(
    comment_id="abc123",
    tone="friendly",
    platform="youtube",
)

API Endpoints

RESTful JSON API. Authentication via Bearer token. Rate limited to 1,000 requests/minute.

GET/v1/comments
POST/v1/comments/:id/reply
GET/v1/analytics/sentiment
POST/v1/tone/train
GET/v1/platforms
POST/v1/webhooks

Resources

Documentation

Comprehensive guides for getting started, authentication, and best practices.

Read Docs

API Reference

Complete endpoint documentation with request/response examples.

View Reference

Status Page

Real-time system status, uptime metrics, and incident history.

Check Status

Community

Join our Discord for developer support, feature requests, and updates.

Join Discord