Models
Anthropic
Claude Opus 4.8
anthropic/claude-opus-4.8
Tools
Claude Opus 4.8 is a Chat model routed through Anthropic via the Hydite Vtslx AO-compatible gateway. It is configured for text, image, file, tool calling.
Input
-
Output
-
Context
200,000
Max output
32,000
RPM
-
Overview
Model overview for Claude Opus 4.8
High-level routing, modality, and capability information configured in Vtslx AO.
Model introduction
Claude Opus 4.8 is a Chat model routed through Anthropic via the Hydite Vtslx AO-compatible gateway. It is configured for text, image, file, tool calling.
Model ID
claude-opus-4.8
Provider
Anthropic
Mode
Chat
Capabilities
Text
Image
File
Parameters
Complete model parameters
Model metadata and Vtslx AO routing parameters returned by the production gateway.
model_info
| Name | Value |
|---|---|
| No model_info fields returned. | |
litellm_params
| Name | Value |
|---|---|
| No litellm_params fields returned. | |
Pricing
Configured pricing
Token pricing is shown per 1M tokens. Null values are displayed as unavailable.
| Provider | Input $/1M | Output $/1M | Cache read $/1M | Batch input $/1M |
|---|---|---|---|---|
| Anthropic | - | - | - | - |
API
Use Claude Opus 4.8 with the Hydite gateway
The gateway is OpenAI-compatible and supports streaming and non-streaming calls.
POST
https://api.hydite.com/v1/chat/completionsAuthorization
Bearer $HYDITE_API_KEY
Content-Type
application/json
Model
Claude Opus 4.8
curl -N https://api.hydite.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $HYDITE_API_KEY" \
-d '{
"model": "Claude Opus 4.8",
"messages": [
{
"role": "user",
"content": "Hello"
}
],
"stream": true
}'Supported OpenAI parameters
No supported_openai_params list was returned.
Raw JSON
Original Vtslx AO model payload
Raw payload for debugging, audits, and parity checks with the production gateway.
{
"id": "claude-opus-4.8",
"name": "Claude Opus 4.8",
"provider": "anthropic",
"upstreamModel": "anthropic/claude-opus-4.8",
"mode": "chat",
"inputCostPerMillion": null,
"outputCostPerMillion": null,
"contextLength": 200000,
"maxOutputTokens": 32000,
"rpm": null,
"modalities": [
"Text",
"Image",
"File"
],
"supportsTools": true
}