Yelp Organic Results API
When a Yelp search contains organic results, they are parsed and exist within the organic_results
array in the JSON output. Organic results can contain position
, title
, link
, thumbnail
, snippet
, rating
, reviews
, categories
, neighborhoods
and more
.
API Examples
Organic results overview
{
...
"organic_results": [
{
"position": 1,
"place_ids": [
"K6fkejf2ZBUdlsVrm5RbrA",
"kore-coffee-new-york-2"
],
"title": "Kore Coffee",
"link": "https://www.yelp.com/biz/kore-coffee-new-york-2?osq=Coffee",
"reviews_link": "https://serpapi.com/search.json?engine=yelp_reviews&place_id=K6fkejf2ZBUdlsVrm5RbrA",
"categories": [
{
"title": "Coffee & Tea",
"link": "https://www.yelp.com/search?cflt=coffee&find_loc=New+York%2C+NY%2C+USA"
}
],
"rating": 5,
"reviews": 13,
"neighborhoods": "Chinatown",
"highlights": [
"Opened 6 weeks ago"
],
"snippet": "Nice small cozy coffee place. Tried their signature Matcha Tiramisu Latte (only served cold) and Matcha Latte, both are nice.",
"thumbnail": "https://s3-media0.fl.yelpcdn.com/bphoto/Nfc-QcUS71NWWjdlDx8JBw/348s.jpg"
},
{
"position": 2,
"place_ids": [
"-2UtjTxrt1Xzd-HPsLJ7mA",
"butler-brooklyn-2"
],
"title": "Butler",
"link": "https://www.yelp.com/biz/butler-brooklyn-2?osq=Coffee",
"reviews_link": "https://serpapi.com/search.json?engine=yelp_reviews&place_id=-2UtjTxrt1Xzd-HPsLJ7mA",
"categories": [
{
"title": "Coffee & Tea",
"link": "https://www.yelp.com/search?cflt=coffee&find_loc=New+York%2C+NY%2C+USA"
},
{
"title": "Cafes",
"link": "https://www.yelp.com/search?cflt=cafes&find_loc=New+York%2C+NY%2C+USA"
}
],
"price": "$$",
"rating": 4,
"reviews": 150,
"neighborhoods": "DUMBO",
"snippet": "it is and it's gross. Don't buy the coffee here, this place doesn't seem sanitary.",
"service_options": {
"outdoor_dining": true,
"takeout": true
},
"thumbnail": "https://s3-media0.fl.yelpcdn.com/bphoto/CU_zfWiYItMJkR6iJsnk0w/348s.jpg"
},
{
"position": 3,
"place_ids": [
"kpxXi23lUQkeJQH-2BtzDw",
"qahwah-house-brooklyn"
],
"title": "Qahwah House",
"link": "https://www.yelp.com/biz/qahwah-house-brooklyn?osq=Coffee",
"reviews_link": "https://serpapi.com/search.json?engine=yelp_reviews&place_id=kpxXi23lUQkeJQH-2BtzDw",
"categories": [
{
"title": "Cafes",
"link": "https://www.yelp.com/search?cflt=cafes&find_loc=New+York%2C+NY%2C+USA"
},
{
"title": "Middle Eastern",
"link": "https://www.yelp.com/search?cflt=mideastern&find_loc=New+York%2C+NY%2C+USA"
},
{
"title": "Coffee & Tea",
"link": "https://www.yelp.com/search?cflt=coffee&find_loc=New+York%2C+NY%2C+USA"
}
],
"price": "$",
"rating": 5,
"reviews": 183,
"neighborhoods": "Williamsburg - North Side",
"snippet": "I walked in and could smell the coffee and it was like coffee heaven. The employees were very",
"service_options": {
"outdoor_dining": true,
"delivery": true,
"takeout": true
},
"button": {
"text": "Start Order",
"link": "https://www.yelp.com/biz/kpxXi23lUQkeJQH-2BtzDw?show_platform_modal=True"
},
"thumbnail": "https://s3-media0.fl.yelpcdn.com/bphoto/hGHi0N9J4Q-2lzp6b3EPkw/348s.jpg"
},
...
]
...
}