/ API
ArvoCode API.
Programmatic access to the Arvo model family.
Base URL
https://platform.openartemis.com/v1Authentication
Bearer token over HTTPS.
Authenticate every request by passing your API key as a Bearer token in the Authorization header. Keys are scoped per account and rotatable from the dashboard.
Authorization: Bearer <YOUR_API_KEY>
request.shcurl
curl https://platform.openartemis.com/v1/messages \
-H "Authorization: Bearer $OPENARTEMIS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "arvo-fern-2",
"messages": [
{ "role": "user", "content": "Hello, Arvo." }
]
}'Models & Pricing
Frontier quality. Below market.
| Model ID | Display name | Context | Input /1M | Output /1M | Best for |
|---|---|---|---|---|---|
| arvo-kin-1 | Arvo Kin | 1B | $0.10 | $0.30 | Fast tasks, high volume |
| arvo-fern-2 | Arvo Fern | 100B | $0.40 | $1.20 | Balanced workloads |
| arvo-stoic-1 | Arvo Stoic | 1T | $1.00 | $3.00 | Frontier-grade tasks |
Positioning
API pricing is intentionally positioned below prevailing frontier market rates. HA’s compute efficiency compounds directly into unit economics — so we pass it on.
Endpoints
Clean. Typed. Minimal.
POST
/v1/messagesSend a message and receive a response.
POST
/v1/messages/streamStreaming response via Server-Sent Events (SSE).
GET
/v1/modelsList available models.
GET
/v1/usageRetrieve usage stats for the current API key.
POST /v1/messages · requestjson
{
"model": "arvo-fern-2",
"messages": [
{ "role": "system", "content": "You are a helpful assistant." },
{ "role": "user", "content": "Summarize the Helix Architecture in one sentence." }
],
"max_tokens": 512,
"temperature": 0.7
}POST /v1/messages · responsejson
{
"id": "msg_01HZ8Q3K9B7M2XC4YJW0F5TN",
"model": "arvo-fern-2",
"role": "assistant",
"content": [
{
"type": "text",
"text": "The Helix Architecture is a proprietary sparse non-transformer AI paradigm that delivers frontier-grade quality at superlinearly lower compute with native interpretability at any scale."
}
],
"stop_reason": "end_turn",
"usage": {
"input_tokens": 42,
"output_tokens": 41
}
}Rate limits
Scale with your tier.
Tier
Requests / min
Tokens / min
Core
60
100K
Plus
300
500K
Pro
Unlimited
Unlimited
Quickstart
Start shipping in minutes.
# pip install openai
from openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://platform.openartemis.com/v1",
)
response = client.chat.completions.create(
model="arvo-fern-2",
max_tokens=512,
messages=[
{"role": "user", "content": "Explain sparse architectures in one paragraph."}
],
)
print(response.choices[0].message.content)
THDB API
The Helix DataBase API.
Media intelligence and automated datasets — same Bearer token scheme, separate base URL.
Base URL
https://api.thdb.openartemis.com/v1GET
/v1/titles/{id}/timestampsGET
/v1/titles/{id}/subtitlesGET
/v1/titles/{id}/scene-intelligenceGET
/v1/titles/searchPricing: usage-based with cost-plus margins. Contact sales for enterprise rates.
GET /v1/titles/{id}/timestamps · responsejson
{
"title_id": "tt_helix_210114",
"episode": 4,
"duration_ms": 1412000,
"intro_start": 12000,
"intro_end": 102000,
"outro_start": 1354000,
"outro_end": 1412000,
"recap": { "start": 0, "end": 11000 }
}