Claude Opus 4.8 is designed for complex tasks and high-quality text generation. It supports text and image input, streaming responses, tool calling, and configurable reasoning effort. The model is available through an OpenAI-compatible API and is suitable for code generation, technical analysis, long-form processing, structured output, and automated API workflows.
Provider: Anthropic
Category: text generation
Endpoint: /v1/chat/completions
Status: Available
Cost: --
Claude Opus 4.8 is designed for complex tasks and high-quality text generation. It supports text and image input, streaming responses, tool calling, and configurable reasoning effort. The model is available through an OpenAI-compatible API and is suitable for code generation, technical analysis, long-form processing, structured output, and automated API workflows.
API access
Endpoint
POST /v1/chat/completions
Base URL
https://api.hiapi.ai
OpenAI Chat Completions compatible. Use one HiAPI key across all available models.
Input price
11,480 Credits
/ 1M tokens
Output price
57,400 Credits
/ 1M tokens
Context
-
context window
Max output
-
output tokens
Ask a question, upload images, or paste from clipboard. Then inspect the streamed answer, token usage, latency, and estimated cost.
Upload or paste up to 4 images, 10 MB each. Images are safety reviewed.
Call claude-opus-4-8@aws with the OpenAI-compatible Chat Completions format. Copy a ready-to-use cURL, Python, or Node.js example below.
/v1/chat/completionscurl -X POST "https://api.hiapi.ai/v1/chat/completions" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "claude-opus-4-8@aws",
"stream": false,
"messages": [
{
"role": "user",
"content": "A cat walking on the beach at sunset"
}
]
}'Tip: Replace YOUR_API_KEY with your actual API key from the API Keys page.
Compatible with the OpenAI Chat Completions format. Set the base URL, API key, and model name to get started.
Combine text and image_url in the Chat Completions content array. Use a public HTTPS image URL.
/v1/chat/completionscurl -X POST "https://api.hiapi.ai/v1/chat/completions" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "claude-opus-4-8@aws",
"stream": false,
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "Describe the main subject, setting, and important visual details."
},
{
"type": "image_url",
"image_url": {
"url": "https://static.hiapi.ai/example/subject-1.jpg"
}
}
]
}
]
}'Tip: Replace YOUR_API_KEY with your actual API key from the API Keys page.
Compatible with the OpenAI Chat Completions format. Set the base URL, API key, and model name to get started.
Billing follows the input, output, and cache token categories actually reported in usage. All prices below are shown per 1 million tokens.
Prompts and context sent to the model
Responses and reasoning generated by the model
These specifications reflect the current public HiAPI text request contract. Undisclosed capabilities are not inferred by the page.
Claude Opus 4.8 is designed for complex tasks and high-quality text generation. It supports text and image input, streaming responses, tool calling, and configurable reasoning effort. The model is available through an OpenAI-compatible API and is suitable for code generation, technical analysis, long-form processing, structured output, and automated API workflows.
HiAPI exposes this model through /v1/chat/completions. Test prompts and parameters in the Playground, then use the same HiAPI API key in your server application.
The Playground and API share the same model ID, so three steps take a tested prompt into production.
Step 1
Test the system prompt, output length, and model-supported reasoning options in the Playground.
Step 2
View an existing key or create another after signing in; one key works across all available models.
Step 3
Send requests to /v1/chat/completions and track cost with the usage object.
The claude-opus-4-8@aws API is a text generation endpoint available through one HiAPI API key.
claude-opus-4-8@aws API uses usage-based pricing. This page includes pricing, parameters, examples, and integration code.
Send a POST request to /v1/chat/completions with the model name, messages, and one API key. This page includes cURL, Python, and Node.js examples.