Part of speech tagging is the process of marking up a word in a text as corresponding to a particular part of speech, based on both its definition and its context. This is a simple API that takes a text and returns the tagged text.
{
"tagged_text": "The/AT lazy/JJ dog/NN jumps/NNS over/UNDER the/AT quick/RB brown/JJ fox/NN"
} {{ codeCopyText }}
{{ codeCopyText }}
{{ codeCopyText }}
{{ codeCopyText }}
{{ codeCopyText }}
{{ codeCopyText }}
The API uses standard Part-of-Speech tags such as NN (Noun), VB (Verb), JJ (Adjective), RB (Adverb), and many others to classify words.
Yes, the API can process longer texts containing multiple sentences and will tag each word accordingly.
The API considers capitalization as a feature for tagging (e.g., "Apple" vs "apple"), but it is robust enough to handle standard sentence casing.
The POS Tagging API identifies the grammatical role of every word (noun, verb, adjective, etc.), while the Extract Entities API specifically identifies and classifies named entities like people, places, and organizations.