OpenAI Compatible API

Powered by Azure OpenAI

Base URL (OpenAI compatible)
https://llm.cdnetwork.ai.in
Use exactly like api.openai.com (the SDK appends /v1). Set api_key to any value.
Open Full Chat UI → Markdown • Vision + Image Generation • Streaming • Tokens • History
Available Models
  • gpt-4o / gpt4o
  • gpt-4o-mini / gpt4o-mini
  • gpt-4.1 / gpt4.1 / gpt-4.1-mini / gpt4.1-mini / gpt-4.1-nano / gpt4.1-nano
  • gpt-5 / gpt5 / gpt-5-mini / gpt5-mini / gpt-5-nano / gpt5-nano
  • o1 / o1-mini
  • o3 / o3-mini
  • o4-mini
  • text-embedding-3-large / text-embedding-3-small

Use any of the listed model names (hyphenated preferred for OpenAI SDK compatibility).

Endpoints
  • POST /v1/completions
  • POST /v1/chat/completions
  • POST /v1/embeddings
  • POST /v1/moderations
  • GET /v1/models

Quick Start

curl -X POST https://llm.cdnetwork.ai.in/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
  "model":"gpt-4o",
  "messages":[
    {
      "role":"user",
      "content":"Hello"
    }
  ]
}'