AK AI CORE API Documentation

OpenAI-compatible API for 140+ AI models. One endpoint, one wallet, instant access to GPT-4o, Claude 3.5, Gemini, and more. Pay-as-you-go with bKash/Nagad.

AK AI CORE API

Welcome to the AK AI CORE API documentation. Our API is OpenAI-compatible, letting you access 140+ AI models through a single endpoint with pay-as-you-go billing via bKash/Nagad.

AK AI CORE provides a unified gateway to the world's best AI models. Instead of managing multiple API keys from OpenAI, Anthropic, Google, and others, you get one endpoint, one wallet, and instant access to GPT-4o, Claude 3.5, Gemini, Llama, and more.

OpenAI-compatible API — drop-in replacement for existing integrations.
140+ models from OpenAI, Anthropic, Google, Meta, Alibaba, and more.
Pay-as-you-go billing with local Bangladeshi payment methods (bKash, Nagad, UddoktaPay).
No monthly subscriptions — top up credits and use any model instantly.
Single API key for all models. No need to manage multiple provider accounts.

Base URL

bash
https://akaicore.space/v1

All API requests should be made to this base URL. The API follows standard REST conventions and returns JSON responses.

Quick Example

bash
1curl -X POST https://akaicore.space/v1/chat/completions \
2  -H "Authorization: Bearer YOUR_API_KEY" \
3  -H "Content-Type: application/json" \
4  -d '{
5    "model": "openai/gpt-4o-mini",
6    "messages": [
7      {"role": "user", "content": "Hello from AK AI CORE"}
8    ]
9  }'