OpenAI Modelli IA
GPT language models and GPT Image generation — OpenAI's reasoning and creative AI suite.
OpenAI provides the GPT family of language models for chat, code, and reasoning, alongside GPT Image and GPT Image 2 for text-to-image generation with near-perfect multilingual text rendering.
- Una sola API key condivisa tra i provider
- I model skill portano documentazione e schema nel tuo workspace
- Fatturazione per chiamata, senza impegno
- Le generazioni non riuscite non vengono addebitate
Cosa spicca
Tutti i modelli di OpenAI
Embedding testuali OpenAI per ricerca semantica, recupero, clustering e ranking.
OpenAI's flagship LLM for chat, code generation, and multi-step reasoning tasks.
Text-to-image and image editing powered by OpenAI's image generation models.
Latest OpenAI image generation with near-perfect multilingual text rendering inside images.
Native image generation inside GPT-4o — generate and edit images within the conversation.
Usa l'API OpenAI Moderation tramite RunAPI con model skill, autenticazione unificata e prezzi pay-as-you-go.
Accesso a un'API compatibile con OpenAI per la trascrizione audio e la conversione da voce a testo con Whisper-1 e GPT Transcribe.
Accesso API a OpenAI TTS per sintesi vocale a bassa latenza e alta qualità, con output MP3 gestito da RunAPI.
Installa un model skill OpenAI.
Scegli un modello e aggiungi il suo skill così il tuo editor ha documentazione, schema, note prezzi e passaggi di setup.
# Base URL
https://runapi.ai
# Endpoints
POST /v1/embeddings
curl https://runapi.ai/v1/chat/completions \
-H "Authorization: Bearer $RUNAPI_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "text-embedding-ada-002",
"input": [
"Crea gli embedding di questi articoli di supporto e di una domanda cliente così posso ordinare le corrispondenze più vicine."
],
"encoding_format": "float"
}'
from openai import OpenAI
client = OpenAI(
base_url="https://runapi.ai/v1",
api_key="your-runapi-key"
)
response = client.chat.completions.create(
model="text-embedding-ada-002",
messages=[{"role": "user", "content": "Crea gli embedding di questi articoli di supporto e di una domanda cliente così posso ordinare le corrispondenze più vicine."}]
)
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://runapi.ai/v1",
apiKey: "your-runapi-key"
});
const response = await client.chat.completions.create({
model: "text-embedding-ada-002",
messages: [{ role: "user", content: "Crea gli embedding di questi articoli di supporto e di una domanda cliente così posso ordinare le corrispondenze più vicine." }]
});
Tutte le varianti di OpenAI
| Model | Variant | Billing | Pricing | |
|---|---|---|---|---|
|
Embedding
|
text-embedding-3-large | 1K tokens | Input $0.13 / 1M tokens | Output Free / 1M tokens | Visualizza → |
| text-embedding-3-small | 1K tokens | Input $0.02 / 1M tokens | Output Free / 1M tokens | Visualizza → | |
| text-embedding-ada-002 | 1K tokens | Input $0.10 / 1M tokens | Output Free / 1M tokens | Visualizza → | |
|
GPT
|
codex-auto-review | 1K tokens | Input $2.50 / 1M tokens | Output $15.00 / 1M tokens | Visualizza → |
| gpt-5.2 | 1K tokens | Input $0.88 / 1M tokens | Output $7.00 / 1M tokens · Input $1.75 / 1M tokens | Output $14.00 / 1M tokens | Visualizza → | |
| gpt-5.2-pro | 1K tokens | Input $10.50 / 1M tokens | Output $84.00 / 1M tokens | Visualizza → | |
| gpt-5.3-codex | 1K tokens | Input $1.05 / 1M tokens | Output $8.40 / 1M tokens | Visualizza → | |
| gpt-5.3-codex-spark | 1K tokens | Input $1.05 / 1M tokens | Output $8.40 / 1M tokens | Visualizza → | |
| gpt-5.4 | 1K tokens | Input $2.50 / 1M tokens | Output $15.00 / 1M tokens | Visualizza → | |
| gpt-5.4-mini | 1K tokens | Input $0.45 / 1M tokens | Output $2.70 / 1M tokens | Visualizza → | |
| gpt-5.4-nano | 1K tokens | Input $0.10 / 1M tokens | Output $0.63 / 1M tokens | Visualizza → | |
| gpt-5.4-pro | 1K tokens | Input $30.00 / 1M tokens | Output $180.00 / 1M tokens | Visualizza → | |
| gpt-5.5 | 1K tokens | Input $5.00 / 1M tokens | Output $30.00 / 1M tokens | Visualizza → | |
| gpt-5.5-pro | 1K tokens | Input $30.00 / 1M tokens | Output $180.00 / 1M tokens | Visualizza → | |
| gpt-5.6-luna | 1K tokens | Input $0.20-$0.40 / 1M tokens | Output $1.20-$1.80 / 1M tokens | Visualizza → | |
| gpt-5.6-sol | 1K tokens | Input $5.00 / 1M tokens | Output $30.00 / 1M tokens | Visualizza → | |
| gpt-5.6-terra | 1K tokens | Input $2.00-$4.00 / 1M tokens | Output $12.00-$18.00 / 1M tokens | Visualizza → | |
| gpt-6-astra | 1K tokens | Input $5.00-$10.00 / 1M tokens | Output $25.00-$37.50 / 1M tokens | Visualizza → | |
|
OpenAI Transcription
|
gpt-transcribe | minute | $0.020 | Visualizza → |
| whisper-1 | minute | $0.020 | Visualizza → | |
|
OpenAI TTS
|
tts-1 | 1K UTF-8 bytes | $0.030 | Visualizza → |
| tts-1-hd | 1K UTF-8 bytes | $0.060 | Visualizza → |
Domande frequenti su OpenAI
È un'integrazione ufficiale di OpenAI?
RunAPI espone una superficie API gestita con prezzi, capacità e comportamento degli errori trasparenti.
Mi serve un account OpenAI?
No — la tua chiave RunAPI è sufficiente per l’accesso gestito.
Qual è l’overhead di latenza del proxying?
In genere sotto i 20 ms. RunAPI mantiene il layer proxy vicino alle regioni di esecuzione del modello.
Le immagini / i video vengono cachati?
Gli output generati vengono salvati e possono essere recuperati tramite task ID. Gli input non vengono cachati.
Posso usare una mia chiave?
Al momento no — le chiamate usano l’accesso gestito da RunAPI.