Inkling Small (BaseTen) API
BaseTen · serves inkling-small
Pricing
| Input / 1M | $0.50 |
|---|---|
| Output / 1M | $1.20 |
| Blended / 1M | $1.7 |
| Cached input / 1M | $0.10 |
| Context window | 1,048,576 tokens |
| Max output | 32,768 tokens |
textvisionfunction-calling
Price verified 2026-09-10 (0 days ago) · sourcecorroborated
Sources
| Source | Input / 1M | Output / 1M | Verified |
|---|---|---|---|
| OpenRouter | $0.50 | $1.20 | 2026-09-10 |
| LiteLLM | $0.50 | $1.20 | 2026-09-07 |
| models.dev | $0.50 | $1.20 | 2026-09-07 |
| Together | $0.50 | $1.20 | 2026-09-07 |
Two independent sources agree within 20%.
Cheaper providers for inkling-small
| Provider | Blended / 1M | Endpoint |
|---|---|---|
| DeepInfra | $1.65 | view → |
Compare all 3 providers serving inkling-small →
Call it
OpenAI-compatible endpoint — set BASETEN_API_KEY.
curl https://inference.baseten.co/v1/chat/completions \
-H "Authorization: Bearer $BASETEN_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "thinkingmachines/inkling-small",
"messages": [{"role": "user", "content": "Hello"}]
}'from openai import OpenAI # pip install openai
client = OpenAI(
base_url="https://inference.baseten.co/v1",
api_key="...", # BASETEN_API_KEY
)
resp = client.chat.completions.create(
model="thinkingmachines/inkling-small",
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-small.json. Free to reuse under CC BY 4.0 with attribution to apipriceindex.com.