{"code": 200,"message": "Revealing results","data": [["Financial Reporting",0.41042819600000002],["Microsoft Excel",0.401153237],["Customer Service",0.32542374699999999],["Microsoft Office",0.32138148]....]}
{"code": 400,"message": "Bad request. Text cannot be null"}
{"code": 401,"message": "Unauthorized. Invalid secret key: xxxx for permission: write"}
Max limit token is 512, if for a given text, this limit is exceeded, we will consider the first 512 tokens.
from hrflow import Hrflow​client = Hrflow(api_secret="Your API Key", api_user="Your API user email")​​response = client.document.revealing.post(text="hello")
import Hrflow from 'hrflow';const client = new Hrflow({api_secret: 'Your API Key',api_user: 'Your API user email'});​client.document.revealing.post("text").then(response => {console.log(response);// ...});