Four entity types
PER (person), ORG (organization), LOC (location) and MISC (everything else).
Send a `texts` array and get the named entities in each one. For every text you
Learn more about Named Entity RecognitionResults show up here
The sample input is ready — just hit Run.
Send a texts array and get the named entities in each one. For every text you receive a flat entities list (with the matched text, its type, and a confidence score) plus four ready-to-use lists grouped by type: persons, organizations, locations and misc. Responses are synchronous — one request, one set of results. Ideal for indexing documents, enriching content and auto-filling forms.
PER (person), ORG (organization), LOC (location) and MISC (everything else).
Ready-made persons, organizations, locations and misc arrays, alongside the flat entities list.
Every entity comes with a score from 0 to 1.
Recognizes entities across many languages out of the box.
Document indexing
Pull out key entities for search facets and knowledge graphs.
Form auto-fill
Pre-fill name, company and location fields from unstructured text.
Content enrichment
Tag articles with the people, organizations and places they mention.
input
A texts array of strings — one set of results is produced per text.
output
results[] with an entities list plus grouped persons / organizations / locations / misc arrays.
entities list with a type and a confidence score.persons, organizations, locations and misc lists, deduplicated as plain strings.texts array; you get one results[] entry per text, and the price is per request.textsrequiredarray<string>Array of texts to analyze. One results[] entry is returned per text.
results[].entitiesarray<object>Flat entity list, each {text, type, score}. type is one of PER, ORG, LOC, MISC.
results[].personsarray<string>PER entities as a deduplicated list of strings.
results[].organizationsarray<string>ORG entities as a deduplicated list of strings.
results[].locationsarray<string>LOC entities as a deduplicated list of strings.
results[].miscarray<string>MISC entities as a deduplicated list of strings.
Billed per request.
| Service | Unit | Price |
|---|---|---|
| Named Entity Recognition | item | $0.004/request |