Provider Integration
1. List Models Endpoint
{
"data": [
{
// Required
"id": "anthropic/claude-sonnet-4",
"hugging_face_id": "", // required if the model is on Hugging Face
"name": "Anthropic: Claude Sonnet 4",
"created": 1690502400,
"input_modalities": ["text", "image", "file"],
"output_modalities": ["text"],
"quantization": "fp8",
"context_length": 1000000,
"max_output_length": 128000,
"pricing": {
"prompt": "0.000008", // pricing per 1 token
"completion": "0.000024", // pricing per 1 token
"cache_read": "0.0000008",
"image": "0", // pricing per 1 image
"request": "0", // pricing per 1 request
"input_cache_read": "0", // pricing per 1 token
"input_cache_write_5m": "0", // pricing per 1 token
"input_cache_write_1h": "0" // pricing per 1 token
},
"supported_sampling_parameters": ["temperature", "stop"],
"supported_features": [
"tools",
"json_mode",
"structured_outputs",
"web_search",
"reasoning"
],
// Optional
"description": "Anthropic's flagship model...",
"deprecation_date": "2025-06-01T15:00:00Z", // ISO 8601 date or UTC hour
"is_ready": true, // false to keep the model staged-but-hidden on Infron
"is_free": false, // true to mark as a free endpoint
"capacity_tpm": 1000000, // input tokens per minute capacity for this model (optional)
"infron": {
"slug": "anthropic/claude-sonnet-4"
},
"datacenters": [
{
"country_code": "US" // `Iso3166Alpha2Code`
}
]
}
]
}2. Auto Top Up or Invoicing
3. Uptime Monitoring & Traffic Routing
4. Performance Metrics
5. How deprioritization thresholds work
6. How to improve your ranking
Last updated