Skip to main content
POST
Chat Completions

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
model
enum<string>
required

The model to use.

Available options:
doubao-seed-2.0-pro,
doubao-seed-2.0-code,
doubao-seed-2.0-lite,
doubao-seed-2.0-mini,
doubao-seed-1-8-251228,
doubao-seed-1-6-flash-250828,
doubao-seed-1-6-251015,
doubao-seed-1-6-lite-251015,
doubao-seed-1-6-vision-250815,
glm-4.7
Example:

"doubao-seed-1-6-251015"

messages
object[]
required

Conversation messages. Each message has role and content.

Content array item types:

  • text: {"type": "text", "text": "..."}
  • image_url: {"type": "image_url", "image_url": {"url": "https://..."}}
  • video_url: {"type": "video_url", "video_url": {"url": "https://...", "fps": 2}}
Minimum array length: 1
Example:
max_tokens
integer

Maximum number of tokens to generate.

Required range: x >= 1
Example:

1024

temperature
number
default:1

Sampling temperature.

Required range: 0 <= x <= 2
Example:

1

top_p
number

Nucleus sampling parameter.

Required range: 0 <= x <= 1
stream
boolean
default:false

Whether to stream via SSE.

stop
string[]

Up to 4 stop sequences.

Response

Chat completion created successfully

id
string
Example:

"chatcmpl-abc123"

object
string
Example:

"chat.completion"

created
integer
Example:

1774236644

model
string
Example:

"doubao-seed-1-6-251015"

choices
object[]
usage
object