Model ID: openai/gpt-5.3-chat
per 1M tokens
per 1M tokens
per 1M tokens
import requests
# Fetch pricing data from llmprices.ai
response = requests.get(
"https://llmprices.ai/api/pricing?model=openai/gpt-5.3-chat"
)
data = response.json()
print(f"Model: {data['name']}")
print(f"Input: {float(data["pricing"]["prompt"]) * 1000000:.2f}/1M tokens")
print(f"Output: {float(data["pricing"]["completion"]) * 1000000:.2f}/1M tokens")Endpoint:
GET https://llmprices.ai/api/pricing?model=openai/gpt-5.3-chatExample Response:
{
"id": "openai/gpt-5.3-chat",
"name": "OpenAI: GPT-5.3 Chat",
"pricing": {
"prompt": "0.00000175",
"completion": "0.000014",
"input_cache_read": "0.000000175"
}
}