added

Text Parsing API: Introducing Batch Mode

We're delighted to introduce the batch mode for our Text Parsing API.

Text Parsing API Batch Mode

Text Parsing API Batch Mode

😍 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 you can find an example of the request Json to parse multiple texts. The input parameter texts should contain the list of strings you’d like to parse.

{
  "method": "POST",
  "url": "https://api.hrflow.ai/v1/text/parsing",
  "headers": {
    "X-API-KEY": "<your_api_key>",
    "X-USER-EMAIL": "<your_user_email>",
    "accept": "application/json",
    "content-type": "application/json"
  },
  "data": {
    "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"
    ]
  }
}

💡 Useful Links