added

Text Tagging API: Batch Mode

We're happy to introduce the Batch Mode for our Tagging API.

😍 Why it’s a big deal for HrFlow.ai users?

This update helps our users easily perform batch processing of multiple texts in a single request using the texts input parameter.


🔧 How does it work?

Below is an example of the request Json to apply the Tagging API on multiple texts. The input parameter texts should contain the list of strings you’d like to process

{
  "method": "POST",
  "url": "https://api.hrflow.ai/v1/text/tagging",
  "headers": {
    "X-API-KEY": "ask_a7922c4df9e584fe191daff7c6e002ab",
    "X-USER-EMAIL": "[email protected]",
    "accept": "application/json",
    "content-type": "application/json"
  },
  "data": {
    "algorithm_key": "tagger-rome-jobtitle",
    "texts": [
      "A professional responsible for overseeing a team of salespeople and sales",
      "Heading an enterprise data science division requires strong skills in NLP and ML"
    ],
    "top_n": 1,
    "output_lang": "en"
  }
}

💡 Useful Links