Extract article text from any URL, tag named entities, score sentiment, and answer questions — four NLP capabilities behind one clean, language-agnostic API.
Metered billing through the APIDirectory storefront — pay per request, no plans, cancel anytime.
AppleORG is thrilled to be buying a promising U.K.GPE startup for $1 billionMONEY
Runs against the real API at use.textapi.com — no key needed for this demo.
Point it at a URL and get back the clean, readable article body — no boilerplate, no ads, no markup.
Try it in the docs →Submit plain text and get named entities back with their labels and exact character positions.
See a live response →Instant insight into how the authors of reviews, tickets, and comments actually feel.
See a live response →Supply context — or just a URL — plus a question, and get an extractive answer with its confidence score.
Try it in the docs →Render highlighted entity tags as SVG or HTML — bring your own spans or let the API find them.
See a live render →Ship your product on TextAPI from any language, then move to spaCy — the library underneath — when you outgrow it.
Browse all endpoints →If it can make an HTTP request, it can use TextAPI.
curl "https://use.textapi.com/ner?text=Apple+is+buying+a+U.K.+startup"
{"spans": [{"text": "Apple", "start": 0, "end": 5, "label": "ORG"},
{"text": "U.K.", "start": 19, "end": 23, "label": "GPE"}]}
import requests
r = requests.get("https://use.textapi.com/ner",
params={"text": "Apple is buying a U.K. startup"})
print(r.json()["spans"])
const res = await fetch("https://use.textapi.com/ner?text=" +
encodeURIComponent("Apple is buying a U.K. startup"));
const { spans } = await res.json();
Metered keys route through the APIDirectory gateway — your endpoint and code samples are on the storefront.
Short, specific walkthroughs built around code you can paste into a project today.
Score reviews in one call, read the four numbers correctly, and recognise the sentences this approach scores as neutral when a human wouldn't.
Read the guide → Aug 29, 2026Point the QA endpoint at a URL and a question, get an extracted answer with a confidence score — plus the two mistakes that make extractive QA go wrong.
Read the guide → Aug 29, 2026Pull people, companies, money, and dates out of raw text with one HTTP call — including the character offsets you need to highlight them.
Read the guide →Keys are issued instantly through our storefront on APIDirectory. You pay per request with monthly metered billing — no tiers to pick, no minimum commitment, cancel any month.
See pricing & get a key →Prefer one key across many APIs? TextAPI also sells through the APIDirectory registry gateway.
Through our storefront on APIDirectory, backed by Stripe. Billing is metered: every request counts, you get one invoice a month for exactly what you used, and you can cancel any month. No tiers, no seats, no minimums.
Instantly — subscribe on the storefront and your key is issued and emailed the moment checkout completes.
Yes. The demo at the top of this page runs against the real API, the feature cards link to live responses, and every endpoint can be exercised from the interactive docs.
Each API call made with your key counts as one metered request, whichever endpoint it hits.