-
Notifications
You must be signed in to change notification settings - Fork 393
Description
Hi, I am currently trying to use the natural language search endpoint on the Yelp developer portal, but it seems only to generate the following error:
{
"error": {
"code": "NOT_FOUND",
"description": "Resource could not be found."
}
}
This occurs despite using the example provided directly from the documentation:
curl --request POST
--url https://api.yelp.com/v3/businesses/natural_language_search
--header 'Authorization: Bearer **I_USE_MY_API_KEY_HERE_CORRECTLY'
--header 'accept: application/json'
--header 'content-type: application/json'
--data '
{
"messages": [
{
"content": "I need a plumber in San Francisco."
}
]
}
'
**I replaced the API key in this post for security purposes.
The businesses/search endpoint works just fine for me, so I think there might be an isolated issue with the Natural Language Search endpoint.