ShareAI
Войти
Войдите в свою учетную запись, чтобы продолжить.
Электронная почта
Пароль
terminal
$
curl -X POST https://prx.shareai.space/v1/chat/completions \
-H
"Authorization: Bearer sk-..."
\
-H
"Content-Type: application/json"
\
-d
'{"model":
"gpt-5"
, "messages": [...]}'
# Response:
{
"id"
:
"chatcmpl-8xK3..."
,
"object"
:
"chat.completion"
,
"choices"
:
[{
"message"
:
{
"role"
:
"assistant"
,
"content"
:
"Hello! How can..."
}
}]
}
$
curl -N https://api.example.com/v1/chat/completions \
-d
'{"stream":
true
, "model":
"gemini-3-pro-preview"
...}'
# Streaming response:
data: {"choices": [{"delta": {"content": "The"}}]}
data: {"choices": [{"delta": {"content": " answer"}}]}