GPT
GPT Текст

xprogamer/GPT-5.6-sol-request

ID модели: xprogamer/GPT-5.6-sol-request
Семейство
GPT
Контекст
1,000,000
За запрос
0.967 ₽
Запросы
0
Успешно
Токены
0
Аптайм
24 часа назадСейчас
7 дней назадСейчас

Тарифы

За запрос
0.967 ₽
История цен

Применявшиеся уровни цен. Строка с пометкой «текущий» — действующая цена.

Текущая С 19/08/2026 - 08:28:59
За запрос0.967 ₽
Поддерживаемые конечные точки
https://api.xah.io/v1/chat/completions
https://api.xah.io/v1/messages
https://api.xah.io/v1/responses
https://api.xah.io/v1beta/models/xprogamer/GPT-5.6-sol-request:generateContent
https://api.xah.io/api/chat
https://api.xah.io/api/generate
Метод POST · application/json
Аутентификация Bearer-токен (API-ключ)
Типы API Текст

Технические заметки

Anh em thử trải nghiệm Chat GPT 5.6 sol chạy bằng request nhé!
Nếu làm tài dày context lớn, input output to thì bao lời nhé!

Поделиться

curl 'https://api.xah.io/v1/chat/completions' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "model": "xprogamer/GPT-5.6-sol-request",
    "messages": [
        {
            "role": "user",
            "content": "Привет, кто ты?"
        }
    ]
}'
// Node.js / Browser
const res = await fetch('https://api.xah.io/v1/chat/completions', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    "model": "xprogamer/GPT-5.6-sol-request",
    "messages": [
        {
            "role": "user",
            "content": "Привет, кто ты?"
        }
    ]
})
});
const data = await res.json();
console.log(data);
import requests

url = 'https://api.xah.io/v1/chat/completions'
headers = {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json',
}
payload = {
    "model": "xprogamer/GPT-5.6-sol-request",
    "messages": [
        {
            "role": "user",
            "content": "Привет, кто ты?"
        }
    ]
}

res = requests.post(url, headers=headers, json=payload, timeout=120)
print(res.status_code, res.json())
{
    "model": "xprogamer/GPT-5.6-sol-request",
    "messages": [
        {
            "role": "user",
            "content": "Привет, кто ты?"
        }
    ]
}

Быстрый тест

Отправьте промпт с вашим API-ключом — спишутся реальные кредиты, результат придёт в стриминг-режиме.

Отзывы и комментарии
0.0 / 0 отзывов
Загрузка отзывов...
Связаться с поддержкой
Мы всегда готовы вам помочь