chat model
gpt-5-nano
gpt-5-nano is a chat model available through the LLM7 API. It supports text input, image input, tool calling, streaming. It provides a 400,000 tokens context window. It currently costs $0.05 USD input and $0.40 USD output per 1M tokens.
gpt-5-nanoCurrent LLM7 pricing
Simple, pay-as-you-go pricing
$0.05 USD input and $0.40 USD output per 1M tokens
Cost calculator
Adjust the volume to see an instant estimate at the current public price.
01M
Input estimate
$0.0005
Output estimate
$0.001
Estimated total
$0.0015
Start building
A verified request for this exact model. Add your API key and run it.
curl https://api.llm7.io/v1/chat/completions \
-H "Authorization: Bearer $LLM7_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5-nano",
"messages": [
{ "role": "user", "content": "Hello!" }
]
}'