Ling-3.0-tiny API

inclusionAI's Ling-3.0-tiny: free, lightweight chat model with 262K-token context, reasoning and tool calling.
Context
262K tokens
Input
$0 / 1M (free)
Output
$0 / 1M (free)
Released
Aug 6, 2026

How to use Ling-3.0-tiny API

Install any OpenAI-compatible SDK, point it at api.aimlapi.com/v1, and set the model to inclusionai/ling-3.0-tiny.
import requests

r = requests.post(
    "https://api.aimlapi.com/v1/chat/completions",
    headers={"Authorization": "Bearer " + AIMLAPI_KEY},
    json={
      "model": "inclusionai/ling-3.0-tiny",
      "messages": [
        {
          "role": "user",
          "content": "Hello!"
        }
      ]
    },
)
print(r.json())
const r = await fetch("https://api.aimlapi.com/v1/chat/completions", {
  method: "POST",
  headers: {
    Authorization: `Bearer ${process.env.AIMLAPI_KEY}`,
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    "model": "inclusionai/ling-3.0-tiny",
    "messages": [
      {
        "role": "user",
        "content": "Hello!"
      }
    ]
  }),
});
console.log(await r.json());
curl -X POST https://api.aimlapi.com/v1/chat/completions \
  -H "Authorization: Bearer $AIMLAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"inclusionai/ling-3.0-tiny","messages":[{"role":"user","content":"Hello!"}]}'

OpenAI-compatible — swap the base URL and it works with your existing SDK.

Ling-3.0-tiny API Pricing

TypePrice
$0 / 1M (free) tokens
Output
$0 / 1M (free) tokens

Currently offered free of charge.

Ling-3.0-tiny vs other models

ModelInputOutputContextBest for
Ling-3.0-tiny
This page
$0 / 1M (free)
$0 / 1M (free)
262K tokens
High-volume, zero-cost chat and reasoning tasks
$0.195 / 1M
$0.195 / 1M
262K tokens
Reasoning + agents
$0.065 / 1M
$0.13 / 1M
131K tokens
Reasoning + agents
$0.04875 / 1M
$0.195 / 1M
128K tokens
Reasoning + agents
$0.0975 / 1M
$0.39 / 1M
1M tokens
Reasoning + agents

Start building with Ling-3.0-tiny

Get API Key
1000+ models, one API.