Login
Developer docs · v2.0.0

Abzar AI Documentation

Complete developer documentation for the Abzar AI External API — authentication, text generation, image generation, embeddings, streaming, and code examples.

Get startedAPI reference

Base URL https://abzar-ai.com/api/external/ai·Updated 2026-08-27

Browse by section

Everything you need to authenticate and call the External AI API.

Getting Started

Create an account, get an API key, and make your first request.

Guides

Errors, rate limits, billing, and ready-to-use code samples.

Popular guides

Start with the pages most developers open first.

Ready to integrate?

Create an API key in your dashboard, then follow the quickstart or use the examples below for curl, WordPress, and Node.js.

Get an API key
# Text generation
curl -X POST https://abzar-ai.com/api/external/ai \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "text",
    "prompt": "Write a blog intro",
    "model": "abzar-ai"
  }'