Skip to main content
POST
GPT Quick Response (All Models)
BaseURL: The default BaseURL is https://direct.evolink.ai, which has better support for text models and long-lived connections. https://api.evolink.ai is the primary endpoint for multimodal services and serves as a fallback address for text models.

Authorizations

Authorization
string
header
required

##All APIs require Bearer Token authentication##

Get API Key:

Visit API Key Management Page to get your API Key

Add to request header:

Body

application/json
model
enum<string>
required

Model to call:

Available options:
gpt-5.6-sol,
gpt-5.6-terra,
gpt-5.6-luna,
gpt-5.5,
gpt-5.4,
gpt-5.2,
gpt-5.1
Example:

"gpt-5.6-sol"

input
required

Model input: a plain string, or an array of input items.

For the full multimodal and tool-result syntax, see the full parameter reference.

Example:

"Explain quantum entanglement in one sentence."

Response

Response generated successfully

id
string

Unique ID of this response, which can be used as previous_response_id for the next turn

Example:

"resp_0f5c2b2c20c39e8a006a7ef545443081979e478b10927984b5"

object
enum<string>

Response type

Available options:
response
Example:

"response"

status
enum<string>

Response status

Available options:
completed,
incomplete,
failed
Example:

"completed"

model
string

Actual model name used

Example:

"gpt-5.6-sol"

created_at
integer

Creation timestamp

Example:

1786705221

output
object[]

Output items in generation order: the reasoning item (reasoning summary), tool call items, and finally the message item containing output_text content.

usage
object

Token usage statistics. Prompt caching applies automatically, and cached input tokens are billed at the lower cached rate.