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
0
votes
4 answers

Zomato api url request returning error saying invalid api key

I'm trying to get the data stored in the zomato api and on checking a few urls generated in the site, for example,
Ahaan R
  • 1
  • 1
  • 2
0
votes
2 answers

How do I make a cURL request to zomato api?

I just began exploring APIs. This is my code so far. For locu API this works but for Zomato they use curl header request which I don't know how to use. Could someone guide or show me how? import json import urllib2 Key = 'Zomato_key' url =…
0
votes
2 answers

Zomato API integration with in android app

{ "code":403, "status":"Forbidden", "message":"Invalid API Key" } this is what i am getting as request URL I am trying to use the request URL for Zomato API using my Generated API key. But every time i try to use the URL on fiddler…
0
votes
1 answer

Not able to fetch phone number from Zomato API

I am not able to fetch phone number of restaurant using Zomato API. Do we need to Partner with Zomato then only it will provide such details. I also want restaurant other details such as its website(if any provided).
Pratik Shah
  • 563
  • 4
  • 14
0
votes
1 answer

How do I fetch all pages of the menu with zomato API?

I am using the Zomato API in my application . I queried restaurants in an area with the the following https://developers.zomato.com/api/v2.1/restaurant?res_id=RESID and I get a JSON response of restaurant data. like { "id": "16774318", "name":…
Sainath S.R
  • 3,074
  • 9
  • 41
  • 72
0
votes
1 answer

Image scraping with Android

Is there a way to scrape multiple images from a website, and display it through our app? I want to display the images from, let's say, this website https://www.zomato.com/id/jakarta/the-porte-eatery-and-cafe-benda/menu#tabtop Zomato itself only…
kvnrichie
  • 11
  • 6
0
votes
1 answer

Is it possible to sort a list that is displayed with a Textview?

I am making a restaurant recommender system using Zomato's api. Zomato only allows 20 restaurant per query (with a max of 100 restaurant), so I have to query 5 times to get the most. I put the query in a list and display it through TextView (and…
kvnrichie
  • 11
  • 6
0
votes
1 answer

Google Apps Scripts - JSON Parse ZOMATO API

I am newbie in Google Scripting. So i need help with parse JSON from ZOMATO API - there is a documentation: https://developers.zomato.com/documentation?lang=cs#!/restaurant/restaurant I have this code: var ss =…
libor
  • 43
  • 1
  • 1
  • 5
0
votes
2 answers

How does Zomato autocomplete their textbox for address?

In the android version of their app, if we type some letters, it will try to suggest places' names that starts with those letters. Is that from their server or do they use google places' API? Can anyone teach me whether to get the autocomplete from…
0
votes
1 answer

Zomato api always returning only 20 restaurants in search by location response

Even if I change count parameter to something else, it's always returning 20 responses only. Is this a limitation of basic zomato API?
0
votes
1 answer

Zomato API: How to include multiple establishments in the search?

When you want to search you have to generate this URL https://developers.zomato.com/api/v2.1/search? lat=LATITUDE &lon=LONGITUDE &radius=RADIUS &establishment_type=ESTABLISHMENT IDS &category=3%2C10 You can filter by putting…
Dave
  • 43
  • 7
0
votes
1 answer

Ajax call to Zomato API is not working

I am trying to access zomato api. URL: https://developers.zomato.com/api/v2.1/categories Headers: 'X-Zomato-API-Key':'myapikeyhere-763demoapi434' If I use chrome's postman extension or curl then I can access the url & getting 200 status code. But…
wmnitin
  • 3,387
  • 1
  • 13
  • 19
0
votes
1 answer

How to get JSON file from Zomato for my app...!

I am trying to create an app which displays the hotels nearby. I wanna use zomato api. how to send request and get JSON format output ? Am new to android please guide me..!
0
votes
1 answer

Zomato api is not working in Nodejs

I need to get the review of a particular restaurant using Zomato Api in Nodejs.But this api is working in postman . But it is not working in Nodejs. app.js var https = require('https'); var request = require('request'); var zomatoUserKey =…
Muhsin Keloth
  • 7,855
  • 7
  • 39
  • 59
0
votes
2 answers

Zomato api with angular

I'm fairly new to coding and am having issues loading data from the Zomato API with angulars $http. I keep getting invalid API key popping up as an error in my console even though im using the API key generated by Zomato. Here is a snippet of my…