Inkling (Together) API

Together AI · serves inkling

Pricing

Input / 1M$1.00
Output / 1M$4.05
Blended / 1M$5.05
Cached input / 1M$0.17
Context window1,048,576 tokens
Max output471,859 tokens

textvisionfunction-calling

Price verified 2026-09-10 (0 days ago) · sourcecorroborated

Get an API key at Together AI →

Sources

SourceInput / 1MOutput / 1MVerified
OpenRouter$1.00$4.052026-09-10
LiteLLM$1.00$4.052026-09-07
models.dev$1.00$4.052026-09-07
Together$1.00$4.052026-09-07

Two independent sources agree within 20%.

Call it

OpenAI-compatible endpoint — set TOGETHER_API_KEY.

curl https://api.together.xyz/v1/chat/completions \
  -H "Authorization: Bearer $TOGETHER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "thinkingmachines/Inkling",
    "messages": [{"role": "user", "content": "Hello"}]
  }'
from openai import OpenAI  # pip install openai

client = OpenAI(
    base_url="https://api.together.xyz/v1",
    api_key="...",  # TOGETHER_API_KEY
)
resp = client.chat.completions.create(
    model="thinkingmachines/Inkling",
    messages=[{"role": "user", "content": "Hello"}],
)
print(resp.choices[0].message.content)

Price unchanged since 2026-09-10 — 1 point on record.

Use this data

Raw JSON for this page: inkling.json. Free to reuse under CC BY 4.0 with attribution to apipriceindex.com.