Skip to content

API Overview

The noris “LLM as a Service” API is fully OpenAI-compatible. The base URL for all endpoints is:

https://ai.noris.de/v1
EndpointMethodDescription
/v1/modelsGETList available models
/v1/chat/completionsPOSTChat completions (incl. streaming, tool calling, vision)
/v1/completionsPOSTText completions (legacy)
/v1/responsesPOSTOpenAI Responses API
/v1/embeddingsPOSTText embeddings
/v1/rerankPOSTReranking (query/documents)
/v1/images/generationsPOSTImage generation (if available)

A simple GET request returns all currently available models:

Terminal window
curl https://ai.noris.de/v1/models \
-H "Authorization: Bearer YOUR_API_KEY"

A successful response contains the list of all currently available models:

{
"object": "list",
"data": [
{ "id": "vllm/release/gpt-oss-120b", "object": "model", "owned_by": "openai" },
{ "id": "vllm/release/gemma-4-31b-it", "object": "model", "owned_by": "google" },
{ "id": "vllm/release/harrier-oss-v1-0.6b", "object": "model", "owned_by": "microsoft" },
{ "id": "vllm/release/bge-reranker-v2-m3", "object": "model", "owned_by": "baai" }
]
}

The full and current model overview including tiers and specifications is available under Models.

All endpoints are subject to rate limits (RPM and TPM) to ensure fair resource allocation. Limits scale with the customer’s commitment level. See Rate Limits for details.