{
"model": "minimax-m2.5",
"service_tier": "standard",
"messages": [
{
"role": "tool",
"name": "string",
"content": "string",
"tool_calls": [
{
"id": "string",
"type": "function",
"function": {
"name": "string",
"arguments": "string"
}
}
],
"tool_call_id": "string"
}
],
"thinking": {
"type": "adaptive"
},
"reasoning_split": true,
"stream": false,
"stream_options": {
"include_usage": false
},
"max_completion_tokens": 1,
"temperature": 1,
"top_p": 0.95,
"tools": [
{
"type": "function",
"function": {
"name": "string",
"description": "string",
"parameters": {}
}
}
]
}curl --location '/v1/chat/completions' \
--header 'Authorization: Bearer {{sk-xxx}}' \
--header 'Content-Type: application/json' \
--data '{
"model": "minimax-m2.5",
"service_tier": "standard",
"messages": [
{
"role": "tool",
"name": "string",
"content": "string",
"tool_calls": [
{
"id": "string",
"type": "function",
"function": {
"name": "string",
"arguments": "string"
}
}
],
"tool_call_id": "string"
}
],
"thinking": {
"type": "adaptive"
},
"reasoning_split": true,
"stream": false,
"stream_options": {
"include_usage": false
},
"max_completion_tokens": 1,
"temperature": 1,
"top_p": 0.95,
"tools": [
{
"type": "function",
"function": {
"name": "string",
"description": "string",
"parameters": {}
}
}
]
}'{
"id": "string",
"choices": [
{
"finish_reason": "string",
"index": 0,
"message": {
"content": "string",
"role": "string",
"name": "string",
"audio_content": "string"
}
}
],
"created": 0,
"model": "string",
"object": "string",
"usage": {
"total_tokens": 0,
"total_characters": 0,
"prompt_tokens": 0,
"completion_tokens": 0,
"prompt_tokens_details": {
"cached_tokens": 0
}
},
"input_sensitive": true,
"output_sensitive": true,
"input_sensitive_type": 0,
"output_sensitive_type": 0,
"output_sensitive_int": 0,
"base_resp": {
"status_code": 0,
"status_msg": "string"
}
}