AI Glossary · Definition

AI Token

A chunk of text the AI processes — roughly ¾ of a word. The reason rate limits and pricing exist.

The plain-English definition

A token is the smallest unit of text an AI model handles. It's not exactly a word — it's roughly ¾ of one. The word "thanks" is one token. The word "preposterously" is two or three. Models break your text into tokens before processing, then string tokens together to write back.

The math you actually need to know

Why tokens matter

Three reasons:

  1. Context limits. Models have a maximum context window measured in tokens. Hit it, and earlier text gets forgotten.
  2. Pricing. If you use the API, you pay per token. Input tokens (your prompt) and output tokens (the response) often cost different amounts.
  3. Rate limits. Free tiers limit your tokens-per-day. Pro tiers let you spend more.

2026 API pricing (per million tokens)

For everyday chat use (not API), this doesn't matter — you pay a flat $20/month for Pro. Tokens only matter if you build with the API.

How to count tokens

Estimate: divide your word count by 0.75. For exact counts, OpenAI offers a tokenizer at platform.openai.com/tokenizer. Anthropic's tokenizer is similar but differs slightly per model.

Related terms

Copied