Getting Started

Quick
Start Guide

noOrCode is a unified AI proxy — one API key, one base URL, access to every major AI model. Drop it in anywhere you'd use OpenAI or Anthropic. Here's everything you need in under 5 minutes.

Base URL
https://api.noOrcode.com/v1
Drop-in for OpenAI / Anthropic
API Key format
sk-noor-••••••••••••••••••••••xxxx
Generate in your dashboard
Default model
noor/claude-sonnet-4-6
or any model ID from the list
Compatible with
OpenAI SDK · Anthropic SDK
Cursor · Claude Code · OpenCode
Zero config changes to your code. noOrCode is 100% OpenAI-compatible. If you're using the OpenAI Python or JS SDK, you only need to change base_url and api_key. Everything else stays the same.

Get your API key

1
Sign up or log in

Create your account at noOrcode.com. If you already have an account, head to the /dashboard.

2
Top up credits

Go to Billing and add credits via Paymob (EGP) or SDG manual deposit. Starter bundle starts at ≈ 275 EGP.

3
Generate an API key

Go to API Keys → Create new API key. Give it a name (e.g. "Cursor", "Production"). The key is shown once — copy and store it immediately.

4
Make your first request

Use the cURL example below or jump straight to your IDE setup guide.

First request — cURL

bash
curl https://api.noOrcode.com/v1/chat/completions \
  -H "Authorization: Bearer sk-noor-YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "noor/claude-sonnet-4-6",
    "messages": [
      { "role": "user", "content": "Hello from noOrCode!" }
    ]
  }'