OpenAI GPT-5.5 — flagship model for advanced reasoning, coding, and complex multi-step instructions.

Modell:
Sampling temperature.
Maximum output tokens.
USD-Schätzung $0.025-$0.05: Das größte Aufladepaket rechnet mit $1 = 2.000 Credits; das Starterpaket mit $1 = 1.000 Credits.

Verlauf
Lokal in diesem Browser gespeichert
0 läuft · 0 abgeschlossen
Input
≈ $0.001-$0.002
Output
≈ $0.006-$0.012
Cache Read
≈ $0.0001-$0.0002
Kontext
Max. Output
API-Hinweise
Rufe dieses Modell über die Standard REST API auf. Nach Authentifizierung mit API Key kannst du unten einen Endpunkt auswählen und Parameter sowie Beispiele ansehen.
Authentifizierung
Jede Anfrage muss im Authorization Header ein Bearer Token enthalten. Erstelle deinen API Key in der Konsole.
Authorization: Bearer YOUR_API_KEYhttps://apiany.ai/v1/chat/completionsRequest-Parameter
| Parameter | Typ | Erforderlich | Hinweise |
|---|---|---|---|
model | String | Erforderlich | Die Modellkennung für den Aufruf; verwende die ID dieses Modells. |
messages | Array | Erforderlich | Nachrichtenverlauf im OpenAI-Chatformat (role + content). |
stream | Boolean | Optional | Wenn true, wird die Antwort als SSE-Stream zurückgegeben. |
Request-Beispiel
curl "https://apiany.ai/v1/chat/completions" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5.5",
"messages": [
{
"role": "user",
"content": "Beschreibe in drei Sätzen die Multi-Channel-Modellaggregation von APIAny.AI und gib eine Empfehlung für den Produktionseinsatz."
}
],
"temperature": 0.7,
"max_tokens": 4096
}'Response-Beispiel
{
"id": "chatcmpl-abc123",
"object": "chat.completion",
"model": "gpt-5.5",
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "Hello! How can I help?"
},
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 12,
"completion_tokens": 18,
"total_tokens": 30
}
}