Abzar AI Documentation
Complete developer documentation for the Abzar AI External API — authentication, text generation, image generation, embeddings, streaming, and code examples.
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.
API Reference
Endpoint details, request parameters, and response formats.
Popular guides
Start with the pages most developers open first.
What the platform offers and how the External API works.
Send your first text, image, or embedding request in minutes.
API keys, headers, and security best practices.
Base URL, methods, CORS, and response conventions.
Use OpenAI SDKs and RAG frameworks with the /v1 API.
Build stateless text, vision, JSON, and function workflows.
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.
# 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"
}'