Core APIs
...
Reference
Menu Restaurants and Stores
2 min
serpwow supports fetching menu pricing data for select restaurants by location simply make a get request using the restaurant and store identifier for example, to request menu pricing for store qdoba with store id 79706 , the request would be http https //api serpwow\ com/search?api key={api key}\&engine=menuhub\&type=menu\&store name=qdoba\&store id=79706\&output=jsoncurl l get https //api serpwow\ com/search \\ d api key="{api key}" \\ d engine="menuhub" \\ d type="menu" \\ d store name="qdoba" \\ d store id="79706" \\ d output="json"const axios = require('axios'); // set up the request parameters const params = { api key "{api key}", engine "menuhub", type "menu", store name "qdoba", store id "79706", output "json" } // make the http get request to serpwow axios get('https //api serpwow\ com/search', { params }) then(response => { // print the json response from serpwow console log(json stringify(response data, 0, 2)); }) catch(error => { // catch and print the error console log(error); })import requests import json \# set up the request parameters params = { 'api key' '{api key}', 'engine' 'menuhub', 'type' 'menu', 'store name' 'qdoba', 'store id' '79706', 'output' 'json' } \# make the http get request to serpwow api result = requests get('https //api serpwow\ com/search', params) \# print the json response from serpwow print(json dumps(api result json()))# set up the request parameters $querystring = http build query(\[ 'api key' => '{api key}', 'engine' => 'menuhub', 'type' => 'menu', 'store name' => 'qdoba', 'store id' => '79706', 'output' => 'json' ]); \# make the http get request to serpwow $ch = curl init(sprintf('%s?%s', 'https //api serpwow\ com/search', $querystring)); curl setopt($ch, curlopt returntransfer, true); curl setopt($ch, curlopt followlocation, true); \# the following options are required if you're using an outdated openssl version \# more details https //www openssl org/blog/blog/2021/09/13/letsencryptrootcertexpire/ curl setopt($ch, curlopt ssl verifyhost, false); curl setopt($ch, curlopt ssl verifypeer, false); curl setopt($ch, curlopt timeout, 180); $api result = curl exec($ch); curl close($ch); \# print the json response from serpwow echo $api result; below is a full list restaurants and supported locations for the selected restaurant in json format store name json of store ids applebees https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/applebees stores json auntie annes https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/auntie annes stores json blaze pizza https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/blaze pizza stores json bojangles https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/bojangles stores json carrabas https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/outback steakhouse stores json charleys https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/charleys stores json cheba hut https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/cheba hut stores json checkers and rallys https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/checkers and rallys stores json chicken salad chick https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/chicken salad chick stores json churchs chicken https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/churchs chicken stores json cicis https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/cicis stores json cracker barrel https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/cracker barrel stores json daves hot chicken https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/daves hot chicken stores json del taco https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/del taco stores json dennys https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/dennys stores json el pollo loco https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/el pollo loco stores json first watch https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/first watch stores json golden corral https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/golden corral stores json hardees https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/hardees stores json hooters https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/hooters stores json ihop https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/ihop stores json jack in the box https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/jack in the box stores json jasons deli https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/jasons deli stores json johnny rockets https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/johnny rockets stores json krispy kreme https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/krispy kreme stores json mad greens https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/mad greens stores json mission bbq https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/mission bbq stores json mod pizza https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/mod pizza stores json nekter juice bar https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/nekter juice bar stores json noodles and company https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/noodles and company stores json north italia https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/north italia stores json outback steakhouse https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/outback steakhouse stores json papa murphys https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/papa murphys stores json peter piper pizza https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/peter piper pizza stores json pf changs https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/pf changs stores json potbelly https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/potbelly stores json qdoba https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/qdoba stores json red robin https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/red robin stores json ruby tuesday https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/ruby tuesday stores json saladworks https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/saladworks stores json sbarro https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/sbarro stores json shake shack https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/shake shack stores json sharkys https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/sharkys stores json shipley donuts https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/shipley donuts stores json smashburger https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/smashburger stores json smoothie king https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/smoothie king stores json steak n shake https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/steak n shake stores json sweetgreen https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/sweetgreen stores json taco johns https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/taco johns stores json tgi fridays https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/tgi fridays stores json the cheesecake factory https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/the cheesecake factory stores json tropical smoothie cafe https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/tropical smoothie cafe stores json wetzels pretzels https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/wetzels pretzels stores json zaxbys https //apiassets ams3 cdn digitaloceanspaces com/serpwow/stores/zaxbys stores json