Skip to main content
KiosAPI lets you call any GPT available on the OpenAI website via the API using a special model naming convention. Instead of accessing GPTs only through the ChatGPT interface, you can integrate them directly into your applications by constructing the correct model name from the GPT’s public URL.

How to Use

To call a GPT, use the prefix gpt-4-gizmo- followed by the GPT’s ID, which you can find in its URL on the OpenAI website. For example, the GPT at:
corresponds to the model name:
Browse thousands of available GPTs at GPTs Hunter to find one that fits your use case.

Request

POST https://kiosapi.com/v1/chat/completions

Headers

Request Body

string
required
GPT model name in the format gpt-4-gizmo-{gizmo_id} (e.g. gpt-4-gizmo-g-bo0FiWLY7).
array
required
Array of message objects forming the conversation.
number
Sampling temperature between 0 and 2.
boolean
Set to true to stream the response using server-sent events.
number
Maximum number of tokens to generate in the response.

Examples

Response