Skip to main content
POST
/
v1
/
responses
cURL
curl --request POST \
  --url https://proxy.innk.cc/v1/responses \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "model": "gpt-4.1",
  "input": "Hello, how are you?",
  "stream": false
}
'
{}
Currently only OpenAI models are supported, please refer to the complete documentation.OpenAI API Reference

Authorizations

Authorization
string
header
required

The authentication header format is Bearer <API_KEY>, where <API_KEY> is your API token.

Body

application/json
model
string
required

Model name

Example:

"gpt-4.1"

input
string
required

Message content

Example:

"Hello, how are you?"

stream
boolean
default:false

Whether to stream the return

Response

200 - application/json

Model response

The response is of type object.