Questions tagged [zomato-api]

The Zomato APIs provide the most accurate and updated restaurant data for integration with your application. This allows third party applications and products to integrate with Zomato and provide an engaging experience to their users. You can get information such as restaurant listings, location coordinates, reviews, discounts, photos, menus and pretty much everything else that we have for our own customers.

The Zomato API (http://zomato.com/api) was made public with the intention to help developers create innovative web and mobile applications using Zomato’s content. Using the API, developers can access the most updated content available on Zomato in real time directly from within their apps. They can access information such as restaurant listings, location coordinates, reviews, discounts, photos, menus and pretty much everything else that we have for our customers.

The API also lets developers search Zomato’s rich database comprising of ~20,000 restaurants, covering 10 major cities in India, based on various criteria.

65 questions
1
vote
1 answer

Zomato API calls with R httr package not returning records when adding string query

I am using the Zomato API with R's httr package to get restaurant data in JSON. When I call the Zomato API using the following code block, I get some records back and the GET() call seems to work fine. require(httr) URL <-…
1
vote
1 answer

How to get more than 100 restaurants via zomato api?

Firstly, I obtain a zomato api. Then I use nodejs fetch to get restaurants from the api. 0-19 items: https://developers.zomato.com/api/v2.1/search?entity_id=259&entity_type=city&start=0&count=20 20-40…
kenpeter
  • 7,404
  • 14
  • 64
  • 95
1
vote
1 answer

Obtaining values from Zomato API data keys

I am currently trying to obtain the names and addresses of restaurants in Hayward from the "best_restaurant" list in the Zomato API. I have tried response = requests.get(url, headers=header) data = (response.json()) # print(data) for item in…
1
vote
1 answer

Cannot access Zomato APIs JSON object

I am working on a project in Udacity's web development Nanodegree course. I decided to use restaurant information and generated my API key. However, when I use it in an AJAX object to get data, dev tools shows me an 'Invalid API' error. The API,…
1
vote
2 answers

Android: How to get JSON object from Zomato API?

My goal is to display a list of nearby restaurants using the Zomato API. I first need the JSON object to get the names of these restaurants. I've already got the API key and I know that the request URL would look like…
Dave
  • 43
  • 7
1
vote
0 answers

PHP cURL request to zomato API working on localhost but only returning empty array on live server

I've built a site that connects to Zomato's API https://developers.zomato.com/api via PHP cURL and retrieves an array of information in json. I've stripped down the code I'm using to here:
Pacificano
  • 56
  • 7
1
vote
1 answer

Model Class for Zomato Android API

Hello I am trying to develop an app for which I need a list of restaurants in a particular city. I am trying to use the Zomato API for the same. From the documentation at https://developers.zomato.com/documentation, I felt the /geocode method to be…
0
votes
1 answer

Web Scraping / Zomato Web Scraping with BeautifulSoup

I tried web scraping referencing https://datascienceplus.com/zomato-web-scraping-with-beautifulsoup-in-python/ Just copied & pasted code on the site, but getting an error on the 2nd step. import requests from bs4 import BeautifulSoup #Used…
Lucy
  • 17
  • 7
0
votes
0 answers

Error 403 when searching for food using Zomato API

Let's say I want to list all seafood restaurants in Jakarta using this Zomato API: https://developers.zomato.com/documentation#!/restaurant/search Here's how you call it directly with curl: curl -X GET --header "Accept: application/json" --header…
anta40
  • 6,511
  • 7
  • 46
  • 73
0
votes
1 answer

Using Google Maps in Android Fragment

I am devoloping an app that uses Zomato Api to get nearby restaurants. I have this fragment that shows the details of the clicked restaurant to the user. My goal is to show on a map the location of the restaurant but I am having trouble doing this…
user13592317
0
votes
2 answers

Problem with Zomato API endpoint dailymenu

I´ve been trying to use the endpoint dailymenu from Zomato Api but I always get this response { "code": 400, "status": "Bad Request", "message": "No Daily Menu Available" } Here it is a printscreen of the call Am I doing something wrong?
user13592317
0
votes
1 answer

Google location services returning a null location when I use Retrofit

I have a fragment where I want to get my current coordinates and then use Retrofit to make a request to Zomato Api but my current location is returning null. I tried to delete the code relative to my api call and the app return my correct latitude…
user13592317
0
votes
1 answer

Using Zomato Api with Retrofit

I am trying to retrieve a list of restaurants from Zomato Api using RetroFit but I am only getting null responses and I can´t find what I did wrong.I already tried to change @Header to @Query and changing the response type from ApiResponse to…
user13592317
0
votes
1 answer

How to map aspects to reviews in sentiment analysis?

I am doing sentiment analysis on the aspects of food reviews in python . If the review is Eg : "Biryani was good and the atmosphere was bad" , it should be tagged as {[food,1],[ambience,-1]} (i.e) Food should be mapped to briyani and ambience to…
Pooo
  • 11
  • 1
0
votes
1 answer

How can I extract hygiene ratings from Zomato?

I'm working on a project where I'd look to analyze the hygiene ratings of the restaurants listed on Zomato in Delhi. I was able to get the restaurant details using the Zomato /search API but the API does not provide the hygiene rating of the…
Aastha Jha
  • 153
  • 1
  • 2
  • 14