RChilli provides Entity-Based Search. RChilli Search API requires some entity like skill, employer name, job profile, degree, experience, and location to search on the Indexed Documents. Currently, RChilli API is providing Free Text searching on the Indexed Documents.
For Search on RChilli, it must be on some entity
For Example:
If you are searching for an 'SEO Analyst in Pune,' you will get a result as SEO Analyst is a Job Profile and Pune is a city.
The result will be as follows:
{
"count": 2,
"pageStart": 0,
"pageSize": 100,
"records": [
{
"id": "7579",
"score": 100,
"CurrentEmployer": "Infotech",
"CurrentJobProfile": "SEO Analyst",
"State": "Maharashtra",
"FullName": "Ashvini Dhaygude",
"Country": "India",
"SubUserId": "50",
"City": "Pune"
},
{
"id": "7603",
"score": 87.5,
"CurrentEmployer": "Couponswala",
"TotalExperienceInYear": 5.11,
"CurrentJobProfile": "SEO Analyst",
"FullName": "Pooja Pundir",
"State": "Maharashtra",
"Country": "India",
"SubUserId": "50",
"City": "Pune"
}
]
}
But if you search for Free Text like "John Doe," "Outperform," etc., then API will not provide a result.
Comments
0 comments
Please sign in to leave a comment.