NVIDIA NIM · Schema
NVIDIA NIM Chat Completion
Request and response schemas for the NVIDIA NIM OpenAI-compatible /v1/chat/completions endpoint.
Artificial IntelligenceInferenceMicroservicesLLMFoundation ModelsGPUKubernetesNVIDIAOpenAI-Compatible
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/nvidia-nim/refs/heads/main/json-schema/nvidia-nim-chat-completion-schema.json",
"title": "NVIDIA NIM Chat Completion",
"description": "Request and response schemas for the NVIDIA NIM OpenAI-compatible /v1/chat/completions endpoint.",
"type": "object",
"$defs": {
"ChatMessage": {
"type": "object",
"required": ["role"],
"properties": {
"role": {
"type": "string",
"enum": ["system", "user", "assistant", "tool"]
},
"content": {
"oneOf": [
{ "type": "string" },
{
"type": "array",
"items": { "$ref": "#/$defs/ContentPart" }
}
]
},
"name": { "type": "string" },
"tool_call_id": { "type": "string" },
"tool_calls": {
"type": "array",
"items": { "$ref": "#/$defs/ToolCall" }
}
}
},
"ContentPart": {
"type": "object",
"required": ["type"],
"properties": {
"type": { "type": "string", "enum": ["text", "image_url"] },
"text": { "type": "string" },
"image_url": {
"type": "object",
"properties": {
"url": { "type": "string" }
}
}
}
},
"ToolCall": {
"type": "object",
"properties": {
"id": { "type": "string" },
"type": { "type": "string", "enum": ["function"] },
"function": {
"type": "object",
"properties": {
"name": { "type": "string" },
"arguments": { "type": "string" }
}
}
}
},
"ChatCompletionRequest": {
"type": "object",
"required": ["model", "messages"],
"properties": {
"model": { "type": "string" },
"messages": {
"type": "array",
"items": { "$ref": "#/$defs/ChatMessage" }
},
"temperature": { "type": "number", "minimum": 0, "maximum": 2 },
"top_p": { "type": "number", "minimum": 0, "maximum": 1 },
"max_tokens": { "type": "integer", "minimum": 1 },
"stream": { "type": "boolean" },
"stop": {
"oneOf": [
{ "type": "string" },
{ "type": "array", "items": { "type": "string" } }
]
},
"n": { "type": "integer", "minimum": 1 },
"seed": { "type": "integer" },
"tools": {
"type": "array",
"items": { "type": "object" }
},
"tool_choice": {
"oneOf": [
{ "type": "string", "enum": ["auto", "none", "required"] },
{ "type": "object" }
]
},
"response_format": {
"type": "object",
"properties": {
"type": { "type": "string", "enum": ["text", "json_object", "json_schema"] }
}
},
"frequency_penalty": { "type": "number" },
"presence_penalty": { "type": "number" }
}
},
"ChatCompletionResponse": {
"type": "object",
"properties": {
"id": { "type": "string" },
"object": { "type": "string", "const": "chat.completion" },
"created": { "type": "integer" },
"model": { "type": "string" },
"choices": {
"type": "array",
"items": {
"type": "object",
"properties": {
"index": { "type": "integer" },
"message": { "$ref": "#/$defs/ChatMessage" },
"finish_reason": {
"type": "string",
"enum": ["stop", "length", "tool_calls", "content_filter"]
}
}
}
},
"usage": {
"type": "object",
"properties": {
"prompt_tokens": { "type": "integer" },
"completion_tokens": { "type": "integer" },
"total_tokens": { "type": "integer" }
}
}
}
}
},
"oneOf": [
{ "$ref": "#/$defs/ChatCompletionRequest" },
{ "$ref": "#/$defs/ChatCompletionResponse" }
]
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/nvidia-nim-chat-completion"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.