openai-proxy
ClaudeOpenAIGoogle Bard
ClaudeOpenAIGoogle Bard
GitHub
  1. Claude
  • README
  • 创建会话
    POST
  • 获取全部会话
    GET
  • 删除指定会话
    DELETE
  • 删除全部会话
    DELETE
  • 查看会话中历史消息
    GET
  • 生成 AI 回复
    POST
  • 重新生成 AI 回复
    POST
  • 生成 AI 回复(类 OpenAI)
    POST
  • 生成 AI 回复-指定 conversion(类 OpenAI)
    POST
  1. Claude

创建会话

AIHEY
AIHEY
POST
https://openai.aihey.cc/claude
/organizations/{organization_uuid}/chat_conversations
创建新的对话

请求参数

Path 参数
organization_uuid
string 
必需
示例值:
dca2a902-a463-41f0-88cb-b047deb40178
Header 参数
Content-Type
string 
必需
示例值:
application/json
Accept
string 
必需
示例值:
*/*
Cookie 参数
sessionKey
string 
必需
你的 sessionKey,请从 claude.ai 获取
Body 参数application/json
uuid
string 
可选
name
string 
必需
示例
{
  "name": "example"
}

示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://openai.aihey.cc/claude/organizations/dca2a902-a463-41f0-88cb-b047deb40178/chat_conversations' \
--header 'Accept:  */*' \
--header 'Cookie: sessionKey=' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "example"
}'

返回响应

🟢200成功
application/json
Body
uuid
string 
conversation_uuid
必需
name
string 
必需
summary
string 
必需
created_at
string 
必需
updated_at
string 
必需
示例
{
  "uuid": "9c4326a2-551d-45ac-899c-2fef84e6c417",
  "name": "example",
  "summary": "",
  "created_at": "2023-07-13T00:00:35.030815+00:00",
  "updated_at": "2023-07-13T00:00:35.030815+00:00"
}
修改于 2023-07-17 08:52:49
上一页
README
下一页
获取全部会话
Built with