Documentation
API Reference

Request Schema

Technical structure of chat completion requests.

Orbyt maintains strict adherence to the standard OpenAI chat completions schema. This allows for seamless integration with existing SDKs while providing extended gateway functionality.

Request Parameters

The Following parameters are supported within the standard POST body. Each parameter maps directly to the underlying provider execution.

Prop

Type

Message Object

The message object follows the standard role-based structure. Ensure the content field is populated according to the role type.

{
  "role": "user",
  "content": "Hello, how are you?"
}

On this page