Documentation preview — inference endpoint coming soon. Examples are illustrative.
Status pageAPI documentation
Know the request shape before the endpoint is live.
This preview puts the base URL, bearer-key flow, model identifier, request format, and pricing in one place. The examples are illustrative until Arnict can serve and meter live inference requests.
Overview
The intended surface is a chat completions endpoint. Arnict operates the model-serving path directly on US-based infrastructure; requests are not forwarded to a third-party inference provider.
Planned base URL
https://api.arnict.com/v1
Intended request
POST /chat/completions
Authentication
Requests authenticate with a bearer API key created from your dashboard. API keys must remain server-side: never embed them in browser code, mobile builds, or public repositories.
Authorization: Bearer $ARNICT_API_KEYStored key records are hashed. The full secret is shown once at creation; afterwards only the prefix and metadata are displayed.
Model identifier
Kimi K3
kimi-k3 · 2.8T total · 104B active
Use kimi-k3 as the model value. Roadmap models will receive their own identifiers when released.
Request shape
{
"model": "kimi-k3",
"messages": [
{ "role": "system", "content": "You are a precise assistant." },
{ "role": "user", "content": "..." }
]
}The response follows the familiar chat completion object, including usage fields that map to the published token rates for metering.
Examples
curl https://api.arnict.com/v1/chat/completions \
-H "Authorization: Bearer $ARNICT_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "kimi-k3",
"messages": [
{
"role": "user",
"content": "Explain directly hosted inference."
}
]
}'These examples are labelled illustrative until the inference endpoint is operational. The status page is the authority for current availability.
Pricing reference
| Usage type | USD / 1M tokens |
|---|---|
| Input tokens | $2.50 |
| Cached input tokens | $0.25 |
| Output tokens | $12.50 |
Pay As You Go includes $5 of free equivalent API usage monthly. Developer Pass ($29.99/mo) provides $40 per rolling week and $120 per billing month. See pricing for allowance rules.
Availability
Kimi K3 inference is not yet operational. When it opens, prompts and completions will be processed with Zero Data Retention.
Coming soon