Quickstart

This guide helps you integrate 诺玛AI in about three minutes and start calling mainstream AI models.

Prerequisites#

  • Create an API key in the 诺玛AI Console.
  • Prepare Python 3.8+, Node.js 18+, or any OpenAI-compatible client.
  • Make sure your backend can reach https://as.apinoma.com.

Choose a protocol#

OpenAI-compatible protocol — The most common integration path for SDKs and clients.

Terminal
curl https://as.apinoma.com/v1/chat/completions \
  -H "Authorization: Bearer <your DATAMIND_API_KEY>" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-5.5",
    "messages": [
      {"role": "user", "content": "What is the meaning of life?"}
    ]
  }'

Anthropic-compatible protocol — Ideal for the Claude SDK or migrating projects that use the Anthropic format.

Gemini-compatible scenarios — If your console has Gemini-compatible models enabled, call them by the display names shown in Models.

Next steps#