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 = 'https://developers.zomato.com/api/v2.1/categories'
json_obj = urllib2.urlopen(url)
data = json.load(json_obj)
print data
By looking at the Zomato API docs, it seems that the parameter
user-key
has to be set in the header.The following works:
If you want a more elegant way to query APIs, have a look at
requests
module (you can install usingpip install requests
).I suggest you the following:
NB: I suggest you remove your Key from StackOverflow if you care about keeping it to yourself.