OpenAI

Gpt 5.3 Chat API

US OpenAI
Testar no Probador → Obter API key

Gpt 5.3 Chat é um modelo de uso geral da OpenAI. Disponível através da API unificada MeshTok.

RaciocínioFerramentasJSON

Preços (oficial, por 1M tokens)

Entrada
$1.75/M
Saída
$14.00/M

Especificações

Janela de contexto400K tokens Modalidades de entradaTexto StreamingSim APICompatível OpenAI

Como usar Gpt 5.3 Chat

Substituição direta do OpenAI. Mude apenas base_url e modelo.

# Python - pip install openai
from openai import OpenAI

client = OpenAI(
    base_url="https://meshtok.com/v1",
    api_key="sk-your-MeshTok-key",
)

resp = client.chat.completions.create(
    model="openai/gpt-5.3-chat",
    messages=[{"role":"user","content":"Hello!"}],
)
print(resp.choices[0].message.content)
# cURL
curl https://meshtok.com/v1/chat/completions \
  -H "Authorization: Bearer sk-your-MeshTok-key" \
  -H "Content-Type: application/json" \
  -d '{"model":"openai/gpt-5.3-chat","messages":[{"role":"user","content":"Hello!"}]}'

Modelos relacionados

Outros modelos que você pode considerar.