Quickstart
This guide helps you integrate 诺玛AI Gateway in 3 minutes and start calling a range of leading large language models.
Prerequisites#
- Sign up for the 诺玛AI Console to get your API Key.
- Set up your development environment (Python 3.8+ / Node.js 18+).
诺玛AI is compatible with the OpenAI, Anthropic, and Gemini protocols, so you can integrate using any official SDK.
Choose an integration method#
OpenAI SDK (recommended)
OpenAI-compatible protocol — the most common integration path.
cURL
Code
# 诺玛AI endpoint; get your API Key at https://as.apinoma.com
curl https://as.apinoma.com/v1/chat/completions \
-H "Authorization: Bearer <your APINOMA_API_KEY>" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5.5-mini",
"messages": [
{"role": "user", "content": "What is the meaning of life?"}
]
}'Python
TypeScript
Anthropic SDK
Anthropic-native protocol — use the Anthropic SDK directly with full support for all Claude features.
cURL
Python
TypeScript
Gemini SDK
Gemini-native protocol — use the Google GenAI SDK with support for the entire Gemini Models family.
cURL
Python
TypeScript
Next steps#
Last updated on June 23, 2026