NiruX AI API — Now in Beta

Build with NiruX AI
India's own AI API

A powerful, OpenAI-compatible API powered by NiruX AI. Build apps, automate workflows, and integrate AI into anything — affordable Indian pricing.

OpenAI
Compatible format
₹0
To get started
Fast
Local inference
🇮🇳
Made in India

OpenAI Compatible

Drop-in replacement for OpenAI API. Change one URL and your app works with NiruX AI instantly.

💰

Affordable Indian Pricing

Pay in ₹ via UPI, cards, or netbanking. Much cheaper than OpenAI or Claude for Indian developers.

🤖

NiruX AI Model

Custom AI model built on LLaMA, fine-tuned for Indian context, developers, and business use cases.

🔑

Simple API Keys

Get your key in seconds. No complex setup, no credit card for free tier, no surprise charges.

📊

Usage Dashboard

Track your requests, tokens used, and costs in real time from your developer dashboard.

🛡️

Secure & Private

Your data never leaves your API calls. No training on your data, no logs sold to third parties.

Quick start
Works exactly like OpenAI — just change the URL
JavaScript
const response = await fetch('https://delusion-fraying-prowling.ngrok-free.dev/v1/chat/completions', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': `Bearer YOUR_NIRUX_API_KEY` }, body: JSON.stringify({ model: 'nirux-1', messages: [{ role: 'user', content: 'Hello NiruX AI!' }] }) }); const data = await response.json(); console.log(data.choices[0].message.content);