I'm set up with RESTFul Google Cloud Translate on my NodeJS server.
Their Google Translate Web Client offers a ton of useful translation metadata, including Part of Speech (See noun
in lower right):
Yet their API service offers very limited data in the response:
{
"translatedText": string,
"model": string,
"detectedLanguageCode": string,
"glossaryConfig": {
object (TranslateTextGlossaryConfig)
}
}
Q: is there a version available in Google Translate Cloud API which offers at least Part of Speech? If not, is there another API service which offers more meta data about a translation? Looking specifically for Spanish POS tagging.
I've even gone as far as to use Natural POS Tagger via NPM to manually enter a list of Spanish words to get their meanings, but unfortunately this Brill-based tagging system only works with Dutch (DE
) and English (EN
).