- 发出请求
- 完成对象
- 模型接口
- OpenAI
- xAI
- Anthropic
- Google
- Midjourney
- 文生图接口
- Realtime (实时语音、对话)
- GPTs 相关
- 文生音乐
- 文生视频
- Rerank API
- Python配置方式
- 帮助中心
文本生成(Gemini格式)
主站接口①
https://api2.aigcbest.top
主站接口①
https://api2.aigcbest.top
POST
https://api2.aigcbest.top
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Query 参数
key
string
必需
示例值:
{{YOUR_API_KEY}}
Header 参数
Content-Type
string
必需
示例值:
application/json
Body 参数application/json
contents
array [object {1}]
必需
parts
array [object {1}]
可选
示例
{
"contents": [
{
"parts": [
{
"text": "写一个关于魔法背包的故事"
}
]
}
]
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location -g --request POST 'https://api2.aigcbest.top/v1beta/models/gemini-2.0-flash:generateContent?key=' \
--header 'Content-Type: application/json' \
--data-raw '{
"contents": [
{
"parts": [
{
"text": "写一个关于魔法背包的故事"
}
]
}
]
}'
返回响应
🟢200OK
application/json
Body
id
string
必需
object
string
必需
created
integer
必需
choices
array [object {3}]
必需
index
integer
可选
message
object
可选
finish_reason
string
可选
usage
object
必需
prompt_tokens
integer
必需
completion_tokens
integer
必需
total_tokens
integer
必需
示例
{
"id": "chatcmpl-123",
"object": "chat.completion",
"created": 1677652288,
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "\n\nHello there, how may I assist you today?"
},
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 9,
"completion_tokens": 12,
"total_tokens": 21
}
}
修改于 2025-06-11 18:44:37