delivery 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 48c22b9804a015f984b5895c9db5ec4dc33439bd
4
+ data.tar.gz: c9338153fe7e7c6bcd8ce2250a51d7e1d6687d48
5
+ SHA512:
6
+ metadata.gz: 7a1bf11d93ee2af759030bbe06f59ec7d07ca49ce3bd24f79398cd039fb38a5821ef44066b71f4baf7bd48c52fac22017cb81b3297a4ad70ced48fb265568f09
7
+ data.tar.gz: 94ec00bda7253a1c1137241027e3d76ba9df6d45714d9ff92f2afc6c6424a346d7f8f89817bb122da4172ff5b69fe35d4d8db47117e7e9005037128acd9d8c8b
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in delivery.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 TODO: Write your name
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # Delivery
2
+
3
+ A Ruby interface to the Delivery.com API
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'delivery'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install delivery
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ require "bundler/gem_tasks"
2
+
3
+ require 'rake/testtask'
4
+
5
+ Rake::TestTask.new do |t|
6
+ t.libs << 'test'
7
+ t.pattern = "test/test_**.rb"
8
+ end
9
+
10
+ task default: [:test]
data/delivery.gemspec ADDED
@@ -0,0 +1,28 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'delivery/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "delivery"
8
+ spec.version = Delivery::VERSION
9
+ spec.authors = ["James A. Anderson"]
10
+ spec.email = ["me@jamesaanderson.com"]
11
+ spec.description = %q{A Ruby interface to the Delivery.com API}
12
+ spec.summary = %q{A Ruby interface to the Delivery.com API}
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.3"
22
+ spec.add_development_dependency "rake"
23
+ spec.add_development_dependency 'minitest', '~> 5.3.2'
24
+ spec.add_development_dependency 'webmock', '~> 1.17.4'
25
+
26
+ spec.add_dependency 'httparty', '~> 0.13.1'
27
+ spec.add_dependency 'hashie', '~> 2.1.0'
28
+ end
@@ -0,0 +1,24 @@
1
+ require 'httparty'
2
+ require 'hashie'
3
+ require 'json'
4
+
5
+ module Delivery
6
+ class Client
7
+ include HTTParty
8
+
9
+ attr_accessor :client_id, :base_uri
10
+
11
+ def initialize(client_id, options={})
12
+ @client_id = client_id
13
+
14
+ options[:base_uri] ||= 'https://api.delivery.com'
15
+ @base_uri = options[:base_uri]
16
+ end
17
+
18
+ def search address
19
+ options = {query: {client_id: client_id, address: address}}
20
+ r = self.class.get("#{base_uri}/merchant/search/delivery", options)
21
+ Hashie::Mash.new(JSON.parse(r.body))
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,3 @@
1
+ module Delivery
2
+ VERSION = "0.1.1"
3
+ end
data/lib/delivery.rb ADDED
@@ -0,0 +1,2 @@
1
+ require "delivery/version"
2
+ require 'delivery/client'
@@ -0,0 +1,2 @@
1
+
2
+ {"search_address":{"street":"199 WATER ST","zip_code":"10038","state":"NY","city":"NEW YORK","latitude":40.706888574096,"longitude":-74.004271030426},"message":[],"promoted_merchants_id":["752","27484","66004","67109"],"merchants":[{"id":"752","summary":{"name":"Underground Pizza","cuisines":["Pizza"],"phone":"555-555-5555","description":"Not your typical New York style pizza, but the pies are plentiful and with lots of fresh toppings. Stop here for a quick slice during the busy lunch hour.","overall_rating":87,"num_ratings":15,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"underground-pizza","complete":"https:\/\/staging.delivery.com\/nyc\/underground-pizza"},"activation_date":"2000-11-01"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 10:45:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.31079338317247,"street":"3 HANOVER SQ","city":"NEW YORK","state":"NY","zip":"10004","longitude":-74.009519,"latitude":40.70479,"landmark":""}},{"id":"973","summary":{"name":"Empire Szechuan Village","cuisines":["Chinese","Japanese"],"phone":"555-555-5555","description":"Empire Szechuan Village has established itself as a cornerstone of the Greenwich Village community since 1985 by providing excellent service and great food. They feature selections in both Chinese and Japanese cuisine and also have a vegetarian section on the menu.","overall_rating":75,"num_ratings":426,"type":"R","type_label":"Restaurant","notes":["If you require eating utensils, please indicate so in the special instructions field located in the checkout screen."],"url":{"geo_tag":"nyc","short_tag":"empire-szechuan-village","complete":"https:\/\/staging.delivery.com\/nyc\/empire-szechuan-village"},"activation_date":"2001-07-29"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 23:30:00","minimum":10,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":2.0106184111173,"street":"173 7TH AVE S","city":"NEW YORK","state":"NY","zip":"10014","longitude":-74.001465,"latitude":40.735909,"landmark":"Between 18th & 19th Street"}},{"id":"1071","summary":{"name":"Salaam Bombay","cuisines":["Indian","Vegetarian"],"phone":"555-555-5555","description":"Prepared fresh to order, this Indian restaurant has a large menu of refined Indian cuisine","overall_rating":73,"num_ratings":110,"type":"R","type_label":"Restaurant","notes":["No deliveries north of Houston Street. Please allow up to 45 minutes for delivery."],"url":{"geo_tag":"nyc","short_tag":"salaam-bombay","complete":"https:\/\/staging.delivery.com\/nyc\/salaam-bombay"},"activation_date":"2001-10-11"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 22:15:00","minimum":15,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.77980749071635,"street":"319 GREENWICH ST","city":"NEW YORK","state":"NY","zip":"10013","longitude":-74.010574,"latitude":40.717113,"landmark":"Between Duane Street to Reade Street"}},{"id":"1280","summary":{"name":"Lane Deli","cuisines":["American","Deli","Sandwiches"],"phone":"555-555-5555","description":"","overall_rating":79,"num_ratings":55,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"lane-cafe","complete":"https:\/\/staging.delivery.com\/nyc\/lane-cafe"},"activation_date":"2002-06-27"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 06:00:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.19145092367913,"street":"75 MAIDEN LN","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.007719,"latitude":40.707808,"landmark":"Btwn Liberty & William St."}},{"id":"1511","summary":{"name":"Tribeca Pizzeria","cuisines":["Pizza","Italian","Wings"],"phone":"555-555-5555","description":"An Italian pizzeria and eatery that is synonymous with only New York. The selection alone will make you consider all your options","overall_rating":78,"num_ratings":131,"type":"R","type_label":"Restaurant","notes":["Now Offering Gluten Free Pizza!"],"url":{"geo_tag":"nyc","short_tag":"tribeca-pizzeria","complete":"https:\/\/staging.delivery.com\/nyc\/tribeca-pizzeria"},"activation_date":"2003-08-21"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":["20% Off for First Time Users"],"last_or_next_order_time":"2014-04-10 21:45:00","minimum":7,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.96110894325339,"street":"378 GREENWICH ST","city":"NEW YORK","state":"NY","zip":"10013","longitude":-74.010292,"latitude":40.720028,"landmark":"at N. Moore Street"}},{"id":"1579","summary":{"name":"Katz's Delicatessen Restaurant","cuisines":["Deli","Sandwiches"],"phone":"555-555-5555","description":"","overall_rating":88,"num_ratings":12,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"katzs-delicatessen-restaurant","complete":"https:\/\/staging.delivery.com\/nyc\/katzs-delicatessen-restaurant"},"activation_date":"2003-06-25"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 10:00:00","minimum":75,"is_open":false,"delivery_charge":20,"delivery_percent":0},"location":{"distance":1.3877759007776,"street":"205 E HOUSTON ST","city":"NEW YORK","state":"NY","zip":"10002","longitude":-73.987343,"latitude":40.72234,"landmark":"East Houston St. & Ludlow St."}},{"id":"2712","summary":{"name":"Fine & Schapiro","cuisines":["Deli","Sandwiches","Kosher"],"phone":"555-555-5555","description":"For over 80 years, Fine & Schapiro have served traditional Jewish food. You can order anything from a quick deli sandwich to a full Kosher meal at this gourmet eatery.","overall_rating":80,"num_ratings":111,"type":"R","type_label":"Restaurant","notes":["Kosher Food Under Rabbinical Supervision of Israel Mayer Steinberg"],"url":{"geo_tag":"nyc","short_tag":"fine-schapiro-w-72nd-st","complete":"https:\/\/staging.delivery.com\/nyc\/fine-schapiro-w-72nd-st"},"activation_date":"2004-08-13"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":["10% Off for First Time Users"],"last_or_next_order_time":"2014-04-11 10:30:00","minimum":50,"is_open":false,"delivery_charge":15,"delivery_percent":0},"location":{"distance":5.0619749270375,"street":"138 W 72ND ST","city":"NEW YORK","state":"NY","zip":"10023","longitude":-73.980003,"latitude":40.777802,"landmark":"Between Columbus and Broadway"}},{"id":"2988","summary":{"name":"City Cafe","cuisines":["Pizza","Cafe","American"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"nyc","short_tag":"city-cafe","complete":"https:\/\/staging.delivery.com\/nyc\/city-cafe"},"activation_date":"2005-06-01"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":1425,"specials":["5% Off All Orders Over $75","7% Off All Orders Over $100"],"last_or_next_order_time":"2014-04-11 21:45:00","minimum":50,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":3.5122455444446,"street":"35 W 43rd St","city":"New York","state":"NY","zip":"10036","longitude":-73.981499,"latitude":40.7547,"landmark":"Between 5th & 6th Ave"}},{"id":"3078","summary":{"name":"Tribeca Pizzeria Catering","cuisines":["Italian","Pizza"],"phone":"555-555-5555","description":"Tribeca Pizzeria Catering is an extension of the popular Tribeca pizzeria. Dishing out Italian classics for the masses and neighbors alike.","overall_rating":0,"num_ratings":1,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"nyc","short_tag":"tribeca-pizzeria-catering","complete":"https:\/\/staging.delivery.com\/nyc\/tribeca-pizzeria-catering"},"activation_date":"2007-12-11"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":165,"specials":null,"last_or_next_order_time":"2014-04-11 11:00:00","minimum":100,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.96110894325339,"street":"378 GREENWICH ST","city":"NEW YORK","state":"NY","zip":"10013","longitude":-74.010292,"latitude":40.720028,"landmark":"at N. Moore Street"}},{"id":"3125","summary":{"name":"Easy Gourmet Catering","cuisines":["Italian"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"nyc","short_tag":"easy-gourmet-catering","complete":"https:\/\/staging.delivery.com\/nyc\/easy-gourmet-catering"},"activation_date":"2005-08-18"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":4305,"specials":null,"last_or_next_order_time":"2014-04-14 07:00:00","minimum":175,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":3.6807476017909,"street":"707 8th Ave","city":"New York","state":"NY","zip":"10036","longitude":-73.988792,"latitude":40.75885,"landmark":"8th and 46th Street"}},{"id":"3145","summary":{"name":"Eileen's Cheesecake","cuisines":["Desserts"],"phone":"555-555-5555","description":"A picture may be worth a thousand words but it can't compare to the creamy taste of Eileen's delectable cheesecakes. Ordering is easy, fast, and the memory of these cakes will last. Send the perfect treat to a loved one or yourself today!","overall_rating":0,"num_ratings":1,"type":"C","type_label":"Caterer","notes":["$1.00 extra to write on cheesecakes"],"url":{"geo_tag":"nyc","short_tag":"eileens-cheesecake","complete":"https:\/\/staging.delivery.com\/nyc\/eileens-cheesecake"},"activation_date":"2005-08-08"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":2865,"specials":null,"last_or_next_order_time":"2014-04-14 11:00:00","minimum":25,"is_open":false,"delivery_charge":15,"delivery_percent":0},"location":{"distance":1.0818833775225,"street":"17 Cleveland Pl","city":"New York","state":"NY","zip":"10012","longitude":-73.9972,"latitude":40.7216,"landmark":"Corner of Kenamre & Centre Opposite Lafayette & Spring"}},{"id":"3171","summary":{"name":"Sun Cafe","cuisines":["Japanese"],"phone":"555-555-5555","description":"A Japanese cafe ideal for a great lunch with huge rolls at a great price. With many hot food options as well, everyone can find something to enjoy here.","overall_rating":81,"num_ratings":198,"type":"R","type_label":"Restaurant","notes":["If using a credit card to pay for your order, please indicate your tip in the special instructions."],"url":{"geo_tag":"nyc","short_tag":"sun-cafe","complete":"https:\/\/staging.delivery.com\/nyc\/sun-cafe"},"activation_date":"2005-09-01"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 21:45:00","minimum":10,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.56778822212716,"street":"67 Reade St","city":"New York","state":"NY","zip":"10007","longitude":-74.006676,"latitude":40.714901,"landmark":"Church & Broadway"}},{"id":"3213","summary":{"name":"Gramercy Bagels Catering","cuisines":["Sandwiches","Bagelry","Deli"],"phone":"555-555-5555","description":"","overall_rating":85,"num_ratings":4,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"nyc","short_tag":"gramercy-bagels-catering","complete":"https:\/\/staging.delivery.com\/nyc\/gramercy-bagels-catering"},"activation_date":"2005-10-06"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":105,"specials":null,"last_or_next_order_time":"2014-04-11 06:00:00","minimum":100,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":2.3415860892499,"street":"246 3rd Ave","city":"New York","state":"NY","zip":"10010","longitude":-73.984444,"latitude":40.737263,"landmark":"Between 20th & 21st."}},{"id":"3249","summary":{"name":"Biddy Early's Pub & Restaurant","cuisines":["American","Burgers","Sandwiches"],"phone":"555-555-5555","description":"A two-floor Irish bar specializing in the Irish classics. A menu chock full of reasonable prices and bartenders exuding Irish charm, its a place where the people and food are happy.","overall_rating":70,"num_ratings":107,"type":"R","type_label":"Restaurant","notes":["On cash orders, no bills larger than $20 please!"],"url":{"geo_tag":"nyc","short_tag":"biddy-earlys-pub-restaurant","complete":"https:\/\/staging.delivery.com\/nyc\/biddy-earlys-pub-restaurant"},"activation_date":"2005-11-04"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":["10% Off All Orders Over $35","25% Off for First Time Users"],"last_or_next_order_time":"2014-04-10 22:45:00","minimum":10,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.57298478854947,"street":"57 MURRAY ST","city":"NEW YORK","state":"NY","zip":"10007","longitude":-74.009457,"latitude":40.71419,"landmark":"btw Church & Chambers St."}},{"id":"3875","summary":{"name":"Subway","cuisines":["Sandwiches"],"phone":"555-555-5555","description":"This worldwide sub chain has a menu full of options that focus on nutrition and diets. Their famous $5 foot longs have gained them much notoriety","overall_rating":72,"num_ratings":47,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"subway-maiden-ln","complete":"https:\/\/staging.delivery.com\/nyc\/subway-maiden-ln"},"activation_date":"2006-05-23"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 21:45:00","minimum":7,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.29440637593053,"street":"21 Maiden Ln","city":"New York","state":"NY","zip":"10038","longitude":-74.008904,"latitude":40.709301,"landmark":"Broadway & Nassau"}},{"id":"3893","summary":{"name":"Papa John's Pizza","cuisines":["Pizza","Wings","Desserts"],"phone":"555-555-5555","description":"The nationwide pizza chain that serves up pizza with all kinds of healthy and meaty toppings.","overall_rating":79,"num_ratings":60,"type":"R","type_label":"Restaurant","notes":["In order to process your credit card, Papa John's Pizza requires that you provide your CVV code printed on the back of your credit card. The restaurant will be contacting you after you place your order to obtain this information."],"url":{"geo_tag":"nyc","short_tag":"papa-johns-pizza-10038","complete":"https:\/\/staging.delivery.com\/nyc\/papa-johns-pizza-10038"},"activation_date":"2006-06-23"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":0,"specials":null,"last_or_next_order_time":"2014-04-11 01:30:00","minimum":15,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.29397670670123,"street":"21 Maiden Ln","city":"New York","state":"NY","zip":"10038","longitude":-74.008904,"latitude":40.70929,"landmark":"Broadway & Nassau"}},{"id":"4456","summary":{"name":"Brasserie Les Halles","cuisines":["French"],"phone":"555-555-5555","description":"The famous French brasserie where Chef Anthony Bourdain started it all. The epitome of a French steakhouse that boasts all kinds of awards and accolades.","overall_rating":68,"num_ratings":9,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"brasserie-les-halles","complete":"https:\/\/staging.delivery.com\/nyc\/brasserie-les-halles"},"activation_date":"2010-03-31"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 22:15:00","minimum":18,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.32595934854553,"street":"15 JOHN ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.008923,"latitude":40.710022,"landmark":"Between Broadway & Nassau"}},{"id":"9248","summary":{"name":"Texas Rotisserie Catering","cuisines":["Barbeque","American"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":1,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"nyc","short_tag":"texas-rotisserie-catering","complete":"https:\/\/staging.delivery.com\/nyc\/texas-rotisserie-catering"},"activation_date":"2012-01-30"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":165,"specials":null,"last_or_next_order_time":"2014-04-11 10:00:00","minimum":30,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.19823758218223,"street":"94 Fulton St","city":"New York","state":"NY","zip":"10038","longitude":-74.006248,"latitude":40.709335,"landmark":"Between William & Gold"}},{"id":"9390","summary":{"name":"Trader Express Deli","cuisines":["Deli","Sandwiches"],"phone":"555-555-5555","description":"A lunch counter serving up different ethnic entrees and sandwiches. Large drink selection and limited seating","overall_rating":75,"num_ratings":56,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"trader-express-deli","complete":"https:\/\/staging.delivery.com\/nyc\/trader-express-deli"},"activation_date":"2006-10-12"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 06:00:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.43225472639115,"street":"22 Beaver St","city":"New York","state":"NY","zip":"10004","longitude":-74.01208,"latitude":40.704866,"landmark":"Between Broad & New St."}},{"id":"17118","summary":{"name":"Kool Bloo","cuisines":["Burgers","Sandwiches"],"phone":"555-555-5555","description":"Offering healthy and non-healthy options 24\/7, this eatery features typical American fare. No matter what you are in the mood for, Kool Bloo has something for you.","overall_rating":73,"num_ratings":135,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"kool-bloo","complete":"https:\/\/staging.delivery.com\/nyc\/kool-bloo"},"activation_date":"2007-01-17"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":["10% Off All Orders Over $50"],"last_or_next_order_time":"2014-04-11 03:15:00","minimum":35,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":1.1728083773044,"street":"117 AVENUE OF THE AMERICAS","city":"NEW YORK","state":"NY","zip":"10013","longitude":-74.004856,"latitude":40.723856,"landmark":"Watts"}},{"id":"25826","summary":{"name":"Masamoto Japanese","cuisines":["Japanese"],"phone":"555-555-5555","description":"This Japanese restaurant offers an extensive menu, including hibachi, teriyaki, and dozens of sushi appetizers and entrees.","overall_rating":87,"num_ratings":190,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"masamoto-japanese","complete":"https:\/\/staging.delivery.com\/nyc\/masamoto-japanese"},"activation_date":"2007-03-06"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":0,"specials":["10% Off All Orders Over $35"],"last_or_next_order_time":"2014-04-10 22:45:00","minimum":10,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":1.605216762386,"street":"88 W 3RD ST","city":"NEW YORK","state":"NY","zip":"10012","longitude":-73.999102,"latitude":40.729787,"landmark":"Between Sullivan & Thompson St."}},{"id":"27484","summary":{"name":"Village Farm & Grocery (open 24\/7)","cuisines":null,"phone":"555-555-5555","description":"Please allow Three HOURS for delivery for any orders ABOVE 35th or BELOW BROOME Street. For orders in Brooklyn, please allow up to Four (4) HOURS for delivery. CREDIT CARD MUST BE PRESENT AT THE TIME OF DELIVERY. Please note that if you are not available to receive the order, Village Farm will charge a fee to your Credit Card no greater than 15% of the total amount.","overall_rating":82,"num_ratings":370,"type":"I","type_label":"Grocery Store","notes":["Village Farm and Grocery is a convenient grocery store, open 24\/7, that delivers produce, sandwiches, ice creams, beverages, and household items."],"url":{"geo_tag":"nyc","short_tag":"village-farm-grocery-open-24-7-","complete":"https:\/\/staging.delivery.com\/nyc\/village-farm-grocery-open-24-7-"},"activation_date":"2007-04-04"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":0,"specials":["20% Off for First Time Users"],"last_or_next_order_time":"2014-04-17 00:00:00","minimum":25,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":1.7949353189412,"street":"146 2ND AVE","city":"NEW YORK","state":"NY","zip":"10003","longitude":-73.986984,"latitude":40.729319,"landmark":"Corner of 9th St."}},{"id":"27957","summary":{"name":"Lily's","cuisines":["Chinese","Japanese"],"phone":"555-555-5555","description":"A small restaurant that serves both Chinese and Japanese food.","overall_rating":73,"num_ratings":121,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"lilys","complete":"https:\/\/staging.delivery.com\/nyc\/lilys"},"activation_date":"2007-04-09"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":0,"specials":["20% Off All Orders Over $40"],"last_or_next_order_time":"2014-04-10 22:45:00","minimum":5,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.50740544323696,"street":"31 OLIVER ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-73.998079,"latitude":40.712536,"landmark":"Between Madison & Henry St."}},{"id":"29168","summary":{"name":"Corbet & Conley","cuisines":["Cafe","American","Italian","Sandwiches"],"phone":"555-555-5555","description":"A gourmet eatery that caters to busy New Yorkers all over the city. They have a large selection of fresh daily soups, salads, and sandwiches to accompany many impressive breakfast options.","overall_rating":69,"num_ratings":10,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"corbet-conley-cliff-st","complete":"https:\/\/staging.delivery.com\/nyc\/corbet-conley-cliff-st"},"activation_date":"2007-08-28"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":0,"specials":["25% Off for First Time Users"],"last_or_next_order_time":"2014-04-11 06:30:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.11224986060205,"street":"15 CLIFF ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.005497,"latitude":40.708221,"landmark":"Between John Street and Fulton Street"}},{"id":"29729","summary":{"name":"Flower You","cuisines":null,"phone":"555-555-5555","description":"Please Note: All orders should be placed 2hrs in advanced. Example if you would like a delivery for 4pm your order should be placed at 2pm.","overall_rating":0,"num_ratings":0,"type":"F","type_label":"Florist","notes":null,"url":{"geo_tag":"nyc","short_tag":"flower-you","complete":"https:\/\/staging.delivery.com\/nyc\/flower-you"},"activation_date":"2007-06-25"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":105,"specials":null,"last_or_next_order_time":"2014-04-11 09:00:00","minimum":29.95,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":2.5693528775283,"street":"122 E 25TH ST","city":"NEW YORK","state":"NY","zip":"10010","longitude":-73.984409,"latitude":40.74089,"landmark":"Park and Lex"}},{"id":"29854","summary":{"name":"Shinju Sushi","cuisines":["Japanese"],"phone":"555-555-5555","description":"","overall_rating":77,"num_ratings":100,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"shinju-sushi","complete":"https:\/\/staging.delivery.com\/nyc\/shinju-sushi"},"activation_date":"2007-05-30"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 22:30:00","minimum":10,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.18747881338169,"street":"164 PEARL ST","city":"NEW YORK","state":"NY","zip":"10005","longitude":-74.007518,"latitude":40.705747,"landmark":"Wall Street"}},{"id":"29982","summary":{"name":"Olympic Pita","cuisines":["Glatt Kosher","Kosher","OU Kosher","Middle Eastern"],"phone":"555-555-5555","description":"Olympic Pita is a Midtown West kosher staple. The restaurant serves many Israeli and Middle Eastern dishes as well as sushi platters under strict kosher supervision.","overall_rating":72,"num_ratings":18,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"olympic-pita","complete":"https:\/\/staging.delivery.com\/nyc\/olympic-pita"},"activation_date":"2007-05-25"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":0,"specials":null,"last_or_next_order_time":"2014-04-10 22:45:00","minimum":12,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":3.2487773271881,"street":"58 W 38TH ST","city":"NEW YORK","state":"NY","zip":"10018","longitude":-73.983808,"latitude":40.751275,"landmark":"Between 5th & 6th Ave."}},{"id":"30435","summary":{"name":"The Grotto Pizzeria & Ristorante","cuisines":["Italian"],"phone":"555-555-5555","description":"","overall_rating":77,"num_ratings":74,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"the-grotto-pizzeria-ristorante","complete":"https:\/\/staging.delivery.com\/nyc\/the-grotto-pizzeria-ristorante"},"activation_date":"2007-07-02"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":0,"specials":null,"last_or_next_order_time":"2014-04-11 10:30:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.45635969320057,"street":"69 NEW ST","city":"NEW YORK","state":"NY","zip":"10004","longitude":-74.012697,"latitude":40.705209,"landmark":"Exchange & Beaver"}},{"id":"30782","summary":{"name":"East River Liquors","cuisines":null,"phone":"555-555-5555","description":"IMPORTANT - PLEASE NOTE: Credit card must be presented at the time of delivery so the restaurant can obtain an\r\nimprint and signature. They may also require proper identification that matches the credit card holder.","overall_rating":94,"num_ratings":41,"type":"W","type_label":"Wine and Liquor Store","notes":null,"url":{"geo_tag":"nyc","short_tag":"east-river-liquors","complete":"https:\/\/staging.delivery.com\/nyc\/east-river-liquors"},"activation_date":"2007-09-20"},"ordering":{"delivery_processes_card":false,"payment_types":["credit","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 22:45:00","minimum":50,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":4.9522878239545,"street":"1364 YORK AVE","city":"NEW YORK","state":"NY","zip":"10021","longitude":-73.953289,"latitude":40.767258,"landmark":"Between 72nd & 73rd St."}},{"id":"30857","summary":{"name":"China Red Gourmet","cuisines":["Chinese"],"phone":"555-555-5555","description":"Known for their ultra-fast delivery and not your average menu, New China Red is definitely as place to check out.","overall_rating":72,"num_ratings":69,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"new-china-red","complete":"https:\/\/staging.delivery.com\/nyc\/new-china-red"},"activation_date":"2007-09-20"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 21:45:00","minimum":7,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.48389385730502,"street":"118 CHAMBERS ST","city":"NEW YORK","state":"NY","zip":"10007","longitude":-74.007283,"latitude":40.713509,"landmark":"Between Church & Hudson St."}},{"id":"30858","summary":{"name":"Sushi a la Kawa","cuisines":["Japanese"],"phone":"555-555-5555","description":"A modern sushi eatery with tons of fresh fish. A popular lunch special draws crowds and the extensive menu of Japanese cuisine always provides new options.","overall_rating":76,"num_ratings":47,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"sushi-a-la-kawa","complete":"https:\/\/staging.delivery.com\/nyc\/sushi-a-la-kawa"},"activation_date":"2007-09-05"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":0,"specials":null,"last_or_next_order_time":"2014-04-10 22:15:00","minimum":15,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.3145339777936,"street":"18 MAIDEN LN","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.00933,"latitude":40.709341,"landmark":"Liberty Place & Nassau St."}},{"id":"35814","summary":{"name":"Matryoshka (at Spa 88)","cuisines":["Russian"],"phone":"555-555-5555","description":"A Russian bathhouse\/restaurant that specializes in Russian classics. Get rest, relaxation and a great meal at this unique eating establishment","overall_rating":88,"num_ratings":2,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"spa-88-restaurant","complete":"https:\/\/staging.delivery.com\/nyc\/spa-88-restaurant"},"activation_date":"2007-12-18"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 22:45:00","minimum":30,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.18424702358684,"street":"88 FULTON ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.006004,"latitude":40.709209,"landmark":"Between Gold & Williams Streets"}},{"id":"35821","summary":{"name":"Shawnee's China Soul Catering","cuisines":["Soul Food","Chinese","Asian"],"phone":"555-555-5555","description":"","overall_rating":100,"num_ratings":2,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"nyc","short_tag":"cater-by-shawnee","complete":"https:\/\/staging.delivery.com\/nyc\/cater-by-shawnee"},"activation_date":"2007-12-14"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":1425,"specials":["10% Off for First Time Users"],"last_or_next_order_time":"2014-04-11 21:45:00","minimum":75,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":9.1332693990121,"street":"423 W 154TH ST","city":"NEW YORK","state":"NY","zip":"10032","longitude":-73.94258,"latitude":40.830535,"landmark":"Between Amsterdam & St. Nicholas Aves"}},{"id":"36414","summary":{"name":"BBQ Pit (brought to you by Kool Bloo)","cuisines":["Barbeque","Wings","Burgers"],"phone":"555-555-5555","description":"","overall_rating":67,"num_ratings":37,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"bbq-pit-avenue-of-the-americas","complete":"https:\/\/staging.delivery.com\/nyc\/bbq-pit-avenue-of-the-americas"},"activation_date":"2008-01-31"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":["10% Off All Orders Over $50"],"last_or_next_order_time":"2014-04-11 03:15:00","minimum":35,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":1.1728083773044,"street":"117 AVENUE OF THE AMERICAS","city":"NEW YORK","state":"NY","zip":"10013","longitude":-74.004856,"latitude":40.723856,"landmark":"Between Broome & Watts Streets"}},{"id":"38350","summary":{"name":"Lisa's Pizza & Restaurant","cuisines":["Italian","Pizza"],"phone":"555-555-5555","description":"A classic neighborhood pizzeria. They serve a large selection of pizza, subs, and Italian entrees for those looking for a quick taste of Italy.","overall_rating":79,"num_ratings":26,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"lisas-pizza-restaurant","complete":"https:\/\/staging.delivery.com\/nyc\/lisas-pizza-restaurant"},"activation_date":"2010-03-26"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":["10% Off for First Time Users"],"last_or_next_order_time":"2014-04-11 10:45:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.15608796964573,"street":"76 FULTON ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.005371,"latitude":40.708988,"landmark":"Gold Street & Cliff St."}},{"id":"40324","summary":{"name":"Flowers by Richard","cuisines":null,"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":1,"type":"F","type_label":"Florist","notes":null,"url":{"geo_tag":"nyc","short_tag":"flowers-by-richard","complete":"https:\/\/staging.delivery.com\/nyc\/flowers-by-richard"},"activation_date":"2008-04-02"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 13:30:00","minimum":30,"is_open":false,"delivery_charge":15,"delivery_percent":0},"location":{"distance":4.1094709569805,"street":"316 W 53RD ST","city":"NEW YORK","state":"NY","zip":"10019","longitude":-73.986193,"latitude":40.764763,"landmark":"8th & 9th Ave."}},{"id":"51107","summary":{"name":"Sandwich House","cuisines":["Italian","Sandwiches"],"phone":"555-555-5555","description":"A restaurant specializing in pasta, soups, salads and sandwiches as the title indicates. They concentrate mostly on Italian offerings but the ingredients are quality and so are the people who put your food together","overall_rating":82,"num_ratings":41,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"sandwich-house","complete":"https:\/\/staging.delivery.com\/nyc\/sandwich-house"},"activation_date":"2008-07-08"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 10:30:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.33296506359605,"street":"17 Ann St","city":"New York","state":"NY","zip":"10038","longitude":-74.007854,"latitude":40.710869,"landmark":"Between Broadway & Park Row"}},{"id":"52951","summary":{"name":"China Chalet","cuisines":["Chinese"],"phone":"555-555-5555","description":"A traditional Chinese sit-down restaurant with a large following due to the numerous Zagat stickers in the front window. Classic and quality, can't beat it.","overall_rating":79,"num_ratings":26,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"china-chalet","complete":"https:\/\/staging.delivery.com\/nyc\/china-chalet"},"activation_date":"2008-07-23"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":15,"specials":null,"last_or_next_order_time":"2014-04-11 11:00:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.461518145779,"street":"47 BROADWAY","city":"NEW YORK","state":"NY","zip":"10006","longitude":-74.01305,"latitude":40.70632,"landmark":"Exchange Place and Morris Street"}},{"id":"52960","summary":{"name":"Stage Door Deli","cuisines":["American","Deli","Sandwiches"],"phone":"555-555-5555","description":"The normal soup, salad, sandwich and lots of deli meats eatery, done to satisfy any New Yorker.","overall_rating":83,"num_ratings":57,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"stage-door-deli","complete":"https:\/\/staging.delivery.com\/nyc\/stage-door-deli"},"activation_date":"2008-09-03"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 04:00:00","minimum":6,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.45621446530281,"street":"26 VESEY ST","city":"NEW YORK","state":"NY","zip":"10007","longitude":-74.009747,"latitude":40.712023,"landmark":"Between Broadway & Church Streets"}},{"id":"53890","summary":{"name":"Boonrasa Thai & Chinese","cuisines":["Thai","Chinese"],"phone":"555-555-5555","description":"","overall_rating":74,"num_ratings":49,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"bunrasa-thai-chinese","complete":"https:\/\/staging.delivery.com\/nyc\/bunrasa-thai-chinese"},"activation_date":"2008-07-15"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 10:30:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.52837190984347,"street":"109 WASHINGTON ST","city":"NEW YORK","state":"NY","zip":"10006","longitude":-74.014105,"latitude":40.708592,"landmark":"Carlisle & Rector St."}},{"id":"56964","summary":{"name":"Wine at 79","cuisines":null,"phone":"555-555-5555","description":"","overall_rating":90,"num_ratings":26,"type":"W","type_label":"Wine and Liquor Store","notes":null,"url":{"geo_tag":"nyc","short_tag":"wine-at-79","complete":"https:\/\/staging.delivery.com\/nyc\/wine-at-79"},"activation_date":"2008-12-26"},"ordering":{"delivery_processes_card":false,"payment_types":["credit","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 22:30:00","minimum":50,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":5.2489442540922,"street":"1490 YORK AVE","city":"NEW YORK","state":"NY","zip":"10075","longitude":-73.950633,"latitude":40.771067,"landmark":"78th & 79th"}},{"id":"57635","summary":{"name":"Koodo Sushi","cuisines":["Japanese","Chinese"],"phone":"555-555-5555","description":"Providing the Wall Street area with a huge selection of sushi and Japanese cuisine for over a decade. Great spot.","overall_rating":75,"num_ratings":44,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"koodo-sushi","complete":"https:\/\/staging.delivery.com\/nyc\/koodo-sushi"},"activation_date":"2008-12-29"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 21:45:00","minimum":10,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.29844251693084,"street":"55 LIBERTY ST","city":"NEW YORK","state":"NY","zip":"10005","longitude":-74.009385,"latitude":40.708793,"landmark":"Maiden Lane and Liberty"}},{"id":"57881","summary":{"name":"Palermo Pizza","cuisines":["Italian","Pizza"],"phone":"555-555-5555","description":"An authentic New York pizza counter serving up Italian pasta and entree classics.","overall_rating":75,"num_ratings":4,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"palermo-pizza","complete":"https:\/\/staging.delivery.com\/nyc\/palermo-pizza"},"activation_date":"2008-12-23"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 09:30:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.57746718430497,"street":"61 MURRAY ST","city":"NEW YORK","state":"NY","zip":"10007","longitude":-74.009647,"latitude":40.714185,"landmark":"Corner of W. Broadway"}},{"id":"57970","summary":{"name":"Palermo Pizza Catering","cuisines":["Italian"],"phone":"555-555-5555","description":"An authentic New York pizza counter serving up Italian pasta and entree classics.","overall_rating":0,"num_ratings":0,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"nyc","short_tag":"palermo-pizza-catering","complete":"https:\/\/staging.delivery.com\/nyc\/palermo-pizza-catering"},"activation_date":"2008-12-23"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":165,"specials":null,"last_or_next_order_time":"2014-04-11 10:00:00","minimum":8,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.57746718430497,"street":"61 MURRAY ST","city":"NEW YORK","state":"NY","zip":"10007","longitude":-74.009647,"latitude":40.714185,"landmark":"Corner of W. Broadway"}},{"id":"58100","summary":{"name":"Kool Bloo Catering","cuisines":["American","Burgers","Wings"],"phone":"555-555-5555","description":"","overall_rating":32,"num_ratings":2,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"nyc","short_tag":"kool-bloo-catering","complete":"https:\/\/staging.delivery.com\/nyc\/kool-bloo-catering"},"activation_date":"2009-01-23"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":165,"specials":null,"last_or_next_order_time":"2014-04-11 00:45:00","minimum":25,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":1.1728083773044,"street":"117 AVENUE OF THE AMERICAS","city":"NEW YORK","state":"NY","zip":"10013","longitude":-74.004856,"latitude":40.723856,"landmark":"Watts"}},{"id":"58193","summary":{"name":"Kool Bloo","cuisines":["Burgers","Sandwiches"],"phone":"555-555-5555","description":"","overall_rating":67,"num_ratings":94,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"kool-bloo-avenue-a","complete":"https:\/\/staging.delivery.com\/nyc\/kool-bloo-avenue-a"},"activation_date":"2009-01-23"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 02:15:00","minimum":35,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":1.9218170073605,"street":"188 AVENUE A","city":"NEW YORK","state":"NY","zip":"10009","longitude":-73.98156,"latitude":40.728735,"landmark":"Ave. A and 12th Street"}},{"id":"58263","summary":{"name":"Kool Bloo Catering","cuisines":["American","Burgers","Wings"],"phone":"555-555-5555","description":"","overall_rating":82,"num_ratings":3,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"nyc","short_tag":"kool-bloo-catering-avenue-a","complete":"https:\/\/staging.delivery.com\/nyc\/kool-bloo-catering-avenue-a"},"activation_date":"2009-01-26"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":165,"specials":null,"last_or_next_order_time":"2014-04-11 00:45:00","minimum":25,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":1.9218170073605,"street":"188 AVENUE A","city":"NEW YORK","state":"NY","zip":"10009","longitude":-73.98156,"latitude":40.728735,"landmark":"Ave. A and 12th Street"}},{"id":"58298","summary":{"name":"Lilly O'Brien's","cuisines":["Irish","American"],"phone":"555-555-5555","description":"An Irish pub with a contemporary menu and a large beer\/bar selection.","overall_rating":73,"num_ratings":18,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"lilly-obriens","complete":"https:\/\/staging.delivery.com\/nyc\/lilly-obriens"},"activation_date":"2009-02-18"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":["20% Off for First Time Users"],"last_or_next_order_time":"2014-04-10 22:30:00","minimum":15,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.60855877177171,"street":"67 MURRAY ST","city":"NEW YORK","state":"NY","zip":"10007","longitude":-74.010224,"latitude":40.714452,"landmark":"West Broadway and Greenwich"}},{"id":"58445","summary":{"name":"The Ketch","cuisines":["American"],"phone":"555-555-5555","description":"","overall_rating":78,"num_ratings":38,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"the-ketch","complete":"https:\/\/staging.delivery.com\/nyc\/the-ketch"},"activation_date":"2009-03-03"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":["20% Off for First Time Users"],"last_or_next_order_time":"2014-04-11 11:00:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.18346331130184,"street":"70 PINE ST","city":"NEW YORK","state":"NY","zip":"10270","longitude":-74.007698,"latitude":40.70634,"landmark":"Corner of Pine and Pearl"}},{"id":"58508","summary":{"name":"Sophie's Cuban Cuisine","cuisines":["Cuban"],"phone":"555-555-5555","description":"Sophie's is known for their savory plates of traditional Cuban cuisine with daily specials. Everything is prepared from an authentic recipe and there are even some Peruvian specialties.","overall_rating":84,"num_ratings":31,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"sophies-cuban-cuisine-fulton-st","complete":"https:\/\/staging.delivery.com\/nyc\/sophies-cuban-cuisine-fulton-st"},"activation_date":"2009-03-10"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 10:00:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.31976842566332,"street":"141 FULTON ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.008067,"latitude":40.710513,"landmark":"Between Broadway & Nassau"}},{"id":"58955","summary":{"name":"Italian Affair Pizzeria Catering","cuisines":["Italian"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"queens","short_tag":"italian-affair-pizzeria-catering","complete":"https:\/\/staging.delivery.com\/queens\/italian-affair-pizzeria-catering"},"activation_date":"2009-04-29"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":2025,"specials":null,"last_or_next_order_time":"2014-04-12 11:00:00","minimum":100,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":5.6358854533336,"street":"3456 48TH ST","city":"LONG ISLAND CITY","state":"NY","zip":"11101","longitude":-73.914946,"latitude":40.752394,"landmark":"Northern Blvd & 37th Ave"}},{"id":"59572","summary":{"name":"Baluchi's","cuisines":["Indian"],"phone":"555-555-5555","description":"Baluchi's, one of Zagat's top rated Indian restaurants, offers a selection of traditional & regional Indian cuisines that are carefully prepared and presented by experienced chefs. Choose from a wide variety of Indian dishes and Tandoori breads to accompany your meal.","overall_rating":83,"num_ratings":28,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"baluchis-greenwich-st","complete":"https:\/\/staging.delivery.com\/nyc\/baluchis-greenwich-st"},"activation_date":"2009-07-01"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 11:30:00","minimum":15,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.67465428575765,"street":"275 GREENWICH ST","city":"NEW YORK","state":"NY","zip":"10007","longitude":-74.011073,"latitude":40.71518,"landmark":"Between Warren & Murray St."}},{"id":"59662","summary":{"name":"10th Ave Wine & Liquors","cuisines":null,"phone":"555-555-5555","description":"IMPORTANT - PLEASE NOTE: Credit card must be presented at the time of delivery so the merchant can obtain an\r\nimprint and signature. They may also require proper identification that matches the credit card holder.","overall_rating":91,"num_ratings":114,"type":"W","type_label":"Wine and Liquor Store","notes":null,"url":{"geo_tag":"nyc","short_tag":"10th-ave-wine-liquors","complete":"https:\/\/staging.delivery.com\/nyc\/10th-ave-wine-liquors"},"activation_date":"2009-06-26"},"ordering":{"delivery_processes_card":false,"payment_types":["cash","credit"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 23:15:00","minimum":50,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":4.2575867732273,"street":"812 10TH AVE","city":"NEW YORK","state":"NY","zip":"10019","longitude":-73.989719,"latitude":40.767511,"landmark":"Corner of 54th and 10th Ave."}},{"id":"59770","summary":{"name":"Baluchi's Catering","cuisines":["Indian"],"phone":"555-555-5555","description":"Baluchi's, one of Zagat's top rated Indian restaurants, offers a selection of traditional & regional Indian cuisines that are carefully prepared and presented by experienced chefs. Order half and full trays of all your Indian favorites, plus Tandoori breads and beverages, from Baluchi's Catering.","overall_rating":0,"num_ratings":0,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"nyc","short_tag":"baluchis-catering-greenwich-st","complete":"https:\/\/staging.delivery.com\/nyc\/baluchis-catering-greenwich-st"},"activation_date":"2009-07-23"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":165,"specials":null,"last_or_next_order_time":"2014-04-11 11:30:00","minimum":15,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.67465428575765,"street":"275 GREENWICH ST","city":"NEW YORK","state":"NY","zip":"10007","longitude":-74.011073,"latitude":40.71518,"landmark":"Between Warren & Murray St."}},{"id":"59857","summary":{"name":"New Fresco Tortillas","cuisines":["Mexican","Chinese"],"phone":"555-555-5555","description":"A unique combination where Chinese meets Mexican. The place is definitely different and pioneering a trend of combining the two popular and vastly different cuisines.","overall_rating":85,"num_ratings":112,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"new-fresco-tortillas","complete":"https:\/\/staging.delivery.com\/nyc\/new-fresco-tortillas"},"activation_date":"2009-08-05"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":["10% Off for First Time Users"],"last_or_next_order_time":"2014-04-10 22:15:00","minimum":8,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.58346007274194,"street":"63 READE ST","city":"NEW YORK","state":"NY","zip":"10007","longitude":-74.006862,"latitude":40.715101,"landmark":"Between Broadway & Church"}},{"id":"60070","summary":{"name":"Nu Sushi","cuisines":["Japanese"],"phone":"555-555-5555","description":"A small sushi spot with limited seating. Known for their fresh fish and steal of deal with an $8 bento box","overall_rating":80,"num_ratings":39,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"nu-sushi","complete":"https:\/\/staging.delivery.com\/nyc\/nu-sushi"},"activation_date":"2009-09-04"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 21:45:00","minimum":10,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.39569192262225,"street":"76 PEARL ST","city":"NEW YORK","state":"NY","zip":"10004","longitude":-74.010471,"latitude":40.703617,"landmark":"Hanover Sq and Coenties Slip"}},{"id":"60117","summary":{"name":"Atomic Wings","cuisines":["Wings"],"phone":"555-555-5555","description":"Order up heaping portions of supercharged American favorites from Atomic Wings. Atomic Wings has lots of appetizers, sandwiches, burgers, hot dogs, and, of course, wings! Get yours with one of the sauces for the sane--Honey Mustard, BBQ--or one of the sauces for the insane--Abusive, Nuclear, Suicidal, Bite Me.","overall_rating":68,"num_ratings":36,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"atomic-wings-10007","complete":"https:\/\/staging.delivery.com\/nyc\/atomic-wings-10007"},"activation_date":"2009-09-09"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 22:15:00","minimum":10,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.60157940080126,"street":"311 BROADWAY","city":"NEW YORK","state":"NY","zip":"10007","longitude":-74.005326,"latitude":40.715558,"landmark":"Between Thomas & Duane"}},{"id":"60372","summary":{"name":"Babaghanouge","cuisines":["Mediterranean","Sandwiches","Juice Bar","Healthy"],"phone":"555-555-5555","description":"Focusing on Mediterranean cuisine, this restaurant makes sure the customer is eating a healthy meal as well as an authentic one.","overall_rating":83,"num_ratings":44,"type":"R","type_label":"Restaurant","notes":["12 Noon - 2 PM - Rush hour -Estimated time of delivery up to 2 hours.\r\n6:30 PM - 9 PM - Rush hour -Estimated time of delivery up to 2 hours.\r\n\r\nAll other times Estimated delivery - 45 minutes.","ALL ORDERS WILL HAVE A DELAY OF 2HR DUE TO WEATHER."],"url":{"geo_tag":"nyc","short_tag":"babaghanouge","complete":"https:\/\/staging.delivery.com\/nyc\/babaghanouge"},"activation_date":"2009-09-16"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 22:45:00","minimum":10,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.59331437921705,"street":"165 CHURCH ST","city":"NEW YORK","state":"NY","zip":"10007","longitude":-74.007647,"latitude":40.715085,"landmark":"Reade Street and Chambers Street"}},{"id":"60401","summary":{"name":"Gracie's Wines","cuisines":null,"phone":"555-555-5555","description":"Gracie's Wines features an eclectic selection of wines from across the globe at varying prices. Don't be surprised to stumble upon a hard-to-find liquor in this small wine shop!","overall_rating":94,"num_ratings":16,"type":"W","type_label":"Wine and Liquor Store","notes":null,"url":{"geo_tag":"nyc","short_tag":"gracies-wines","complete":"https:\/\/staging.delivery.com\/nyc\/gracies-wines"},"activation_date":"2009-09-09"},"ordering":{"delivery_processes_card":false,"payment_types":["credit","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 23:00:00","minimum":50,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":5.5272712667888,"street":"1579 YORK AVE","city":"NEW YORK","state":"NY","zip":"10028","longitude":-73.94808,"latitude":40.77461,"landmark":"84th Street"}},{"id":"60441","summary":{"name":"Ancora","cuisines":["Italian"],"phone":"555-555-5555","description":"A traditional Italian restaurant that will treat you like a king. Although pricey, the food is cared for, as an Italian grandmother would.","overall_rating":84,"num_ratings":5,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"ancora","complete":"https:\/\/staging.delivery.com\/nyc\/ancora"},"activation_date":"2009-09-21"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 21:45:00","minimum":12,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.46455663688979,"street":"11 STONE ST","city":"NEW YORK","state":"NY","zip":"10004","longitude":-74.012347,"latitude":40.70411,"landmark":"Between Broadway & Broad Street"}},{"id":"60454","summary":{"name":"Bully's","cuisines":["Deli","Burgers"],"phone":"555-555-5555","description":"Bully's is one of your classic American diners in the best tradition: fast food, all your favorites, and a wide selection of foods that are especially great for a no-fuss, satisfying breakfast, lunch, or dinner.","overall_rating":83,"num_ratings":279,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"bullys","complete":"https:\/\/staging.delivery.com\/nyc\/bullys"},"activation_date":"2009-10-16"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":["10% Off All Orders Over $50"],"last_or_next_order_time":"2014-04-17 00:00:00","minimum":15,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":1.7756136094891,"street":"759 BROADWAY","city":"NEW YORK","state":"NY","zip":"10003","longitude":-73.992287,"latitude":40.730927,"landmark":"Between 8th and 9th Street"}},{"id":"60462","summary":{"name":"Ancora Pasta Bar","cuisines":["Italian"],"phone":"555-555-5555","description":"A traditional Italian restaurant that will treat you like a king. Although pricey, the food is cared for, as an Italian grandmother would.","overall_rating":39,"num_ratings":3,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"ancora-pasta-bar","complete":"https:\/\/staging.delivery.com\/nyc\/ancora-pasta-bar"},"activation_date":"2009-10-01"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 21:45:00","minimum":15,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.46455663688979,"street":"11 STONE ST","city":"NEW YORK","state":"NY","zip":"10004","longitude":-74.012347,"latitude":40.70411,"landmark":"Between Broadway & Broad Street"}},{"id":"60665","summary":{"name":"Limon","cuisines":["Turkish","Mediterranean","Middle Eastern","Halal"],"phone":"555-555-5555","description":"","overall_rating":84,"num_ratings":46,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"limon","complete":"https:\/\/staging.delivery.com\/nyc\/limon"},"activation_date":"2009-10-04"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 22:45:00","minimum":100,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":2.5183097191909,"street":"238 E 24TH ST","city":"NEW YORK","state":"NY","zip":"10010","longitude":-73.981756,"latitude":40.739093,"landmark":"Between 2nd & 3rd Ave."}},{"id":"60734","summary":{"name":"Joseph's Restaurant","cuisines":["Italian"],"phone":"555-555-5555","description":"An upscale northern Italian restaurant with an intimate dining room. The regional cuisine is decadent, with lots of enticing options.","overall_rating":81,"num_ratings":13,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"josephs-restaurant","complete":"https:\/\/staging.delivery.com\/nyc\/josephs-restaurant"},"activation_date":"2009-10-19"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":["20% Off for First Time Users"],"last_or_next_order_time":"2014-04-11 11:00:00","minimum":15,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.31079338317247,"street":"3 HANOVER SQ","city":"NEW YORK","state":"NY","zip":"10004","longitude":-74.009519,"latitude":40.70479,"landmark":"William Street and Hanover Street"}},{"id":"60829","summary":{"name":"Taco House","cuisines":["Mexican"],"phone":"555-555-5555","description":"Come and experience the finest Taco, Burrito, Nacho and other Mexican Food in the Downtown City Hall area. Our restaurant offers a wide array of Mexican cuisine from fresh flour Tortillas, Taco, Burritos and many more!","overall_rating":87,"num_ratings":158,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"taco-house","complete":"https:\/\/staging.delivery.com\/nyc\/taco-house"},"activation_date":"2009-10-22"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 23:00:00","minimum":7,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.64991212626402,"street":"178 CHURCH ST","city":"NEW YORK","state":"NY","zip":"10013","longitude":-74.007075,"latitude":40.716051,"landmark":"Between Duane & Reade Street"}},{"id":"60908","summary":{"name":"Il Brigante Restaurant","cuisines":["Italian","Pizza"],"phone":"555-555-5555","description":"A cozy trattoria style restaurant. The exotic menu is dotted with selections from the owners native Calabria. The pizzaiolo is famous and has won many spinning competitions, so try the pizza","overall_rating":92,"num_ratings":24,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"il-brigante-restaurant","complete":"https:\/\/staging.delivery.com\/nyc\/il-brigante-restaurant"},"activation_date":"2010-01-15"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 22:15:00","minimum":10,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.090579323366762,"street":"214 FRONT ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.00267,"latitude":40.707384,"landmark":"Between Peck Slip & Beekman St."}},{"id":"60939","summary":{"name":"Alfanoose Middle Eastern Restaurant","cuisines":["Middle Eastern"],"phone":"555-555-5555","description":"Founded in 1999 due to the void of true Syrian\/Lebanese food in the FiDi area, owner Shami is giving New Yorkers a more authentic option to the omnipresent street cart fare. Come here for a healthy alternative to the quick meal and try the renowned and recognized falafel.","overall_rating":85,"num_ratings":14,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"alfanoose-middle-eastern-restaurant","complete":"https:\/\/staging.delivery.com\/nyc\/alfanoose-middle-eastern-restaurant"},"activation_date":"2009-10-28"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 11:30:00","minimum":15,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.13191475146462,"street":"64 FULTON ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.00518,"latitude":40.708669,"landmark":"Btw. Cliff St. and Gold St."}},{"id":"60982","summary":{"name":"Burgundy Wine Company","cuisines":null,"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"W","type_label":"Wine and Liquor Store","notes":null,"url":{"geo_tag":"nyc","short_tag":"burgundy-wine-company","complete":"https:\/\/staging.delivery.com\/nyc\/burgundy-wine-company"},"activation_date":"2010-04-30"},"ordering":{"delivery_processes_card":false,"payment_types":["credit"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-13 18:00:00","minimum":175,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":2.7312526152839,"street":"143 W 26TH ST","city":"NEW YORK","state":"NY","zip":"10001","longitude":-73.99002,"latitude":40.744912,"landmark":"Between 6th & 7th"}},{"id":"61049","summary":{"name":"Manhattan Wine Xchange","cuisines":null,"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"W","type_label":"Wine and Liquor Store","notes":null,"url":{"geo_tag":"nyc","short_tag":"manhattan-wine-xchange","complete":"https:\/\/staging.delivery.com\/nyc\/manhattan-wine-xchange"},"activation_date":"2009-11-24"},"ordering":{"delivery_processes_card":false,"payment_types":["credit","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 12:00:00","minimum":100,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":4.4872607045016,"street":"1079 3RD AVE","city":"NEW YORK","state":"NY","zip":"10065","longitude":-73.964475,"latitude":40.764404,"landmark":"Between 63rd and 64th Street"}},{"id":"61126","summary":{"name":"Bully's Catering","cuisines":["American","Deli","Sandwiches"],"phone":"555-555-5555","description":"","overall_rating":95,"num_ratings":11,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"nyc","short_tag":"bullys-catering","complete":"https:\/\/staging.delivery.com\/nyc\/bullys-catering"},"activation_date":"2010-06-22"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":225,"specials":["20% Off for First Time Users"],"last_or_next_order_time":"2014-04-11 01:45:00","minimum":150,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":1.7756136094891,"street":"759 BROADWAY","city":"NEW YORK","state":"NY","zip":"10003","longitude":-73.992287,"latitude":40.730927,"landmark":"Between 8th and 9th Street"}},{"id":"61135","summary":{"name":"Zigolinis","cuisines":["Mediterranean","American"],"phone":"555-555-5555","description":"","overall_rating":83,"num_ratings":17,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"zigolinis","complete":"https:\/\/staging.delivery.com\/nyc\/zigolinis"},"activation_date":"2009-11-17"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 21:45:00","minimum":10,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.4224514254784,"street":"66 PEARL ST","city":"NEW YORK","state":"NY","zip":"10004","longitude":-74.010944,"latitude":40.703455,"landmark":"Coenties Slip & Broad St."}},{"id":"61169","summary":{"name":"Roxy Coffee Shop","cuisines":["Diner","Burgers","Sandwiches"],"phone":"555-555-5555","description":"A lunch counter that is open 24\/7 offering lunch and breakfast options to the FiDi area. New York classics done right at this homey coffee shop.","overall_rating":73,"num_ratings":18,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"roxy-coffee-shop","complete":"https:\/\/staging.delivery.com\/nyc\/roxy-coffee-shop"},"activation_date":"2009-12-09"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 07:00:00","minimum":5,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.31250695728643,"street":"20 JOHN ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.00882,"latitude":40.709815,"landmark":"Broadway & Nassau"}},{"id":"61245","summary":{"name":"Pho Viet Huong Restaurant","cuisines":["Vietnamese"],"phone":"555-555-5555","description":"Vietnamese comfort food that has locals and Vietnamese immigrants clamoring. Authentic and no frills.","overall_rating":74,"num_ratings":42,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"pho-viet-huong-restaurant","complete":"https:\/\/staging.delivery.com\/nyc\/pho-viet-huong-restaurant"},"activation_date":"2010-02-11"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 11:00:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.72560713329575,"street":"73 MULBERRY ST","city":"NEW YORK","state":"NY","zip":"10013","longitude":-73.998908,"latitude":40.716571,"landmark":"Canal & Bayward"}},{"id":"61288","summary":{"name":"New Xe Lua Vietnamese Restaurant","cuisines":["Vietnamese","Asian","Seafood","Chinese"],"phone":"555-555-5555","description":"An authentic Vietnamese eatery serving up classics for New York.","overall_rating":84,"num_ratings":83,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"xe-lua-vietnamese-restaurant","complete":"https:\/\/staging.delivery.com\/nyc\/xe-lua-vietnamese-restaurant"},"activation_date":"2009-12-18"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 10:30:00","minimum":15,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.7286791743019,"street":"86 MULBERRY ST","city":"NEW YORK","state":"NY","zip":"10013","longitude":-73.998854,"latitude":40.716602,"landmark":"Bet. Bayard & Canal"}},{"id":"61364","summary":{"name":"Stone Street Tavern","cuisines":["American"],"phone":"555-555-5555","description":"A traditional tavern with a large menu. The outdoor seating on Stone St. gives the tavern added eating space.","overall_rating":60,"num_ratings":4,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"stone-street-tavern","complete":"https:\/\/staging.delivery.com\/nyc\/stone-street-tavern"},"activation_date":"2010-03-01"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 22:15:00","minimum":15,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.34141122865033,"street":"52 STONE ST","city":"NEW YORK","state":"NY","zip":"10004","longitude":-74.010019,"latitude":40.704559,"landmark":"Between Broad St. & Hanover Square"}},{"id":"61402","summary":{"name":"Dexter Myers Cookies","cuisines":null,"phone":"555-555-5555","description":"-- Customer must give 48 hours advance notice\r\n-- Customer will be notified of approximate delivery time range. \r\n-- Minimum order amount for delivery is $50 \r\n-- We have a flat rate of $16 for delivery anywhere within the five boroughs of New York City.","overall_rating":0,"num_ratings":0,"type":"B","type_label":"Bakery","notes":null,"url":{"geo_tag":"atlanta","short_tag":"dexter-myers-cookies","complete":"https:\/\/staging.delivery.com\/atlanta\/dexter-myers-cookies"},"activation_date":"2009-12-17"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":1425,"specials":null,"last_or_next_order_time":"2014-04-12 09:00:00","minimum":50,"is_open":false,"delivery_charge":16,"delivery_percent":0},"location":{"distance":740.34561085507,"street":"5208 MORGAN PLACE CT NE","city":"ATLANTA","state":"GA","zip":"30324","longitude":-84.345862,"latitude":33.825365,"landmark":"Lenox Road & Chantilly"}},{"id":"61424","summary":{"name":"Squire's Diner","cuisines":["Diner","American"],"phone":"555-555-5555","description":"A small diner that brings back memories of the nostalgic diners. Everything is inexpensively priced on the large menu","overall_rating":84,"num_ratings":110,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"squires-diner","complete":"https:\/\/staging.delivery.com\/nyc\/squires-diner"},"activation_date":"2010-01-21"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 06:00:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.22238194244087,"street":"80 BEEKMAN ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.005038,"latitude":40.710054,"landmark":"Between Fulton & Gold Street"}},{"id":"61455","summary":{"name":"Essex World Cafe","cuisines":["Cafe","Sandwiches"],"phone":"555-555-5555","description":"","overall_rating":42,"num_ratings":5,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"essex-world-cafe","complete":"https:\/\/staging.delivery.com\/nyc\/essex-world-cafe"},"activation_date":"2010-01-07"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":["10% Off All Orders Over $35"],"last_or_next_order_time":"2014-04-11 08:00:00","minimum":5,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.46293571755431,"street":"112 LIBERTY ST","city":"NEW YORK","state":"NY","zip":"10006","longitude":-74.012219,"latitude":40.709819,"landmark":"Between Trinity & Greenwich"}},{"id":"61527","summary":{"name":"Wine Therapy","cuisines":null,"phone":"555-555-5555","description":"Wine Therapy offers a wide selection of specialty and organic wines from around the world, and prides itself in offering lesser-known wines from small producers.","overall_rating":92,"num_ratings":7,"type":"W","type_label":"Wine and Liquor Store","notes":null,"url":{"geo_tag":"nyc","short_tag":"wine-therapy","complete":"https:\/\/staging.delivery.com\/nyc\/wine-therapy"},"activation_date":"2010-01-21"},"ordering":{"delivery_processes_card":false,"payment_types":["credit"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 12:00:00","minimum":200,"is_open":false,"delivery_charge":25,"delivery_percent":0},"location":{"distance":1.0955875731429,"street":"171 ELIZABETH ST","city":"NEW YORK","state":"NY","zip":"10012","longitude":-73.994939,"latitude":40.721079,"landmark":"Between Kenmore & Spring Street"}},{"id":"61558","summary":{"name":"Eddy Catering","cuisines":["Italian"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":1,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"nyc","short_tag":"eddy-catering","complete":"https:\/\/staging.delivery.com\/nyc\/eddy-catering"},"activation_date":"2010-03-10"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":1425,"specials":null,"last_or_next_order_time":"2014-04-14 09:00:00","minimum":100,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":3.2601290458654,"street":"255 W 36TH ST","city":"NEW YORK","state":"NY","zip":"10018","longitude":-73.991196,"latitude":40.753018,"landmark":"Between 7th & 8th"}},{"id":"61571","summary":{"name":"Mudville 9","cuisines":["American","Wings","Barbeque","Burgers"],"phone":"555-555-5555","description":"An unassuming bar with an out of this world menu. The beer selection is surprisingly stacked and go great with the savory cuisine.","overall_rating":74,"num_ratings":52,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"mudville-9","complete":"https:\/\/staging.delivery.com\/nyc\/mudville-9"},"activation_date":"2010-01-22"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 22:45:00","minimum":15,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.6246349785599,"street":"126 CHAMBERS ST","city":"NEW YORK","state":"NY","zip":"10007","longitude":-74.008896,"latitude":40.715221,"landmark":"Between Church & Broadway"}},{"id":"61603","summary":{"name":"Energize Me Foods (brought to you by Kool Bloo)","cuisines":["Healthy","Sandwiches"],"phone":"555-555-5555","description":"","overall_rating":71,"num_ratings":18,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"energize-me-foods","complete":"https:\/\/staging.delivery.com\/nyc\/energize-me-foods"},"activation_date":"2010-01-13"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":["25% Off for First Time Users"],"last_or_next_order_time":"2014-04-11 01:15:00","minimum":35,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":1.1728083773044,"street":"117 AVENUE OF THE AMERICAS","city":"NEW YORK","state":"NY","zip":"10013","longitude":-74.004856,"latitude":40.723856,"landmark":"6th Ave & Watts St"}},{"id":"61632","summary":{"name":"Mad Dog & Beans","cuisines":["Mexican"],"phone":"555-555-5555","description":"Come to this Mexican cantina for an authentic Mexican meal, and a menu with large flavors. Homemade specialties are a must.","overall_rating":73,"num_ratings":23,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"mad-dog-beans","complete":"https:\/\/staging.delivery.com\/nyc\/mad-dog-beans"},"activation_date":"2010-02-01"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":["20% Off for First Time Users"],"last_or_next_order_time":"2014-04-10 21:45:00","minimum":20,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.36595051713875,"street":"83 PEARL ST","city":"NEW YORK","state":"NY","zip":"10004","longitude":-74.01023,"latitude":40.704124,"landmark":"Bet. Broad St. and William St."}},{"id":"61668","summary":{"name":"Diwan e Khaas","cuisines":["Indian"],"phone":"555-555-5555","description":"This eatery is offering large portions and a large variety of authentic Indian cuisine. The a la carte offerings are reasonably priced and not spicy for those who fear the heat.","overall_rating":82,"num_ratings":4,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"diwan-e-khaas","complete":"https:\/\/staging.delivery.com\/nyc\/diwan-e-khaas"},"activation_date":"2010-03-08"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":["10% Off for First Time Users"],"last_or_next_order_time":"2014-04-10 21:45:00","minimum":12,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.28586545680873,"street":"53 NASSAU ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.008896,"latitude":40.709085,"landmark":"Maiden Lane & Liberty Street"}},{"id":"61669","summary":{"name":"Diwan e Khaas","cuisines":["Indian"],"phone":"555-555-5555","description":"This eatery is offering large portions and a large variety of authentic Indian cuisine. The a la carte offerings are reasonably priced and not spicy for those who fear the heat.","overall_rating":83,"num_ratings":7,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"diwan-e-khaas-cedar-st","complete":"https:\/\/staging.delivery.com\/nyc\/diwan-e-khaas-cedar-st"},"activation_date":"2010-03-08"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 11:00:00","minimum":11,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.18988869144433,"street":"26 CEDAR ST","city":"NEW YORK","state":"NY","zip":"10005","longitude":-74.007896,"latitude":40.706856,"landmark":"William & Gold St."}},{"id":"61677","summary":{"name":"Queensdelivers","cuisines":["American","Italian","Mexican","Wings"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"queens","short_tag":"queensdelivers","complete":"https:\/\/staging.delivery.com\/queens\/queensdelivers"},"activation_date":"2010-01-14"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":165,"specials":null,"last_or_next_order_time":"2014-04-11 16:00:00","minimum":99.96,"is_open":false,"delivery_charge":14.5,"delivery_percent":0},"location":{"distance":6.6726682685815,"street":"7503 67TH DR","city":"MIDDLE VILLAGE","state":"NY","zip":"11379","longitude":-73.87702,"latitude":40.711469,"landmark":"75th Street"}},{"id":"61826","summary":{"name":"Tandoor Palace","cuisines":["Indian"],"phone":"555-555-5555","description":"A to-go Indian spot with a huge menu. Than naan is big and buttery to go aside the no frills flavorful meats.","overall_rating":71,"num_ratings":18,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"tandoor-palace","complete":"https:\/\/staging.delivery.com\/nyc\/tandoor-palace"},"activation_date":"2010-03-15"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 11:00:00","minimum":15,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.18424702358684,"street":"88 FULTON ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.006004,"latitude":40.709209,"landmark":"Between William & Gold"}},{"id":"62028","summary":{"name":"BonChon Chicken","cuisines":["Korean","Asian","Wings","Chinese"],"phone":"555-555-5555","description":"Korean fried chicken that could not be more gratifying. A unique recipe that has their following multiplying by the day. The other entrees are worth trying as well, but the mainstay is chicken, which is why its in the title.","overall_rating":82,"num_ratings":122,"type":"R","type_label":"Restaurant","notes":["Please note that deliveries may take 30-40 minutes or more.","ATTENTION: During peak times deliveries may take 45 minutes to 1 hour."],"url":{"geo_tag":"nyc","short_tag":"bonchon-chicken","complete":"https:\/\/staging.delivery.com\/nyc\/bonchon-chicken"},"activation_date":"2010-03-09"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":45,"specials":null,"last_or_next_order_time":"2014-04-10 22:15:00","minimum":10,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.095532512977757,"street":"104 JOHN ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.005772,"latitude":40.707674,"landmark":"Between Cliff and Pearl Street"}},{"id":"62071","summary":{"name":"Wine Castle","cuisines":null,"phone":"555-555-5555","description":"Credit card must be presented at the time of delivery so the restaurant can obtain an imprint and signature. They may also require proper identification that matches the credit card holder.","overall_rating":89,"num_ratings":82,"type":"W","type_label":"Wine and Liquor Store","notes":null,"url":{"geo_tag":"nyc","short_tag":"wine-castle","complete":"https:\/\/staging.delivery.com\/nyc\/wine-castle"},"activation_date":"2010-03-19"},"ordering":{"delivery_processes_card":false,"payment_types":["credit","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 12:00:00","minimum":50,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":5.9438430446637,"street":"1650 3RD AVE","city":"NEW YORK","state":"NY","zip":"10128","longitude":-73.951157,"latitude":40.782917,"landmark":"92nd & 93rd"}},{"id":"62095","summary":{"name":"Delmonico's","cuisines":["Steaks"],"phone":"555-555-5555","description":"Come to the legendary and historic steakhouse for the steaks, seafood and decadence. The quality of meat alone will show why it is tops in the nation.","overall_rating":0,"num_ratings":1,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"delmonicos","complete":"https:\/\/staging.delivery.com\/nyc\/delmonicos"},"activation_date":"2010-04-09"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":["10% Off for First Time Users"],"last_or_next_order_time":"2014-04-11 12:00:00","minimum":20,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.33650676720249,"street":"56 BEAVER ST","city":"NEW YORK","state":"NY","zip":"10004","longitude":-74.010187,"latitude":40.70499,"landmark":"William Street"}},{"id":"62129","summary":{"name":"Harry's Italian Pizza Bar","cuisines":["Italian","Pizza"],"phone":"555-555-5555","description":"Opened in 2009 as a partnership between restaurateurs\u00a0Peter and Harry Poulakakos\u00a0and the renowned team from\u00a0Nick's Pizza, Harry's Italian offers single and family style Italian cuisine as well as round and old fashioned square pies.","overall_rating":83,"num_ratings":25,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"harrys-italian-pizza-bar","complete":"https:\/\/staging.delivery.com\/nyc\/harrys-italian-pizza-bar"},"activation_date":"2010-10-13"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 22:30:00","minimum":5,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.15424029164182,"street":"2 GOLD ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.007185,"latitude":40.70721,"landmark":"Platt & Maiden Lane"}},{"id":"62214","summary":{"name":"Best of New York Food","cuisines":["Deli","Sandwiches"],"phone":"555-555-5555","description":"This eatery has an enormous selection of fresh, ready-to-make food. The quality and staff have the Wall Street lunch crowd flocking","overall_rating":71,"num_ratings":24,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"best-of-new-york-food","complete":"https:\/\/staging.delivery.com\/nyc\/best-of-new-york-food"},"activation_date":"2010-05-27"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-17 00:00:00","minimum":8,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.14515223009756,"street":"150 WATER ST","city":"NEW YORK","state":"NY","zip":"10005","longitude":-74.006673,"latitude":40.705841,"landmark":"Maiden Lane"}},{"id":"62698","summary":{"name":"Hot Blondies Bakery","cuisines":null,"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":1,"type":"B","type_label":"Bakery","notes":null,"url":{"geo_tag":"nyc","short_tag":"hot-blondies-bakery","complete":"https:\/\/staging.delivery.com\/nyc\/hot-blondies-bakery"},"activation_date":"2010-06-21"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 11:00:00","minimum":15,"is_open":false,"delivery_charge":10,"delivery_percent":0},"location":{"distance":2.167923111694,"street":"540 AVENUE OF THE AMERICAS","city":"NEW YORK","state":"NY","zip":"10011","longitude":-73.996544,"latitude":40.737712,"landmark":"Between 14th & 15th"}},{"id":"62719","summary":{"name":"Ruben's Empanadas","cuisines":["Argentinian","Latin","Fast Food"],"phone":"555-555-5555","description":"","overall_rating":87,"num_ratings":7,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"rubens-empanadas-fulton-st","complete":"https:\/\/staging.delivery.com\/nyc\/rubens-empanadas-fulton-st"},"activation_date":"2010-06-18"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 10:30:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.13191475146462,"street":"64 FULTON ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.00518,"latitude":40.708669,"landmark":"Cliff st & Gold st"}},{"id":"62759","summary":{"name":"Muscle Maker Grill","cuisines":["Healthy","Sandwiches"],"phone":"555-555-5555","description":"Muscle Maker Grill was founded in 1995 by Rod Silva with the goal of offering people a nutritious alternative to fast food restaurants. A fitness enthusiast since he was 18, Rod recognized a void in the marketplace for tasty, healthy options. While running a smoothie store he owned in Colonia, New Jersey, Rod would bring in dishes he prepared for lunch and dinner. Customers who smelled the delicious aroma of Rod's meals asked about the food and Rod began cooking for regular customers, thus Muscle Maker Grill was born.\r\n\r\nMuscle Maker Grill satisfies everyone from vegetarians to the carb free consumer to people following a gluten free diet.","overall_rating":75,"num_ratings":6,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"muscle-maker-grill-murray-st","complete":"https:\/\/staging.delivery.com\/nyc\/muscle-maker-grill-murray-st"},"activation_date":"2010-08-19"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 10:00:00","minimum":10,"is_open":false,"delivery_charge":1.5,"delivery_percent":0},"location":{"distance":0.48080529373082,"street":"10 MURRAY ST","city":"NEW YORK","state":"NY","zip":"10007","longitude":-74.00797,"latitude":40.713257,"landmark":"Between Church and Broadway"}},{"id":"62786","summary":{"name":"Ruben's Empanadas Catering","cuisines":["Argentinian"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"nyc","short_tag":"rubens-empanadas-catering","complete":"https:\/\/staging.delivery.com\/nyc\/rubens-empanadas-catering"},"activation_date":"2010-07-07"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":1425,"specials":null,"last_or_next_order_time":"2014-04-14 11:00:00","minimum":100,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.13191475146462,"street":"64 FULTON ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.00518,"latitude":40.708669,"landmark":"Cliff st & Gold st"}},{"id":"63341","summary":{"name":"Istanbul Park Catering","cuisines":["Turkish","Mediterranean"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"brooklyn","short_tag":"istanbul-park-catering","complete":"https:\/\/staging.delivery.com\/brooklyn\/istanbul-park-catering"},"activation_date":"2010-08-27"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":105,"specials":null,"last_or_next_order_time":"2014-04-10 23:45:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":2.9620917443901,"street":"293 7TH AVE","city":"BROOKLYN","state":"NY","zip":"11215","longitude":-73.980686,"latitude":40.667929,"landmark":"7th & 8th St."}},{"id":"63453","summary":{"name":"Salsa Caterers & Special Events","cuisines":["Latin","Tapas"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":1,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"bronx","short_tag":"salsa-caterers-special-events","complete":"https:\/\/staging.delivery.com\/bronx\/salsa-caterers-special-events"},"activation_date":"2010-12-10"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":2865,"specials":null,"last_or_next_order_time":"2014-04-13 10:00:00","minimum":200,"is_open":false,"delivery_charge":50,"delivery_percent":0},"location":{"distance":10.960129663068,"street":"1779 WEBSTER AVE","city":"BRONX","state":"NY","zip":"10457","longitude":-73.902306,"latitude":40.845444,"landmark":"Between E 174th St & E 173rd St"}},{"id":"63695","summary":{"name":"Manhattan Wine Xchange Gift Baskets","cuisines":null,"phone":"555-555-5555","description":"If sending to a recipient other than yourself, put the GIFT BASKET RECIPIENT'S address in the SPECIAL INSTRUCTION BOX upon checkout\r\nOrders are shipped by UPS for delivery between 9am-7pm\r\nPlace orders by 2pm for next day delivery\r\nCancellations - please notify before 4pm (orders ship at 5)","overall_rating":0,"num_ratings":0,"type":"G","type_label":"Gift Basket Maker","notes":["Manhattan Wine Xchange offers the most user-friendly, ultra-customizable service for your gift-giving needs. We have a personalized wine gift basket for every budget and every type of recipient."],"url":{"geo_tag":"nyc","short_tag":"manhattan-wine-xchange-gift-baskets","complete":"https:\/\/staging.delivery.com\/nyc\/manhattan-wine-xchange-gift-baskets"},"activation_date":"2010-11-10"},"ordering":{"delivery_processes_card":false,"payment_types":["credit","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-13 14:00:00","minimum":100,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":4.4872607045016,"street":"1079 3RD AVE","city":"NEW YORK","state":"NY","zip":"10065","longitude":-73.964475,"latitude":40.764404,"landmark":"Between 63rd and 64th Street"}},{"id":"63926","summary":{"name":"Kosher Deluxe","cuisines":["Glatt Kosher","Deli","Chinese"],"phone":"555-555-5555","description":"Under the strict supervision of Rabbi Amram Roth of Boro Park.","overall_rating":87,"num_ratings":32,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"kosher-deluxe","complete":"https:\/\/staging.delivery.com\/nyc\/kosher-deluxe"},"activation_date":"2010-11-11"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 07:30:00","minimum":5,"is_open":false,"delivery_charge":5,"delivery_percent":0},"location":{"distance":3.6380198853744,"street":"10 W 46TH ST","city":"NEW YORK","state":"NY","zip":"10036","longitude":-73.97943,"latitude":40.756059,"landmark":"Between 5th Ave & 6th Ave"}},{"id":"63927","summary":{"name":"Kosher Deluxe Catering","cuisines":["Glatt Kosher","Deli","Chinese"],"phone":"555-555-5555","description":"Under the strict supervision of Rabbi Amram Roth of Boro Park.","overall_rating":0,"num_ratings":0,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"nyc","short_tag":"kosher-deluxe-catering","complete":"https:\/\/staging.delivery.com\/nyc\/kosher-deluxe-catering"},"activation_date":"2010-11-11"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":165,"specials":null,"last_or_next_order_time":"2014-04-11 07:30:00","minimum":5,"is_open":false,"delivery_charge":5,"delivery_percent":0},"location":{"distance":3.6380198853744,"street":"10 W 46TH ST","city":"NEW YORK","state":"NY","zip":"10036","longitude":-73.97943,"latitude":40.756059,"landmark":"Between 5th Ave & 6th Ave"}},{"id":"64121","summary":{"name":"Tasty Grill Catering","cuisines":["Greek","Mediterranean"],"phone":"555-555-5555","description":"","overall_rating":94,"num_ratings":4,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"queens","short_tag":"tasty-grill-catering","complete":"https:\/\/staging.delivery.com\/queens\/tasty-grill-catering"},"activation_date":"2011-02-16"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":1425,"specials":null,"last_or_next_order_time":"2014-04-11 21:45:00","minimum":250,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":11.456943062826,"street":"1422 150TH ST","city":"WHITESTONE","state":"NY","zip":"11357","longitude":-73.813604,"latitude":40.788296,"landmark":"Between 14th Ave & Cross Island Pkwy"}},{"id":"64171","summary":{"name":"Naturally Delicious","cuisines":["Breakfast","American","Sandwiches","Burgers"],"phone":"555-555-5555","description":"","overall_rating":88,"num_ratings":11,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"naturally-delicious","complete":"https:\/\/staging.delivery.com\/nyc\/naturally-delicious"},"activation_date":"2011-02-15"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":["15% Off for First Time Users","15% Off All Orders Over $75"],"last_or_next_order_time":"2014-04-11 07:30:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.45128354005365,"street":"6 BARCLAY ST","city":"NEW YORK","state":"NY","zip":"10007","longitude":-74.008898,"latitude":40.712398,"landmark":"Between Church and Broadway"}},{"id":"64265","summary":{"name":"Shanghai Asian Manor","cuisines":["Chinese"],"phone":"555-555-5555","description":"","overall_rating":84,"num_ratings":8,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"shanghai-asian-manor","complete":"https:\/\/staging.delivery.com\/nyc\/shanghai-asian-manor"},"activation_date":"2011-03-16"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 11:15:00","minimum":19.99,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.59816511891635,"street":"21 MOTT ST","city":"NEW YORK","state":"NY","zip":"10013","longitude":-73.998787,"latitude":40.714482,"landmark":"Between Pell and Worth Street"}},{"id":"64434","summary":{"name":"Silver Spurs","cuisines":["American","Burgers"],"phone":"555-555-5555","description":"","overall_rating":76,"num_ratings":29,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"silver-spurs-laguardia-pl","complete":"https:\/\/staging.delivery.com\/nyc\/silver-spurs-laguardia-pl"},"activation_date":"2011-01-27"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 22:45:00","minimum":10,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":1.5847709487636,"street":"490 LAGUARDIA PL","city":"NEW YORK","state":"NY","zip":"10012","longitude":-73.997871,"latitude":40.729305,"landmark":"Corner of Houston"}},{"id":"64666","summary":{"name":"Cafe Gusto","cuisines":["Italian"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":1,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"cafe-gusto","complete":"https:\/\/staging.delivery.com\/nyc\/cafe-gusto"},"activation_date":"2011-04-13"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 07:00:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.092910473091631,"street":"111 JOHN ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.005599,"latitude":40.70778,"landmark":"Between Cliff St and Pearl St"}},{"id":"64817","summary":{"name":"El Maguey y La Tuna","cuisines":["Mexican","Spanish","Vegetarian","Breakfast"],"phone":"555-555-5555","description":"10% Off All Orders Over $20 in December.","overall_rating":72,"num_ratings":24,"type":"R","type_label":"Restaurant","notes":["10% Off for First Time Users","Brunch is now available until 10:00 PM."],"url":{"geo_tag":"nyc","short_tag":"el-maguey-y-la-tuna","complete":"https:\/\/staging.delivery.com\/nyc\/el-maguey-y-la-tuna"},"activation_date":"2011-04-26"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 22:45:00","minimum":15,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":1.4929333438725,"street":"321 E HOUSTON ST","city":"NEW YORK","state":"NY","zip":"10002","longitude":-73.98291,"latitude":40.721195,"landmark":"At Attorney Street"}},{"id":"65129","summary":{"name":"Curry & Tandoor Corner","cuisines":["Indian","Halal"],"phone":"555-555-5555","description":"Under New Management","overall_rating":79,"num_ratings":120,"type":"R","type_label":"Restaurant","notes":["Delivery wait is 45- 85 minutes"],"url":{"geo_tag":"nyc","short_tag":"curry-tandoor-corner","complete":"https:\/\/staging.delivery.com\/nyc\/curry-tandoor-corner"},"activation_date":"2011-05-13"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":["15% Off for First Time Users"],"last_or_next_order_time":"2014-04-11 11:00:00","minimum":15,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":1.0065964687195,"street":"369 BROOME ST","city":"NEW YORK","state":"NY","zip":"10013","longitude":-73.996013,"latitude":40.720043,"landmark":"Mott Street"}},{"id":"65964","summary":{"name":"Pluck U","cuisines":["American","Wings","Soul Food","Sandwiches"],"phone":"555-555-5555","description":"","overall_rating":72,"num_ratings":41,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"pluck-u-thompson-st","complete":"https:\/\/staging.delivery.com\/nyc\/pluck-u-thompson-st"},"activation_date":"2011-06-10"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 23:45:00","minimum":30,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":1.5809131935346,"street":"230 THOMPSON ST","city":"NEW YORK","state":"NY","zip":"10012","longitude":-73.998693,"latitude":40.729374,"landmark":"Between 3rd & Bleecker"}},{"id":"65965","summary":{"name":"Pluck U Catering","cuisines":["Soul Food","Wings"],"phone":"555-555-5555","description":"HOLIDAY SPECIAL!!!!!ANY CATERING ORDER OVER $250.00 GETS 50 BONELESS WINGS FREE. YOUR CHOICE OF SAUCE.","overall_rating":67,"num_ratings":3,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"nyc","short_tag":"pluck-u-catering","complete":"https:\/\/staging.delivery.com\/nyc\/pluck-u-catering"},"activation_date":"2011-07-06"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":225,"specials":null,"last_or_next_order_time":"2014-04-11 11:00:00","minimum":30,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":1.5809131935346,"street":"230 THOMPSON ST","city":"NEW YORK","state":"NY","zip":"10012","longitude":-73.998693,"latitude":40.729374,"landmark":"Between 3rd & Bleecker"}},{"id":"65988","summary":{"name":"David Burke at Bloomingdales","cuisines":["American","Burgers"],"phone":"555-555-5555","description":"","overall_rating":90,"num_ratings":39,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"david-burke-at-bloomingdales","complete":"https:\/\/staging.delivery.com\/nyc\/david-burke-at-bloomingdales"},"activation_date":"2011-07-01"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":["10% Off All Items"],"last_or_next_order_time":"2014-04-11 11:00:00","minimum":200,"is_open":false,"delivery_charge":0,"delivery_percent":0.15},"location":{"distance":4.2831511732203,"street":"1000 3RD AVE","city":"NEW YORK","state":"NY","zip":"10022","longitude":-73.966496,"latitude":40.761871,"landmark":"Between 59th and 60th"}},{"id":"66004","summary":{"name":"S.Ottomanelli Prime Meats","cuisines":null,"phone":"555-555-5555","description":"Please note: Delivery will take approximately 60 - 90 minutes.","overall_rating":96,"num_ratings":27,"type":"T","type_label":"Butcher Shop","notes":null,"url":{"geo_tag":"queens","short_tag":"s-ottomanelli-prime-meats","complete":"https:\/\/staging.delivery.com\/queens\/s-ottomanelli-prime-meats"},"activation_date":"2011-06-27"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":75,"specials":["10% Off for First Time Users","15% Off All Orders Over $200"],"last_or_next_order_time":"2014-04-11 07:00:00","minimum":100,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":5.9132175011205,"street":"6105 WOODSIDE AVE","city":"WOODSIDE","state":"NY","zip":"11377","longitude":-73.903,"latitude":40.744749,"landmark":"38th Ave"}},{"id":"66029","summary":{"name":"Kitchenette","cuisines":["American"],"phone":"555-555-5555","description":"AVERAGE DELIVERY TIME VARIES FROM 35-60 MIN.","overall_rating":64,"num_ratings":22,"type":"R","type_label":"Restaurant","notes":["For tonight Monday March 18, 2013 there will be a 1-1.5 hour wait for all deliveries."],"url":{"geo_tag":"nyc","short_tag":"kitchenette","complete":"https:\/\/staging.delivery.com\/nyc\/kitchenette"},"activation_date":"2011-07-21"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 22:15:00","minimum":15,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.48389385730502,"street":"156 CHAMBERS ST","city":"NEW YORK","state":"NY","zip":"10007","longitude":-74.007283,"latitude":40.713509,"landmark":"bet. Broadway and Church Street"}},{"id":"66054","summary":{"name":"Butter Lane Cupcakes","cuisines":null,"phone":"555-555-5555","description":"","overall_rating":93,"num_ratings":2,"type":"B","type_label":"Bakery","notes":null,"url":{"geo_tag":"nyc","short_tag":"butter-lane-cupcakes","complete":"https:\/\/staging.delivery.com\/nyc\/butter-lane-cupcakes"},"activation_date":"2011-07-06"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":105,"specials":null,"last_or_next_order_time":"2014-04-11 11:00:00","minimum":35,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":1.711929700334,"street":"123 E 7TH ST","city":"NEW YORK","state":"NY","zip":"10009","longitude":-73.984238,"latitude":40.726466,"landmark":"Between 1st Ave & Avenue A"}},{"id":"66150","summary":{"name":"Uncle Jimmy's Backyard BBQ Catering","cuisines":["Barbeque","Soul Food","Burgers"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":1,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"brooklyn","short_tag":"uncle-jimmys-backyard-bbq-catering","complete":"https:\/\/staging.delivery.com\/brooklyn\/uncle-jimmys-backyard-bbq-catering"},"activation_date":"2011-08-16"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":1425,"specials":null,"last_or_next_order_time":"2014-04-11 21:45:00","minimum":1000,"is_open":false,"delivery_charge":75,"delivery_percent":0},"location":{"distance":6.0526231683196,"street":"8727 4TH AVE","city":"BROOKLYN","state":"NY","zip":"11209","longitude":-74.028944,"latitude":40.621316,"landmark":"86th Street"}},{"id":"66240","summary":{"name":"Corbet & Conley Catering","cuisines":["Cafe","Italian","Sandwiches"],"phone":"555-555-5555","description":"24 Hours advance notice required. A 10% service fee will automatically be applied on all catering orders.","overall_rating":0,"num_ratings":0,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"nyc","short_tag":"corbet-conley-catering","complete":"https:\/\/staging.delivery.com\/nyc\/corbet-conley-catering"},"activation_date":"2013-06-18"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":1425,"specials":null,"last_or_next_order_time":"2014-04-14 06:00:00","minimum":100,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.11224986060205,"street":"15 CLIFF ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.005497,"latitude":40.708221,"landmark":"Between John Street and Fulton Street"}},{"id":"66268","summary":{"name":"Pita Grill Catering","cuisines":["Mediterranean","Sandwiches"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"nyc","short_tag":"pita-grill-catering","complete":"https:\/\/staging.delivery.com\/nyc\/pita-grill-catering"},"activation_date":"2011-11-20"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 22:45:00","minimum":9,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":2.7771187584351,"street":"291 7TH AVE","city":"NEW YORK","state":"NY","zip":"10001","longitude":-73.994176,"latitude":40.746345,"landmark":"Between 26th & 27th Streets"}},{"id":"66292","summary":{"name":"Artichoke Basille's Pizza","cuisines":["Pizza"],"phone":"555-555-5555","description":"","overall_rating":70,"num_ratings":21,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"artichoke-basilles-pizza","complete":"https:\/\/staging.delivery.com\/nyc\/artichoke-basilles-pizza"},"activation_date":"2011-08-01"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":30,"specials":["10% Off for First Time Users"],"last_or_next_order_time":"2014-04-11 03:45:00","minimum":22,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":2.0224610040412,"street":"328 E 14TH ST","city":"NEW YORK","state":"NY","zip":"10003","longitude":-73.984314,"latitude":40.731947,"landmark":"Between 1st and 2nd Avenue"}},{"id":"66361","summary":{"name":"Okami","cuisines":["Japanese","Asian","Sushi"],"phone":"555-555-5555","description":"","overall_rating":92,"num_ratings":100,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"okami","complete":"https:\/\/staging.delivery.com\/nyc\/okami"},"activation_date":"2011-08-02"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":15,"specials":["20% Off for First Time Users"],"last_or_next_order_time":"2014-04-10 22:45:00","minimum":5,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.58346007274194,"street":"63 READE ST","city":"NEW YORK","state":"NY","zip":"10007","longitude":-74.006862,"latitude":40.715101,"landmark":"Between Broadway & Church St."}},{"id":"66472","summary":{"name":"Taste Of Tokyo","cuisines":["Japanese"],"phone":"555-555-5555","description":"","overall_rating":90,"num_ratings":16,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"taste-of-tokyo","complete":"https:\/\/staging.delivery.com\/nyc\/taste-of-tokyo"},"activation_date":"2011-09-26"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 11:00:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.31424394986256,"street":"60 BEAVER ST","city":"NEW YORK","state":"NY","zip":"10004","longitude":-74.009757,"latitude":40.705048,"landmark":"Between Hanover & William St"}},{"id":"66526","summary":{"name":"Sabor De Mexico","cuisines":["Mexican"],"phone":"555-555-5555","description":"","overall_rating":48,"num_ratings":3,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"sabor-de-mexico-10006","complete":"https:\/\/staging.delivery.com\/nyc\/sabor-de-mexico-10006"},"activation_date":"2011-11-09"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":15,"specials":null,"last_or_next_order_time":"2014-04-11 11:00:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.43471600103934,"street":"97 TRINITY PL","city":"NEW YORK","state":"NY","zip":"10006","longitude":-74.011989,"latitude":40.709202,"landmark":"Wall Street and Liberty Street"}},{"id":"66528","summary":{"name":"David Burke Catering (at Bloomingdales)","cuisines":["American"],"phone":"555-555-5555","description":"Please allow 3 hours minimum for preparation of your order (advance notice is preferable). 12 HOURS ADVANCE NOTICE required for cancellation of your order.","overall_rating":0,"num_ratings":0,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"nyc","short_tag":"david-burke-catering-at-bloomingdales-","complete":"https:\/\/staging.delivery.com\/nyc\/david-burke-catering-at-bloomingdales-"},"activation_date":"2012-09-11"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":165,"specials":["$50.00 Off All Orders Over $250.00"],"last_or_next_order_time":"2014-04-11 11:00:00","minimum":125,"is_open":false,"delivery_charge":0,"delivery_percent":0.15},"location":{"distance":4.2831511732203,"street":"1000 3RD AVE","city":"NEW YORK","state":"NY","zip":"10022","longitude":-73.966496,"latitude":40.761871,"landmark":"Between 59th and 60th"}},{"id":"66566","summary":{"name":"Sale & Pepe Catering","cuisines":null,"phone":"555-555-5555","description":"Established In May of 1990 with the belief that New Yorkers needed a new excellence in catering at a believable price, the business has fast become one of the most popular establishments in the prestigious Wall Street area. The Sale & Pepe Catering Department offers complete office catering and an extensive party planning service. The service is highly recognized for using only the finest quality foods, artistic presentations, and a trained professional staff.","overall_rating":0,"num_ratings":0,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"nyc","short_tag":"sale-pepe-catering","complete":"https:\/\/staging.delivery.com\/nyc\/sale-pepe-catering"},"activation_date":"2011-11-11"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":1425,"specials":null,"last_or_next_order_time":"2014-04-12 05:00:00","minimum":50,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.28490116784194,"street":"1 EXCHANGE PL","city":"NEW YORK","state":"NY","zip":"10005","longitude":-74.00947,"latitude":40.705677,"landmark":"Trinity Place and Exchange Alley (rear of 55 Broadway)"}},{"id":"66626","summary":{"name":"Rosella's Pizzeria","cuisines":["Italian","Pizza","Sandwiches"],"phone":"555-555-5555","description":"","overall_rating":92,"num_ratings":40,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"rosellas-pizzeria","complete":"https:\/\/staging.delivery.com\/nyc\/rosellas-pizzeria"},"activation_date":"2011-10-04"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 10:00:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.23817902199088,"street":"164 WILLIAM ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.005836,"latitude":40.710125,"landmark":"Between Ann St & Beekman St"}},{"id":"66627","summary":{"name":"Carnegie Deli","cuisines":["Deli","Sandwiches"],"phone":"555-555-5555","description":"","overall_rating":48,"num_ratings":4,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"carnegie-deli","complete":"https:\/\/staging.delivery.com\/nyc\/carnegie-deli"},"activation_date":"2011-10-11"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 23:30:00","minimum":15,"is_open":true,"delivery_charge":25,"delivery_percent":0},"location":{"distance":4.1318034821663,"street":"854 7TH AVE","city":"NEW YORK","state":"NY","zip":"10019","longitude":-73.980982,"latitude":40.764022,"landmark":"Between W 55th St & W 54th St"}},{"id":"66660","summary":{"name":"Kortako","cuisines":["Mexican","Korean","Fusion"],"phone":"555-555-5555","description":"","overall_rating":86,"num_ratings":43,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"kortako","complete":"https:\/\/staging.delivery.com\/nyc\/kortako"},"activation_date":"2011-12-05"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 11:00:00","minimum":7,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.27937843287781,"street":"80 NASSAU ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.007998,"latitude":40.709781,"landmark":"near fulton street"}},{"id":"66669","summary":{"name":"Texas Rotisserie","cuisines":["American","Barbeque","Soul Food"],"phone":"555-555-5555","description":"We charge a 6% packaging fee on all deliveries. This will appear as a delivery fee on your order. This is NOT a tip.","overall_rating":82,"num_ratings":48,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"texas-rotisserie-fulton-st","complete":"https:\/\/staging.delivery.com\/nyc\/texas-rotisserie-fulton-st"},"activation_date":"2011-10-07"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-12 21:00:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.19823758218223,"street":"94 FULTON ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.006248,"latitude":40.709335,"landmark":"Between William & Gold"}},{"id":"66670","summary":{"name":"Wrap Star (Brought to you by Texas Rotisserie)","cuisines":["Sandwiches"],"phone":"555-555-5555","description":"","overall_rating":85,"num_ratings":10,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"wrap-star-fulton-st","complete":"https:\/\/staging.delivery.com\/nyc\/wrap-star-fulton-st"},"activation_date":"2011-10-04"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 21:45:00","minimum":10,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.19823758218223,"street":"94 FULTON ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.006248,"latitude":40.709335,"landmark":"Between William & Gold"}},{"id":"66734","summary":{"name":"Agozar Catering","cuisines":["Latin","Cuban"],"phone":"555-555-5555","description":"A 12% set-up fee will be applied to all off-premise catering orders.","overall_rating":0,"num_ratings":0,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"nyc","short_tag":"agozar-catering","complete":"https:\/\/staging.delivery.com\/nyc\/agozar-catering"},"activation_date":"2011-10-13"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":2865,"specials":null,"last_or_next_order_time":"2014-04-12 21:45:00","minimum":100,"is_open":false,"delivery_charge":20,"delivery_percent":0},"location":{"distance":1.4281261670485,"street":"324 BOWERY","city":"NEW YORK","state":"NY","zip":"10012","longitude":-73.992355,"latitude":40.725479,"landmark":"Bleecker st & Bond st"}},{"id":"66805","summary":{"name":"Burrito House","cuisines":["Mexican","Tex-Mex"],"phone":"555-555-5555","description":"","overall_rating":79,"num_ratings":41,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"burrito-house","complete":"https:\/\/staging.delivery.com\/nyc\/burrito-house"},"activation_date":"2011-10-04"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":30,"specials":["10% Off for First Time Users"],"last_or_next_order_time":"2014-04-10 22:30:00","minimum":11,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.65312266619277,"street":"189 CHURCH ST","city":"NEW YORK","state":"NY","zip":"10007","longitude":-74.006986,"latitude":40.716114,"landmark":"Between Thomas & Duane Street"}},{"id":"66844","summary":{"name":"Hamptons Market Place","cuisines":["Deli","Sandwiches"],"phone":"555-555-5555","description":"Preliminary product list. Much more to come.","overall_rating":52,"num_ratings":19,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"hamptons-market-place-10013","complete":"https:\/\/staging.delivery.com\/nyc\/hamptons-market-place-10013"},"activation_date":"2011-12-09"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":30,"specials":["10% Off for First Time Users"],"last_or_next_order_time":"2014-04-17 00:00:00","minimum":10,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.58031754800204,"street":"1 MOTT ST","city":"NEW YORK","state":"NY","zip":"10013","longitude":-73.998736,"latitude":40.714164,"landmark":"Corner of Worth St"}},{"id":"66913","summary":{"name":"Hamachi Sushi","cuisines":["Japanese","Asian","Seafood"],"phone":"555-555-5555","description":"","overall_rating":94,"num_ratings":154,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"hamachi-sushi","complete":"https:\/\/staging.delivery.com\/nyc\/hamachi-sushi"},"activation_date":"2011-11-01"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":["20% Off for First Time Users"],"last_or_next_order_time":"2014-04-10 22:45:00","minimum":10,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.58346007274194,"street":"63A READE ST","city":"NEW YORK","state":"NY","zip":"10007","longitude":-74.006862,"latitude":40.715101,"landmark":"Between Church and Broadway"}},{"id":"67109","summary":{"name":"Accord Asian Cuisine","cuisines":["Japanese","Asian","Chinese","Thai"],"phone":"555-555-5555","description":"","overall_rating":79,"num_ratings":166,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"accord-asian-cuisine","complete":"https:\/\/staging.delivery.com\/nyc\/accord-asian-cuisine"},"activation_date":"2011-12-01"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 00:45:00","minimum":5,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.56615342749571,"street":"1 E BROADWAY","city":"NEW YORK","state":"NY","zip":"10038","longitude":-73.997579,"latitude":40.713323,"landmark":"Intersection of Worth and Oliver Street"}},{"id":"67125","summary":{"name":"Empire Steak House","cuisines":["Steaks","Seafood"],"phone":"555-555-5555","description":"","overall_rating":51,"num_ratings":4,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"empire-steak-house","complete":"https:\/\/staging.delivery.com\/nyc\/empire-steak-house"},"activation_date":"2011-11-22"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":["5% Off All Items","10% Off for First Time Users"],"last_or_next_order_time":"2014-04-10 22:45:00","minimum":150,"is_open":true,"delivery_charge":12,"delivery_percent":0},"location":{"distance":3.950628157353,"street":"36 W 52ND ST","city":"NEW YORK","state":"NY","zip":"10019","longitude":-73.977923,"latitude":40.760464,"landmark":"Between 5th and 6th Ave"}},{"id":"67127","summary":{"name":"Village Farm Smoke Shop","cuisines":null,"phone":"555-555-5555","description":"Don't forget to tip your delivery person! \r\nPlease specify a tip in the special instructions for credit card orders.","overall_rating":87,"num_ratings":16,"type":"Z","type_label":"Tobacco Shop","notes":["Located in the East Village, this neighborhood smoke shop delivers cigarettes, cigars, tobacco, and more. Village Farm Smoke Shop is open 24\/7."],"url":{"geo_tag":"nyc","short_tag":"village-farm-smoke-shop","complete":"https:\/\/staging.delivery.com\/nyc\/village-farm-smoke-shop"},"activation_date":"2011-11-12"},"ordering":{"delivery_processes_card":false,"payment_types":["credit","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-17 00:00:00","minimum":25,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":1.7949353189412,"street":"146 2ND AVE","city":"NEW YORK","state":"NY","zip":"10003","longitude":-73.986984,"latitude":40.729319,"landmark":"Corner of 9th St."}},{"id":"67130","summary":{"name":"Empire Steak House Catering","cuisines":["American","Steaks"],"phone":"555-555-5555","description":"Orders for 20 people or more, please allow at least a day's notice.","overall_rating":0,"num_ratings":0,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"nyc","short_tag":"empire-steak-house-catering","complete":"https:\/\/staging.delivery.com\/nyc\/empire-steak-house-catering"},"activation_date":"2011-12-14"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 23:00:00","minimum":100,"is_open":true,"delivery_charge":12,"delivery_percent":0},"location":{"distance":3.950628157353,"street":"36 W 52ND ST","city":"NEW YORK","state":"NY","zip":"10019","longitude":-73.977923,"latitude":40.760464,"landmark":"Between 5th and 6th Ave"}},{"id":"67367","summary":{"name":"Mehtaphor","cuisines":["Tapas"],"phone":"555-555-5555","description":"","overall_rating":68,"num_ratings":2,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"mehtaphor","complete":"https:\/\/staging.delivery.com\/nyc\/mehtaphor"},"activation_date":"2011-12-21"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 22:00:00","minimum":10,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.67673373299834,"street":"130 DUANE ST","city":"NEW YORK","state":"NY","zip":"10013","longitude":-74.007805,"latitude":40.716309,"landmark":"Corner of Curch Street"}},{"id":"67391","summary":{"name":"Jin's Empire Asian Cuisine","cuisines":["Japanese","Asian","Thai","Chinese"],"phone":"555-555-5555","description":"","overall_rating":73,"num_ratings":23,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"jins-empire","complete":"https:\/\/staging.delivery.com\/nyc\/jins-empire"},"activation_date":"2012-01-17"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":["10% Off All Items","15% Off for First Time Users"],"last_or_next_order_time":"2014-04-10 22:45:00","minimum":10,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.49356129270782,"street":"8 MURRAY ST","city":"NEW YORK","state":"NY","zip":"10007","longitude":-74.008074,"latitude":40.713424,"landmark":"bet. Broadway and Church Street"}},{"id":"67734","summary":{"name":"Quan Sushi","cuisines":["Japanese","Sushi"],"phone":"555-555-5555","description":"","overall_rating":80,"num_ratings":30,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"quan-sushi","complete":"https:\/\/staging.delivery.com\/nyc\/quan-sushi"},"activation_date":"2012-02-02"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 22:30:00","minimum":10,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":1.0076247456861,"street":"375 BROOME ST","city":"NEW YORK","state":"NY","zip":"10013","longitude":-73.996365,"latitude":40.720183,"landmark":"Between Mulberry and Mott"}},{"id":"67744","summary":{"name":"Pinkberry Catering","cuisines":["Desserts","Ice Cream"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"nyc","short_tag":"pinkberry-catering-test-listing","complete":"https:\/\/staging.delivery.com\/nyc\/pinkberry-catering-test-listing"},"activation_date":"2013-11-01"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":2865,"specials":["10% Off for First Time Users"],"last_or_next_order_time":"2014-04-12 21:45:00","minimum":350,"is_open":false,"delivery_charge":75,"delivery_percent":0},"location":{"distance":2.9658001516755,"street":"7 W 32ND ST","city":"NEW YORK","state":"NY","zip":"10001","longitude":-73.986835,"latitude":40.747726,"landmark":"Between 5th Ave & Broadway"}},{"id":"67828","summary":{"name":"37 Liberty Caterers","cuisines":["Deli","Cafe","Sandwiches","Italian"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"nyc","short_tag":"37-liberty-caterers","complete":"https:\/\/staging.delivery.com\/nyc\/37-liberty-caterers"},"activation_date":"2013-04-26"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":1470,"specials":["10% Off for First Time Users","5% Off All Orders Over $100"],"last_or_next_order_time":"2014-04-14 08:00:00","minimum":25,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":3.5144958657431,"street":"37 W 43RD ST","city":"NEW YORK","state":"NY","zip":"10036","longitude":-73.981537,"latitude":40.754745,"landmark":"Between 5th & 6th Avenue"}},{"id":"67920","summary":{"name":"Burro Borracho","cuisines":["Mexican"],"phone":"555-555-5555","description":"","overall_rating":60,"num_ratings":21,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"burro-borracho","complete":"https:\/\/staging.delivery.com\/nyc\/burro-borracho"},"activation_date":"2012-02-20"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":30,"specials":["10% Off for First Time Users"],"last_or_next_order_time":"2014-04-10 22:30:00","minimum":10,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.76972532212254,"street":"251 CHURCH ST","city":"NEW YORK","state":"NY","zip":"10013","longitude":-74.005488,"latitude":40.71799,"landmark":"Between Franklin & Leonard"}},{"id":"68029","summary":{"name":"Sahara's Turkish Cuisine","cuisines":["Turkish","Mediterranean","Middle Eastern","Halal"],"phone":"555-555-5555","description":"","overall_rating":79,"num_ratings":11,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"saharas-turkish-cuisine","complete":"https:\/\/staging.delivery.com\/nyc\/saharas-turkish-cuisine"},"activation_date":"2012-02-24"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 22:30:00","minimum":100,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":2.7459174140315,"street":"513 2ND AVE","city":"NEW YORK","state":"NY","zip":"10016","longitude":-73.978447,"latitude":40.741475,"landmark":"Between 28th and 29th"}},{"id":"68079","summary":{"name":"Cafe 41","cuisines":["Salads","Pizza","Cafe","American"],"phone":"555-555-5555","description":"","overall_rating":68,"num_ratings":2,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"cafe-41","complete":"https:\/\/staging.delivery.com\/nyc\/cafe-41"},"activation_date":"2012-02-24"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":["10% Off All Orders Over $15"],"last_or_next_order_time":"2014-04-10 21:45:00","minimum":12,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.26103672980894,"street":"41 JOHN ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.008001,"latitude":40.709394,"landmark":"Nassau & Williams"}},{"id":"68129","summary":{"name":"Popbar","cuisines":["Desserts"],"phone":"555-555-5555","description":"Please allow 45-120 minutes for delivery.","overall_rating":0,"num_ratings":0,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"popbar","complete":"https:\/\/staging.delivery.com\/nyc\/popbar"},"activation_date":"2012-03-01"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 12:00:00","minimum":60,"is_open":false,"delivery_charge":15,"delivery_percent":0},"location":{"distance":1.636968912339,"street":"5 CARMINE ST","city":"NEW YORK","state":"NY","zip":"10014","longitude":-74.0019,"latitude":40.730511,"landmark":"Between Bleecker & 6th Ave"}},{"id":"68150","summary":{"name":"Coffee Distributing Corp.","cuisines":null,"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"O","type_label":"Office Supply","notes":null,"url":{"geo_tag":null,"short_tag":"coffee-distributing-corp-","complete":"https:\/\/staging.delivery.com\/menu\/coffee-distributing-corp-"},"activation_date":"2012-07-27"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":0,"specials":null,"last_or_next_order_time":"2014-04-13 17:00:00","minimum":50,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":18.324221031311,"street":"200 BROADWAY","city":"GARDEN CITY PARK","state":"NY","zip":"11040","longitude":-73.656841,"latitude":40.738448,"landmark":"Between Thorens Ave and Armstrong Road"}},{"id":"68158","summary":{"name":"Blue Planet Grill","cuisines":["American","Burgers","Latin","Seafood"],"phone":"555-555-5555","description":"","overall_rating":70,"num_ratings":7,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"blue-planet-grill","complete":"https:\/\/staging.delivery.com\/nyc\/blue-planet-grill"},"activation_date":"2012-03-16"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 11:00:00","minimum":15,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.49534227833626,"street":"120 GREENWICH ST","city":"NEW YORK","state":"NY","zip":"10006","longitude":-74.013265,"latitude":40.709104,"landmark":"Albany Street"}},{"id":"68190","summary":{"name":"Shanghai Gourmet","cuisines":["Chinese","Asian","Soups"],"phone":"555-555-5555","description":"","overall_rating":84,"num_ratings":14,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"shanghai-gourmet","complete":"https:\/\/staging.delivery.com\/nyc\/shanghai-gourmet"},"activation_date":"2012-03-23"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":30,"specials":["20% Off All Orders Over $10"],"last_or_next_order_time":"2014-04-11 11:00:00","minimum":20,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.63551633776495,"street":"23 PELL ST","city":"NEW YORK","state":"NY","zip":"10013","longitude":-73.998092,"latitude":40.714804,"landmark":"Between Mott St and Bowery"}},{"id":"68219","summary":{"name":"Benvenuti","cuisines":["Italian","Pizza"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":1,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"benvenuti","complete":"https:\/\/staging.delivery.com\/nyc\/benvenuti"},"activation_date":"2012-03-16"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 09:00:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.6830826646503,"street":"235 S END AVE","city":"NEW YORK","state":"NY","zip":"10280","longitude":-74.016756,"latitude":40.709745,"landmark":"Rector Place and Albany St."}},{"id":"68247","summary":{"name":"Gan Asia","cuisines":["Sushi","Thai","Chinese","Kosher"],"phone":"555-555-5555","description":"","overall_rating":64,"num_ratings":8,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"gan-asia","complete":"https:\/\/staging.delivery.com\/nyc\/gan-asia"},"activation_date":"2012-03-26"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 22:30:00","minimum":80,"is_open":true,"delivery_charge":5,"delivery_percent":0},"location":{"distance":6.1518971700297,"street":"691 AMSTERDAM AVE","city":"NEW YORK","state":"NY","zip":"10025","longitude":-73.971422,"latitude":40.792372,"landmark":"93rd Street & 94th Street"}},{"id":"68765","summary":{"name":"Bombay's Indian Restaurant","cuisines":["Indian"],"phone":"555-555-5555","description":"","overall_rating":96,"num_ratings":8,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"bombays-indian-restaurant","complete":"https:\/\/staging.delivery.com\/nyc\/bombays-indian-restaurant"},"activation_date":"2012-06-07"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 12:00:00","minimum":12,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.42970677580881,"street":"60 PEARL ST","city":"NEW YORK","state":"NY","zip":"10004","longitude":-74.011203,"latitude":40.703563,"landmark":"Broad Street"}},{"id":"68863","summary":{"name":"MiN New York","cuisines":null,"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"H","type_label":"Health and Beauty Store","notes":null,"url":{"geo_tag":"nyc","short_tag":"min-new-york","complete":"https:\/\/staging.delivery.com\/nyc\/min-new-york"},"activation_date":"2012-09-27"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":225,"specials":null,"last_or_next_order_time":"2014-04-11 12:00:00","minimum":10,"is_open":false,"delivery_charge":10,"delivery_percent":0},"location":{"distance":1.2819848268821,"street":"117 CROSBY ST","city":"NEW YORK","state":"NY","zip":"10012","longitude":-73.996441,"latitude":40.724467,"landmark":"Between Jersey & Prince"}},{"id":"69023","summary":{"name":"Lemon Leaves","cuisines":["Thai"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":1,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"lemon-leaves","complete":"https:\/\/staging.delivery.com\/nyc\/lemon-leaves"},"activation_date":"2012-06-26"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 21:45:00","minimum":10,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.2470225153483,"street":"45 NASSAU ST","city":"NEW YORK","state":"NY","zip":"10005","longitude":-74.008829,"latitude":40.705971,"landmark":"Maiden Lane"}},{"id":"69078","summary":{"name":"Seasons","cuisines":["Glatt Kosher","Kosher","Deli"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"nyc","short_tag":"seasons-amsterdam-ave","complete":"https:\/\/staging.delivery.com\/nyc\/seasons-amsterdam-ave"},"activation_date":"2012-08-14"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 09:00:00","minimum":50,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":6.1082123611722,"street":"661 AMSTERDAM AVE","city":"NEW YORK","state":"NY","zip":"10025","longitude":-73.97197,"latitude":40.791834,"landmark":"92nd & 93rd"}},{"id":"69087","summary":{"name":"Cafe Bravo","cuisines":["Cafe","Sandwiches"],"phone":"555-555-5555","description":"","overall_rating":99,"num_ratings":35,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"cafe-bravo","complete":"https:\/\/staging.delivery.com\/nyc\/cafe-bravo"},"activation_date":"2012-07-11"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 07:00:00","minimum":5,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.46817140564345,"street":"52 BROADWAY","city":"NEW YORK","state":"NY","zip":"10004","longitude":-74.013099,"latitude":40.705829,"landmark":"Exchange Place"}},{"id":"69089","summary":{"name":"Cafe Bravo","cuisines":["Cafe","Sandwiches"],"phone":"555-555-5555","description":"","overall_rating":30,"num_ratings":2,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"cafe-bravo-hanover-sq","complete":"https:\/\/staging.delivery.com\/nyc\/cafe-bravo-hanover-sq"},"activation_date":"2012-07-12"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 21:45:00","minimum":5,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.30530732232752,"street":"11 HANOVER SQ","city":"NEW YORK","state":"NY","zip":"10005","longitude":-74.008987,"latitude":40.704292,"landmark":"Water St."}},{"id":"69090","summary":{"name":"Cafe Bravo","cuisines":["Cafe","Sandwiches"],"phone":"555-555-5555","description":"","overall_rating":88,"num_ratings":10,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"cafe-bravo-greenwich-st","complete":"https:\/\/staging.delivery.com\/nyc\/cafe-bravo-greenwich-st"},"activation_date":"2012-07-12"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-17 00:00:00","minimum":5,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.49853678092479,"street":"94 GREENWICH ST","city":"NEW YORK","state":"NY","zip":"10006","longitude":-74.013588,"latitude":40.708363,"landmark":"Corner of Greenwich and Rector St"}},{"id":"69091","summary":{"name":"Planet Gyro","cuisines":["Burgers","Hot Dogs","American","Diner"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":1,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"planet-gyro","complete":"https:\/\/staging.delivery.com\/nyc\/planet-gyro"},"activation_date":"2012-07-09"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 11:00:00","minimum":5,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.50361809553089,"street":"16 RECTOR ST","city":"NEW YORK","state":"NY","zip":"10006","longitude":-74.013767,"latitude":40.708031,"landmark":"Greenwich St Washington St"}},{"id":"69209","summary":{"name":"Wine on Nine","cuisines":null,"phone":"555-555-5555","description":"Credit card must be presented at the time of delivery so the restaurant can obtain an imprint and signature. They may also require proper identification that matches the credit card holder.","overall_rating":76,"num_ratings":17,"type":"W","type_label":"Wine and Liquor Store","notes":null,"url":{"geo_tag":"nyc","short_tag":"wine-on-nine","complete":"https:\/\/staging.delivery.com\/nyc\/wine-on-nine"},"activation_date":"2012-06-19"},"ordering":{"delivery_processes_card":false,"payment_types":["credit","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 23:15:00","minimum":50,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":2.6337790252304,"street":"177 9TH AVE","city":"NEW YORK","state":"NY","zip":"10011","longitude":-74.002436,"latitude":40.74498,"landmark":"Between 20th and 21st"}},{"id":"69235","summary":{"name":"Asian Wok","cuisines":["Chinese","Asian"],"phone":"555-555-5555","description":"","overall_rating":84,"num_ratings":27,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"asian-wok","complete":"https:\/\/staging.delivery.com\/nyc\/asian-wok"},"activation_date":"2012-07-01"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 21:45:00","minimum":8,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.18424702358684,"street":"88 FULTON ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.006004,"latitude":40.709209,"landmark":"Gold St. & William St."}},{"id":"69381","summary":{"name":"BentOn Cafe","cuisines":["Korean","Japanese","Healthy","Sushi"],"phone":"555-555-5555","description":"","overall_rating":51,"num_ratings":4,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"soma-by-nature","complete":"https:\/\/staging.delivery.com\/nyc\/soma-by-nature"},"activation_date":"2012-08-16"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 11:30:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.21083424754758,"street":"123 WILLIAM ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.007005,"latitude":40.709128,"landmark":"John St. & Fulton St."}},{"id":"69389","summary":{"name":"Pita Express","cuisines":["Mediterranean","Kosher"],"phone":"555-555-5555","description":"","overall_rating":86,"num_ratings":4,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"pita-express","complete":"https:\/\/staging.delivery.com\/nyc\/pita-express"},"activation_date":"2012-08-06"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 11:30:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.3449214388674,"street":"15 ANN ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.007896,"latitude":40.711056,"landmark":"Park Row Nassau St"}},{"id":"69391","summary":{"name":"Terrace Fish & Chips","cuisines":["Seafood","Sandwiches"],"phone":"555-555-5555","description":"","overall_rating":100,"num_ratings":5,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"terrace-fish-chips","complete":"https:\/\/staging.delivery.com\/nyc\/terrace-fish-chips"},"activation_date":"2012-07-30"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 11:30:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.38855805019811,"street":"77 PEARL ST","city":"NEW YORK","state":"NY","zip":"10004","longitude":-74.010482,"latitude":40.703814,"landmark":"Coenties Slip & Hanover Sq"}},{"id":"69409","summary":{"name":"Red Egg","cuisines":["Chinese","Fusion"],"phone":"555-555-5555","description":"","overall_rating":78,"num_ratings":14,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"red-egg","complete":"https:\/\/staging.delivery.com\/nyc\/red-egg"},"activation_date":"2012-08-22"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 22:15:00","minimum":15,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.87404508756027,"street":"202 CENTRE ST","city":"New York","state":"NY","zip":"10013","longitude":-73.999054,"latitude":40.718904,"landmark":"Howard St."}},{"id":"69523","summary":{"name":"Max Restaurant","cuisines":["Italian"],"phone":"555-555-5555","description":"","overall_rating":90,"num_ratings":3,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"max-restaurant","complete":"https:\/\/staging.delivery.com\/nyc\/max-restaurant"},"activation_date":"2012-08-22"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 12:00:00","minimum":15,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.73848390440326,"street":"181 DUANE ST","city":"NEW YORK","state":"NY","zip":"10013","longitude":-74.00911,"latitude":40.716927,"landmark":"Houston St."}},{"id":"69524","summary":{"name":"Gee Whiz Diner","cuisines":["Diner"],"phone":"555-555-5555","description":"","overall_rating":75,"num_ratings":8,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"gee-whiz-diner","complete":"https:\/\/staging.delivery.com\/nyc\/gee-whiz-diner"},"activation_date":"2012-08-29"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 23:45:00","minimum":10,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.71669745830004,"street":"295 GREENWICH ST","city":"NEW YORK","state":"NY","zip":"10007","longitude":-74.010858,"latitude":40.71598,"landmark":"Chambers & Warren St."}},{"id":"69723","summary":{"name":"Koko Asian Fusion","cuisines":["Asian","Fusion"],"phone":"555-555-5555","description":"","overall_rating":70,"num_ratings":7,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"koko-asian-fusion","complete":"https:\/\/staging.delivery.com\/nyc\/koko-asian-fusion"},"activation_date":"2012-08-27"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 22:00:00","minimum":8,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.49534227833626,"street":"120 GREENWICH ST","city":"NEW YORK","state":"NY","zip":"10006","longitude":-74.013265,"latitude":40.709104,"landmark":"Albany St"}},{"id":"70097","summary":{"name":"Dinkies","cuisines":["Cafe","Desserts","American","Sandwiches"],"phone":"555-555-5555","description":"","overall_rating":74,"num_ratings":6,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"dinkies","complete":"https:\/\/staging.delivery.com\/nyc\/dinkies"},"activation_date":"2012-10-16"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 22:45:00","minimum":18,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.82831819972418,"street":"118 BAXTER ST","city":"NEW YORK","state":"NY","zip":"10013","longitude":-73.999641,"latitude":40.718351,"landmark":"Between Canal and Hester St"}},{"id":"70358","summary":{"name":"Suteishi","cuisines":["Japanese","Sushi"],"phone":"555-555-5555","description":"","overall_rating":85,"num_ratings":4,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"suteishi","complete":"https:\/\/staging.delivery.com\/nyc\/suteishi"},"activation_date":"2012-10-19"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":["15% Off for First Time Users"],"last_or_next_order_time":"2014-04-10 22:00:00","minimum":15,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.14745965352094,"street":"24 PECK SLIP","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.001894,"latitude":40.708032,"landmark":"Corner of Front St"}},{"id":"70681","summary":{"name":"Excellent Dumpling House","cuisines":["Chinese"],"phone":"555-555-5555","description":"","overall_rating":87,"num_ratings":17,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"excellent-dumpling-house","complete":"https:\/\/staging.delivery.com\/nyc\/excellent-dumpling-house"},"activation_date":"2012-11-06"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 11:00:00","minimum":15,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.80909131073389,"street":"111 LAFAYETTE ST","city":"NEW YORK","state":"NY","zip":"10013","longitude":-74.000635,"latitude":40.718269,"landmark":"Canal St and Walker St"}},{"id":"70808","summary":{"name":"LCInc Caterers","cuisines":["Italian","American","Mediterranean","Seafood"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"queens","short_tag":"lcinc-caterers","complete":"https:\/\/staging.delivery.com\/queens\/lcinc-caterers"},"activation_date":"2013-01-04"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":1425,"specials":null,"last_or_next_order_time":"2014-04-11 21:45:00","minimum":500,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":9.1305737510882,"street":"11208 101ST AVE","city":"SOUTH RICHMOND HILL","state":"NY","zip":"11419","longitude":-73.83171,"latitude":40.68832,"landmark":"Between 75th and Drew St"}},{"id":"70843","summary":{"name":"Stamina Grill & Juice Bar","cuisines":["Healthy"],"phone":"555-555-5555","description":"","overall_rating":78,"num_ratings":8,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"stamina-grill-juice-bar","complete":"https:\/\/staging.delivery.com\/nyc\/stamina-grill-juice-bar"},"activation_date":"2013-01-08"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 07:30:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.27937843287781,"street":"80 NASSAU ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.007998,"latitude":40.709781,"landmark":"Fulton St & John St"}},{"id":"70899","summary":{"name":"My Belly's Playlist","cuisines":["American","Sandwiches"],"phone":"555-555-5555","description":"","overall_rating":70,"num_ratings":3,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"my-bellys-playlist","complete":"https:\/\/staging.delivery.com\/nyc\/my-bellys-playlist"},"activation_date":"2012-10-17"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 11:00:00","minimum":12,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.55694380718238,"street":"41 MURRAY ST","city":"NEW YORK","state":"NY","zip":"10007","longitude":-74.009259,"latitude":40.714007,"landmark":"Under Eamon's Bar, between Church & Broadway"}},{"id":"70979","summary":{"name":"FiDi Wine & Liquor","cuisines":null,"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"W","type_label":"Wine and Liquor Store","notes":null,"url":{"geo_tag":"nyc","short_tag":"financial-district-wine-liquor","complete":"https:\/\/staging.delivery.com\/nyc\/financial-district-wine-liquor"},"activation_date":"2013-03-13"},"ordering":{"delivery_processes_card":false,"payment_types":["credit","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 22:15:00","minimum":20,"is_open":true,"delivery_charge":4,"delivery_percent":0},"location":{"distance":0.30472655889476,"street":"120 NASSAU ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.006825,"latitude":40.710851,"landmark":"Between William and Ann St"}},{"id":"71104","summary":{"name":"East End Wine Exchange","cuisines":null,"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"W","type_label":"Wine and Liquor Store","notes":null,"url":{"geo_tag":"nyc","short_tag":"east-end-wine-exchange","complete":"https:\/\/staging.delivery.com\/nyc\/east-end-wine-exchange"},"activation_date":"2013-07-25"},"ordering":{"delivery_processes_card":false,"payment_types":["credit","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 10:00:00","minimum":50,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":5.4619309482917,"street":"68 E END AVE","city":"NEW YORK","state":"NY","zip":"10028","longitude":-73.946529,"latitude":40.772724,"landmark":"Between E 82nd and E 83rd St"}},{"id":"71105","summary":{"name":"New York Wine Exchange","cuisines":null,"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"W","type_label":"Wine and Liquor Store","notes":null,"url":{"geo_tag":"nyc","short_tag":"new-york-wine-exchange","complete":"https:\/\/staging.delivery.com\/nyc\/new-york-wine-exchange"},"activation_date":"2013-07-25"},"ordering":{"delivery_processes_card":false,"payment_types":["credit","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 08:00:00","minimum":50,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.53090689150086,"street":"9 BROADWAY","city":"NEW YORK","state":"NY","zip":"10004","longitude":-74.014117,"latitude":40.705065,"landmark":"Battery Pl"}},{"id":"71309","summary":{"name":"T&C Catering","cuisines":["American","Soul Food","Spanish","Carribbean"],"phone":"555-555-5555","description":"Our company is based on the belief that our customers' needs are of the utmost importance. Our entire team is committed to meeting those needs. As a result, a high percentage of our business is from repeat customers and referrals. We would welcome the opportunity to earn your trust and deliver you the best service in the industry.","overall_rating":0,"num_ratings":0,"type":"C","type_label":"Caterer","notes":["Please note that 24 hours notice is required on all orders."],"url":{"geo_tag":"brooklyn","short_tag":"t-c-catering","complete":"https:\/\/staging.delivery.com\/brooklyn\/t-c-catering"},"activation_date":"2013-03-01"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":1425,"specials":null,"last_or_next_order_time":"2014-04-11 21:45:00","minimum":200,"is_open":false,"delivery_charge":30,"delivery_percent":0},"location":{"distance":5.3085485343535,"street":"3113 CLARENDON RD","city":"BROOKLYN","state":"NY","zip":"11226","longitude":-73.947326,"latitude":40.64335,"landmark":"31st st & 32nd st"}},{"id":"71567","summary":{"name":"Benares","cuisines":["Indian"],"phone":"555-555-5555","description":"","overall_rating":70,"num_ratings":4,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"benares","complete":"https:\/\/staging.delivery.com\/nyc\/benares"},"activation_date":"2012-12-19"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 21:45:00","minimum":10,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.57746718430497,"street":"45 MURRAY ST","city":"NEW YORK","state":"NY","zip":"10007","longitude":-74.009647,"latitude":40.714185,"landmark":"Between Church and W Broadway"}},{"id":"71593","summary":{"name":"Vino Fine Wines & Spirits","cuisines":null,"phone":"555-555-5555","description":"Please allow a 45 min. delivery time for neighborhood deliveries. For all deliveries outside our local neighborhood, please allow up to 2 1\/2 hours.","overall_rating":100,"num_ratings":2,"type":"W","type_label":"Wine and Liquor Store","notes":null,"url":{"geo_tag":"nyc","short_tag":"vino-fine-wines-spirits","complete":"https:\/\/staging.delivery.com\/nyc\/vino-fine-wines-spirits"},"activation_date":"2013-01-08"},"ordering":{"delivery_processes_card":false,"payment_types":["credit","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 14:30:00","minimum":100,"is_open":false,"delivery_charge":10,"delivery_percent":0},"location":{"distance":2.6835092745025,"street":"121 E 27TH ST","city":"NEW YORK","state":"NY","zip":"10016","longitude":-73.983707,"latitude":40.742461,"landmark":"27th Street"}},{"id":"71682","summary":{"name":"Rosella's Italian Catering","cuisines":["Italian","American"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":1,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"nyc","short_tag":"rosellas-italian-catering","complete":"https:\/\/staging.delivery.com\/nyc\/rosellas-italian-catering"},"activation_date":"2013-01-18"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":225,"specials":null,"last_or_next_order_time":"2014-04-11 10:00:00","minimum":5,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.23817902199088,"street":"164 WILLIAM ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.005836,"latitude":40.710125,"landmark":"Beekman St"}},{"id":"71694","summary":{"name":"Burrito House Catering","cuisines":["Mexican"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"nyc","short_tag":"burrito-house-catering","complete":"https:\/\/staging.delivery.com\/nyc\/burrito-house-catering"},"activation_date":"2013-01-08"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 22:30:00","minimum":7,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.65312266619277,"street":"189 CHURCH ST","city":"NEW YORK","state":"NY","zip":"10007","longitude":-74.006986,"latitude":40.716114,"landmark":"Between Thomas & Duane Street"}},{"id":"71794","summary":{"name":"Perfection Catering & Events","cuisines":["American","Italian","Sandwiches","Mediterranean"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"nyc","short_tag":"perfection-catering-events","complete":"https:\/\/staging.delivery.com\/nyc\/perfection-catering-events"},"activation_date":"2013-02-19"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":["10% Off for First Time Users"],"last_or_next_order_time":"2014-04-11 08:00:00","minimum":75,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":1.4883724932769,"street":"321 E HOUSTON ST FRNT A","city":"NEW YORK","state":"NY","zip":"10002","longitude":-73.982896,"latitude":40.721083,"landmark":"Between Attorney and Ridge St"}},{"id":"71807","summary":{"name":"Akimoto Sushi","cuisines":["Japanese","Sushi"],"phone":"555-555-5555","description":"","overall_rating":85,"num_ratings":17,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"akimoto-sushi","complete":"https:\/\/staging.delivery.com\/nyc\/akimoto-sushi"},"activation_date":"2013-03-01"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 22:45:00","minimum":10,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.64643022315132,"street":"187 CHURCH ST","city":"NEW YORK","state":"NY","zip":"10007","longitude":-74.007099,"latitude":40.715995,"landmark":"Duane St"}},{"id":"71923","summary":{"name":"Big Al's Pizza","cuisines":["Pizza","Italian"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"big-als-pizza","complete":"https:\/\/staging.delivery.com\/nyc\/big-als-pizza"},"activation_date":"2013-02-20"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 09:00:00","minimum":15,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.40808293229596,"street":"9 THAMES ST","city":"NEW YORK","state":"NY","zip":"10006","longitude":-74.011541,"latitude":40.709012,"landmark":"Between Trinity Pl and Broadway"}},{"id":"71959","summary":{"name":"Pita Grill (Catering)","cuisines":["Mediterranean"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"nyc","short_tag":"pita-grill-catering-","complete":"https:\/\/staging.delivery.com\/nyc\/pita-grill-catering-"},"activation_date":"2013-01-07"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":165,"specials":null,"last_or_next_order_time":"2014-04-11 11:00:00","minimum":9,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":2.8389933744553,"street":"441 3RD AVE","city":"NEW YORK","state":"NY","zip":"10016","longitude":-73.979593,"latitude":40.743472,"landmark":"East 30th St & East 31st St."}},{"id":"72082","summary":{"name":"Toloache Taqueria","cuisines":["Mexican"],"phone":"555-555-5555","description":"","overall_rating":40,"num_ratings":4,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"toloache-taqueria","complete":"https:\/\/staging.delivery.com\/nyc\/toloache-taqueria"},"activation_date":"2013-03-01"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 10:00:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.18399687215671,"street":"83 MAIDEN LN","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.007623,"latitude":40.707685,"landmark":"Between William Gold St"}},{"id":"72089","summary":{"name":"Tri-Boro Beverage","cuisines":null,"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"W","type_label":"Wine and Liquor Store","notes":null,"url":{"geo_tag":"queens","short_tag":"tri-boro-beverage","complete":"https:\/\/staging.delivery.com\/queens\/tri-boro-beverage"},"activation_date":"2013-02-19"},"ordering":{"delivery_processes_card":false,"payment_types":["credit","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 09:00:00","minimum":100,"is_open":false,"delivery_charge":40,"delivery_percent":0},"location":{"distance":6.5428947703563,"street":"4108 ASTORIA BLVD","city":"ASTORIA","state":"NY","zip":"11103","longitude":-73.909489,"latitude":40.768603,"landmark":"Between 41st St & 42nd St"}},{"id":"72126","summary":{"name":"98 Saffron Fresh Indian","cuisines":["Indian","Fast Food"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"98-saffron-fresh-indian","complete":"https:\/\/staging.delivery.com\/nyc\/98-saffron-fresh-indian"},"activation_date":"2013-02-11"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 12:00:00","minimum":12,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.57012802223415,"street":"98 CHAMBERS ST","city":"NEW YORK","state":"NY","zip":"10007","longitude":-74.007593,"latitude":40.714746,"landmark":"Between Church St and Broadway"}},{"id":"72167","summary":{"name":"Philippe Liquors","cuisines":null,"phone":"555-555-5555","description":"***Please have credit card and form of ID present at the time of delivery***","overall_rating":0,"num_ratings":1,"type":"W","type_label":"Wine and Liquor Store","notes":null,"url":{"geo_tag":"nyc","short_tag":"philippe-liquors","complete":"https:\/\/staging.delivery.com\/nyc\/philippe-liquors"},"activation_date":"2013-02-13"},"ordering":{"delivery_processes_card":false,"payment_types":["cash","credit"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 09:00:00","minimum":75,"is_open":false,"delivery_charge":10,"delivery_percent":0},"location":{"distance":2.6720460029389,"street":"312 W 23RD ST","city":"NEW YORK","state":"NY","zip":"10011","longitude":-73.998958,"latitude":40.745349,"landmark":"Between 8th and 9th Ave"}},{"id":"72263","summary":{"name":"Paris Authentic Vietnamese","cuisines":["Vietnamese"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"paris-authentic-vietnamese","complete":"https:\/\/staging.delivery.com\/nyc\/paris-authentic-vietnamese"},"activation_date":"2013-03-07"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 11:00:00","minimum":15,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.8322264979479,"street":"113 MOTT ST","city":"NEW YORK","state":"NY","zip":"10013","longitude":-73.997228,"latitude":40.717685,"landmark":"Hester St"}},{"id":"72313","summary":{"name":"Rosetta Wines","cuisines":null,"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"W","type_label":"Wine and Liquor Store","notes":null,"url":{"geo_tag":"nyc","short_tag":"rosetta-wines","complete":"https:\/\/staging.delivery.com\/nyc\/rosetta-wines"},"activation_date":"2013-03-05"},"ordering":{"delivery_processes_card":false,"payment_types":["credit","cash"],"is_rds":false,"time_needed":30,"specials":["10% Off for First Time Users"],"last_or_next_order_time":"2014-04-11 10:00:00","minimum":20,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.31522600184443,"street":"40 EXCHANGE PL","city":"NEW YORK","state":"NY","zip":"10005","longitude":-74.010044,"latitude":40.7056,"landmark":"William and Exchange"}},{"id":"72335","summary":{"name":"Chubby Mary's","cuisines":["Sandwiches"],"phone":"555-555-5555","description":"Attn: For \"Cash Orders\" merchant does not have change for any large bills over $20. Please make sure you have change.","overall_rating":77,"num_ratings":3,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"chubby-marys","complete":"https:\/\/staging.delivery.com\/nyc\/chubby-marys"},"activation_date":"2013-02-22"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":["10% Off All Orders Over $50"],"last_or_next_order_time":"2014-04-10 22:45:00","minimum":24,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":2.0224610040412,"street":"328 E 14TH ST","city":"NEW YORK","state":"NY","zip":"10003","longitude":-73.984314,"latitude":40.731947,"landmark":"Between 1st and 2nd Ave"}},{"id":"72501","summary":{"name":"West Coast Wine & Liquors","cuisines":null,"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"W","type_label":"Wine and Liquor Store","notes":null,"url":{"geo_tag":"nyc","short_tag":"west-coast-wines-liquors","complete":"https:\/\/staging.delivery.com\/nyc\/west-coast-wines-liquors"},"activation_date":"2013-03-08"},"ordering":{"delivery_processes_card":false,"payment_types":["credit"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 11:00:00","minimum":100,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":6.0087073090849,"street":"1440 LEXINGTON AVE","city":"NEW YORK","state":"NY","zip":"10128","longitude":-73.95206,"latitude":40.784331,"landmark":"93rd & 94th"}},{"id":"72609","summary":{"name":"Zeytuna Market","cuisines":null,"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"I","type_label":"Grocery Store","notes":null,"url":{"geo_tag":"nyc","short_tag":"zeytuna-market","complete":"https:\/\/staging.delivery.com\/nyc\/zeytuna-market"},"activation_date":"2013-10-15"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 08:00:00","minimum":15,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.21849012409104,"street":"59 MAIDEN LN","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.008049,"latitude":40.708229,"landmark":"Between Nassau and William St"}},{"id":"72627","summary":{"name":"Bistro Marketplace Corporate & Event Catering","cuisines":["American","Asian","Mediterranean","Italian"],"phone":"555-555-5555","description":"All items are served in wicker baskets and high quality disposable platters and bowls. All orders include plastic plates, napkins, clear plastic cutlery, serving utensils, cups, etc. China trays and service plates, silverware and stainless steel chafers are available upon request for an additional charge (customers will be charged for lost and damaged non-disposable equipment).","overall_rating":0,"num_ratings":0,"type":"C","type_label":"Caterer","notes":["For prompt service, place your order as early as possible. Most items require 24-48 hours advance notice. You may cancel your order up to 24 hours prior to delivery at no charge. Because your order is custom prepared, cancellation ***within less than 24 hours*** will incur a 50% charge, depending on the nature of the order. Same day cancellations will be billed in full. Cancellations MAY NOT be left on our answering machine or by email. Changes and adjustements may be made up to 12 hours prior to delivery."],"url":{"geo_tag":"nyc","short_tag":"bistro-marketplace-corporate-event-catering","complete":"https:\/\/staging.delivery.com\/nyc\/bistro-marketplace-corporate-event-catering"},"activation_date":"2013-05-22"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":1425,"specials":null,"last_or_next_order_time":"2014-04-12 07:00:00","minimum":100,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":3.3969377887381,"street":"125 PARK AVE","city":"NEW YORK","state":"NY","zip":"10017","longitude":-73.977658,"latitude":40.751723,"landmark":"Between 41st and 42nd Street"}},{"id":"72644","summary":{"name":"Royal Wine Merchants","cuisines":null,"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"W","type_label":"Wine and Liquor Store","notes":null,"url":{"geo_tag":"nyc","short_tag":"royal-wine-merchants","complete":"https:\/\/staging.delivery.com\/nyc\/royal-wine-merchants"},"activation_date":"2013-05-28"},"ordering":{"delivery_processes_card":false,"payment_types":["credit","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 12:00:00","minimum":50,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.35941819437408,"street":"13 S WILLIAM ST","city":"NEW YORK","state":"NY","zip":"10004","longitude":-74.010454,"latitude":40.704633,"landmark":"Between William and Broad Street"}},{"id":"72659","summary":{"name":"Bowery & Vine","cuisines":null,"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"W","type_label":"Wine and Liquor Store","notes":null,"url":{"geo_tag":"nyc","short_tag":"bowery-vine","complete":"https:\/\/staging.delivery.com\/nyc\/bowery-vine"},"activation_date":"2013-03-14"},"ordering":{"delivery_processes_card":false,"payment_types":["credit","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 12:00:00","minimum":40,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":1.3054520788719,"street":"269 BOWERY","city":"NEW YORK","state":"NY","zip":"10002","longitude":-73.992574,"latitude":40.723572,"landmark":"E Houston"}},{"id":"72851","summary":{"name":"Acapulco Fajita Tex-Mexican Express","cuisines":["Mexican","Tex-Mex","Vegetarian","Latin"],"phone":"555-555-5555","description":"","overall_rating":93,"num_ratings":7,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"acapulco-fajita-tex-mexican-express","complete":"https:\/\/staging.delivery.com\/nyc\/acapulco-fajita-tex-mexican-express"},"activation_date":"2013-03-31"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 22:30:00","minimum":10,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.58346007274194,"street":"63 READE ST","city":"NEW YORK","state":"NY","zip":"10007","longitude":-74.006862,"latitude":40.715101,"landmark":"Broadway & Church St"}},{"id":"72894","summary":{"name":"A-Wah Hong Kong Cuisine","cuisines":["Chinese"],"phone":"555-555-5555","description":"","overall_rating":89,"num_ratings":14,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"a-wah-hong-kong-cuisine","complete":"https:\/\/staging.delivery.com\/nyc\/a-wah-hong-kong-cuisine"},"activation_date":"2013-04-10"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 11:00:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.5924386041812,"street":"5 CATHERINE ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-73.997343,"latitude":40.713666,"landmark":"Bowery"}},{"id":"72908","summary":{"name":"Molcajete Taqueria","cuisines":["Mexican"],"phone":"555-555-5555","description":"","overall_rating":64,"num_ratings":11,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"molcajete-taqueria","complete":"https:\/\/staging.delivery.com\/nyc\/molcajete-taqueria"},"activation_date":"2013-04-08"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 22:45:00","minimum":5,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":1.4217833361308,"street":"494 LAGUARDIA PL","city":"NEW YORK","state":"NY","zip":"10012","longitude":-73.999729,"latitude":40.727175,"landmark":"Between Bleeker and Houston St"}},{"id":"73056","summary":{"name":"Taz Cafe","cuisines":["American","Sandwiches","Burgers","Healthy"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"taz-cafe","complete":"https:\/\/staging.delivery.com\/nyc\/taz-cafe"},"activation_date":"2013-04-18"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 06:00:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.22124444209859,"street":"54 PINE ST","city":"NEW YORK","state":"NY","zip":"10005","longitude":-74.008484,"latitude":40.706659,"landmark":"Between Williams and Pearl St"}},{"id":"73060","summary":{"name":"Long Island Bagel Cafe NYC","cuisines":["Deli","Sandwiches","Bagelry","Breakfast"],"phone":"555-555-5555","description":"","overall_rating":76,"num_ratings":4,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"long-island-bagel-cafe-nyc","complete":"https:\/\/staging.delivery.com\/nyc\/long-island-bagel-cafe-nyc"},"activation_date":"2013-05-17"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 06:30:00","minimum":12,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.28466011832557,"street":"125 FULTON ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.007569,"latitude":40.710163,"landmark":"FULTON ST"}},{"id":"73227","summary":{"name":"Village Farm Beer Store","cuisines":null,"phone":"555-555-5555","description":"","overall_rating":100,"num_ratings":2,"type":"W","type_label":"Wine and Liquor Store","notes":null,"url":{"geo_tag":"nyc","short_tag":"village-farm-beer-store","complete":"https:\/\/staging.delivery.com\/nyc\/village-farm-beer-store"},"activation_date":"2013-05-08"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-17 00:00:00","minimum":25,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":1.7949353189412,"street":"146 2ND AVE","city":"NEW YORK","state":"NY","zip":"10003","longitude":-73.986984,"latitude":40.729319,"landmark":"Corner of 9th St."}},{"id":"73277","summary":{"name":"Terri FiDi","cuisines":["Vegetarian","Healthy","Organic"],"phone":"555-555-5555","description":"","overall_rating":87,"num_ratings":3,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"terri-fidi","complete":"https:\/\/staging.delivery.com\/nyc\/terri-fidi"},"activation_date":"2013-04-29"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 07:30:00","minimum":12,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.14368198711774,"street":"100 MAIDEN LN","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.007007,"latitude":40.706739,"landmark":"Cedar and Pearl"}},{"id":"73305","summary":{"name":"Babaghanouge","cuisines":["Vegetarian","Healthy","Halal","Greek"],"phone":"555-555-5555","description":"","overall_rating":70,"num_ratings":2,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"babaghanouge-fulton-st","complete":"https:\/\/staging.delivery.com\/nyc\/babaghanouge-fulton-st"},"activation_date":"2013-05-03"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":["10% Off for First Time Users"],"last_or_next_order_time":"2014-04-10 21:45:00","minimum":12,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.33948623187432,"street":"143 FULTON ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.008398,"latitude":40.710677,"landmark":"Between Nassau and Broadway"}},{"id":"73336","summary":{"name":"Sophie's Cuban Cuisine","cuisines":["Empanadas","Latin"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":1,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"sophies-cuban-cuisine","complete":"https:\/\/staging.delivery.com\/nyc\/sophies-cuban-cuisine"},"activation_date":"2013-06-11"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 10:00:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.56215571105853,"street":"96 CHAMBERS ST","city":"NEW YORK","state":"NY","zip":"10007","longitude":-74.007592,"latitude":40.714625,"landmark":"Between Church St and Broadway"}},{"id":"73357","summary":{"name":"Bagel Boss Catering","cuisines":["Bagelry","Deli","Sandwiches"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"nyc","short_tag":"bagel-boss-catering","complete":"https:\/\/staging.delivery.com\/nyc\/bagel-boss-catering"},"activation_date":"2013-05-22"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":705,"specials":null,"last_or_next_order_time":"2014-04-11 09:45:00","minimum":150,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":2.1009543200937,"street":"263 1ST AVE","city":"NEW YORK","state":"NY","zip":"10003","longitude":-73.982098,"latitude":40.732228,"landmark":"Between East 15th and 16th Streets"}},{"id":"73434","summary":{"name":"Asia Saigon","cuisines":["Vietnamese"],"phone":"555-555-5555","description":"","overall_rating":99,"num_ratings":5,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"asia-saigon","complete":"https:\/\/staging.delivery.com\/nyc\/asia-saigon"},"activation_date":"2013-05-10"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":["20% Off All Items"],"last_or_next_order_time":"2014-04-10 21:45:00","minimum":8,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.31054213651126,"street":"8 LIBERTY PL","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.009445,"latitude":40.709083,"landmark":"Between Liberty and Maiden Ln"}},{"id":"73465","summary":{"name":"Great Wall Chinese Restaurant","cuisines":["Chinese"],"phone":"555-555-5555","description":"","overall_rating":68,"num_ratings":3,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"great-wall-chinese-restaurant","complete":"https:\/\/staging.delivery.com\/nyc\/great-wall-chinese-restaurant"},"activation_date":"2013-05-13"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 22:45:00","minimum":7,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":1.0816883281016,"street":"384 GRAND ST","city":"NEW YORK","state":"NY","zip":"10002","longitude":-73.987741,"latitude":40.716273,"landmark":"Suffolk & Norfolk Streets"}},{"id":"73489","summary":{"name":"China Village Restaurant","cuisines":["Chinese","Asian"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":1,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"china-village-restaurant","complete":"https:\/\/staging.delivery.com\/nyc\/china-village-restaurant"},"activation_date":"2013-06-05"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":["15% Off for First Time Users","10% Off All Orders Over $50"],"last_or_next_order_time":"2014-04-11 11:00:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.70293763373335,"street":"94 BAXTER ST","city":"NEW YORK","state":"NY","zip":"10013","longitude":-73.99995,"latitude":40.71652,"landmark":"Between Walker and White St"}},{"id":"73498","summary":{"name":"Chen Wong Restaurant","cuisines":["Chinese"],"phone":"555-555-5555","description":"","overall_rating":63,"num_ratings":2,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"chen-wong-restaurant","complete":"https:\/\/staging.delivery.com\/nyc\/chen-wong-restaurant"},"activation_date":"2013-05-22"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":["10% Off for First Time Users","10% Off All Orders Over $50"],"last_or_next_order_time":"2014-04-11 01:45:00","minimum":10,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.84313208080258,"street":"197 MADISON ST","city":"NEW YORK","state":"NY","zip":"10002","longitude":-73.990089,"latitude":40.712661,"landmark":"Henry St Rutgers St"}},{"id":"73501","summary":{"name":"Fortune Star","cuisines":["Chinese","Asian","Japanese"],"phone":"555-555-5555","description":"","overall_rating":85,"num_ratings":2,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"fortune-star-eldridge-st","complete":"https:\/\/staging.delivery.com\/nyc\/fortune-star-eldridge-st"},"activation_date":"2013-06-21"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 22:15:00","minimum":8,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.94338471311541,"street":"84 ELDRIDGE ST","city":"NEW YORK","state":"NY","zip":"10002","longitude":-73.992336,"latitude":40.717114,"landmark":"Between Grant St. & Hester St."}},{"id":"73560","summary":{"name":"Shorty's","cuisines":["Sandwiches","Cheesesteaks"],"phone":"555-555-5555","description":"","overall_rating":91,"num_ratings":7,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"shortys-pearl-st","complete":"https:\/\/staging.delivery.com\/nyc\/shortys-pearl-st"},"activation_date":"2013-05-24"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 23:45:00","minimum":10,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.43125465338045,"street":"62 PEARL ST","city":"NEW YORK","state":"NY","zip":"10004","longitude":-74.011112,"latitude":40.703416,"landmark":"Broad St"}},{"id":"73566","summary":{"name":"Aputia Sicilian Pastry & Cafe","cuisines":["Desserts","Italian"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"brooklyn","short_tag":"aputia-sicilian-pastry-cafe","complete":"https:\/\/staging.delivery.com\/brooklyn\/aputia-sicilian-pastry-cafe"},"activation_date":"2013-06-19"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 09:00:00","minimum":40,"is_open":false,"delivery_charge":10,"delivery_percent":0},"location":{"distance":3.4150933203398,"street":"35 34TH ST","city":"BROOKLYN","state":"NY","zip":"11232","longitude":-74.006639,"latitude":40.657497,"landmark":"2nd Ave & Gowanus expy"}},{"id":"73569","summary":{"name":"Brooklyn Mac Catering","cuisines":["American"],"phone":"555-555-5555","description":"Although in most cases 12 hours is enough, 24 hours advance notice is preferred. Notification of order cancellation within 12-24 hours will incur a 25% service fee, 50% on 12 hours or less. NO CANCELLATION FEE if notified 48 hours in advance.","overall_rating":0,"num_ratings":0,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"brooklyn","short_tag":"brooklyn-mac-catering-montrose-ave","complete":"https:\/\/staging.delivery.com\/brooklyn\/brooklyn-mac-catering-montrose-ave"},"activation_date":"2013-05-28"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":705,"specials":null,"last_or_next_order_time":"2014-04-11 12:00:00","minimum":100,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":3.2512697172646,"street":"173 MONTROSE AVE","city":"BROOKLYN","state":"NY","zip":"11206","longitude":-73.942204,"latitude":40.707439,"landmark":"Graham Ave & Humboldt St"}},{"id":"73591","summary":{"name":"Full House Shanghai Cuisine","cuisines":["Chinese"],"phone":"555-555-5555","description":"","overall_rating":89,"num_ratings":4,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"full-house-shanghai-cuisine","complete":"https:\/\/staging.delivery.com\/nyc\/full-house-shanghai-cuisine"},"activation_date":"2013-06-25"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":["10% Off for First Time Users"],"last_or_next_order_time":"2014-04-10 22:15:00","minimum":10,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.86513222897604,"street":"97 BOWERY","city":"NEW YORK","state":"NY","zip":"10002","longitude":-73.995224,"latitude":40.717364,"landmark":"Between Grand and Hester St"}},{"id":"73666","summary":{"name":"Goodfellas Catering","cuisines":["Italian"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"nyc","short_tag":"goodfellas-catering","complete":"https:\/\/staging.delivery.com\/nyc\/goodfellas-catering"},"activation_date":"2013-06-12"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":2865,"specials":null,"last_or_next_order_time":"2014-04-12 21:45:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":2.44167517447,"street":"391 2ND AVE","city":"NEW YORK","state":"NY","zip":"10010","longitude":-73.981244,"latitude":40.737615,"landmark":"Between 22nd & 23rd St."}},{"id":"73673","summary":{"name":"L & L Hawaiian BBQ Catering","cuisines":["Hawaiian","Barbeque"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"nyc","short_tag":"l-l-hawaiian-bbq-catering","complete":"https:\/\/staging.delivery.com\/nyc\/l-l-hawaiian-bbq-catering"},"activation_date":"2013-06-28"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":105,"specials":null,"last_or_next_order_time":"2014-04-11 11:00:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.13191475146462,"street":"64 FULTON ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.00518,"latitude":40.708669,"landmark":"Btw. Cliff St. and Gold St."}},{"id":"73748","summary":{"name":"El Toro Mexican Grill","cuisines":["Mexican","Tex-Mex"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"el-toro-mexican-grill","complete":"https:\/\/staging.delivery.com\/nyc\/el-toro-mexican-grill"},"activation_date":"2013-07-24"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 07:00:00","minimum":8,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.45635969320057,"street":"69 NEW ST","city":"NEW YORK","state":"NY","zip":"10004","longitude":-74.012697,"latitude":40.705209,"landmark":"Between Beaver St. and Exchange Place"}},{"id":"73809","summary":{"name":"High Line Deli II","cuisines":["Deli","Sandwiches"],"phone":"555-555-5555","description":"","overall_rating":70,"num_ratings":3,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"high-line-deli-ii","complete":"https:\/\/staging.delivery.com\/nyc\/high-line-deli-ii"},"activation_date":"2013-07-02"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":["10% Off All Orders Over $40"],"last_or_next_order_time":"2014-04-17 00:00:00","minimum":7,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.82649676080454,"street":"83 CANAL ST","city":"NEW YORK","state":"NY","zip":"10002","longitude":-73.993156,"latitude":40.715379,"landmark":"Eldridge St"}},{"id":"73827","summary":{"name":"Sophie's Cuban Cuisine - Catering","cuisines":["Cuban"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"nyc","short_tag":"sophies-cuban-cuisine-catering","complete":"https:\/\/staging.delivery.com\/nyc\/sophies-cuban-cuisine-catering"},"activation_date":"2013-10-27"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":1425,"specials":null,"last_or_next_order_time":"2014-04-14 11:00:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.31976842566332,"street":"141 FULTON ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.008067,"latitude":40.710513,"landmark":"Between Nassau and Broadway"}},{"id":"73991","summary":{"name":"Felix Potin Chocolatier","cuisines":["Desserts"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"felix-potin-chocolates","complete":"https:\/\/staging.delivery.com\/nyc\/felix-potin-chocolates"},"activation_date":"2013-08-19"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":45,"specials":["25% Off for First Time Users"],"last_or_next_order_time":"2014-04-11 10:00:00","minimum":5,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":3.6038450235431,"street":"560 W 43RD ST","city":"NEW YORK","state":"NY","zip":"10036","longitude":-73.982793,"latitude":40.75644,"landmark":"Between 10th and 11th Ave"}},{"id":"74040","summary":{"name":"Dave's Hoagies","cuisines":["Sandwiches"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":1,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"daves-hoagies","complete":"https:\/\/staging.delivery.com\/nyc\/daves-hoagies"},"activation_date":"2013-08-13"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":30,"specials":["10% Off for First Time Users"],"last_or_next_order_time":"2014-04-11 08:30:00","minimum":12,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.18988869144433,"street":"26 CEDAR ST","city":"NEW YORK","state":"NY","zip":"10005","longitude":-74.007896,"latitude":40.706856,"landmark":"Pearl and William"}},{"id":"74064","summary":{"name":"Pavillon Ledoyen","cuisines":["Desserts","French"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"pavillon-ledoyen","complete":"https:\/\/staging.delivery.com\/nyc\/pavillon-ledoyen"},"activation_date":"2013-08-13"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":45,"specials":["25% Off for First Time Users"],"last_or_next_order_time":"2014-04-11 10:00:00","minimum":5,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":3.6038450235431,"street":"560 W 43RD ST","city":"NEW YORK","state":"NY","zip":"10036","longitude":-73.982793,"latitude":40.75644,"landmark":"at 11th Avenue"}},{"id":"74110","summary":{"name":"Dual Specialty Store","cuisines":null,"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"I","type_label":"Grocery Store","notes":null,"url":{"geo_tag":"nyc","short_tag":"dual-specialty-store","complete":"https:\/\/staging.delivery.com\/nyc\/dual-specialty-store"},"activation_date":"2013-11-08"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 12:30:00","minimum":45,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":1.6254905362878,"street":"91 1ST AVE","city":"NEW YORK","state":"NY","zip":"10003","longitude":-73.986524,"latitude":40.726188,"landmark":"1st Ave & E 6th st"}},{"id":"74361","summary":{"name":"Trading Post","cuisines":["American"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":1,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"trading-post","complete":"https:\/\/staging.delivery.com\/nyc\/trading-post"},"activation_date":"2013-09-26"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 11:00:00","minimum":20,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.052692172594053,"street":"170 JOHN ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.004456,"latitude":40.706139,"landmark":"Between Front and South St"}},{"id":"74375","summary":{"name":"Subway","cuisines":["Sandwiches"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"subway-john-st","complete":"https:\/\/staging.delivery.com\/nyc\/subway-john-st"},"activation_date":"2013-08-27"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":["10% Off for First Time Users"],"last_or_next_order_time":"2014-04-11 09:00:00","minimum":7,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.1061592135943,"street":"112 JOHN ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.005951,"latitude":40.707748,"landmark":"Between Cliff and Pearl Street"}},{"id":"74377","summary":{"name":"Carvel Cake","cuisines":["American","Ice Cream"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"carvel-cake-john-st","complete":"https:\/\/staging.delivery.com\/nyc\/carvel-cake-john-st"},"activation_date":"2013-08-21"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":["10% Off for First Time Users"],"last_or_next_order_time":"2014-04-11 09:00:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.1061592135943,"street":"112 JOHN ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.005951,"latitude":40.707748,"landmark":"John and Water St"}},{"id":"74456","summary":{"name":"Circa-NY","cuisines":["Deli","Kosher","Pizza"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"circa-ny","complete":"https:\/\/staging.delivery.com\/nyc\/circa-ny"},"activation_date":"2013-09-17"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 10:00:00","minimum":40,"is_open":false,"delivery_charge":20,"delivery_percent":0},"location":{"distance":3.0137478924381,"street":"22 W 33RD ST","city":"NEW YORK","state":"NY","zip":"10001","longitude":-73.986544,"latitude":40.748384,"landmark":"Between Broadway and 5th Ave"}},{"id":"74467","summary":{"name":"MCF Rare Wine, Ltd.","cuisines":null,"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"W","type_label":"Wine and Liquor Store","notes":null,"url":{"geo_tag":"nyc","short_tag":"mcf-rare-wine-ltd-","complete":"https:\/\/staging.delivery.com\/nyc\/mcf-rare-wine-ltd-"},"activation_date":"2013-09-20"},"ordering":{"delivery_processes_card":false,"payment_types":["credit"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 12:00:00","minimum":250,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":2.1771430728214,"street":"237 W 13TH ST","city":"NEW YORK","state":"NY","zip":"10011","longitude":-74.000948,"latitude":40.738296,"landmark":"Between 7th and 8th Ave"}},{"id":"74610","summary":{"name":"No.1 Chinese Restaurant","cuisines":["Chinese","Asian"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"no-1-chinese-restaurant-s-william-st","complete":"https:\/\/staging.delivery.com\/nyc\/no-1-chinese-restaurant-s-william-st"},"activation_date":"2013-09-30"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 11:00:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.34024628010007,"street":"10 S WILLIAM ST","city":"NEW YORK","state":"NY","zip":"10004","longitude":-74.010265,"latitude":40.704991,"landmark":"Between William and Broad Street"}},{"id":"74667","summary":{"name":"Flavors Cafe (27 Whitehall St)","cuisines":["Cafe","Healthy","Sandwiches","Breakfast"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"flavors-cafe-27-whitehall-st-","complete":"https:\/\/staging.delivery.com\/nyc\/flavors-cafe-27-whitehall-st-"},"activation_date":"2013-10-15"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":0,"specials":null,"last_or_next_order_time":"2014-04-11 06:00:00","minimum":5,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.51346321030524,"street":"27 WHITEHALL ST","city":"NEW YORK","state":"NY","zip":"10004","longitude":-74.012997,"latitude":40.703503,"landmark":"Bridge St"}},{"id":"74668","summary":{"name":"Flavors Cafe (Broad St)","cuisines":["Healthy","Sandwiches"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":1,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"flavors-cafe-broad-st-","complete":"https:\/\/staging.delivery.com\/nyc\/flavors-cafe-broad-st-"},"activation_date":"2013-10-15"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 06:30:00","minimum":5,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.41949767771452,"street":"74 BROAD ST","city":"NEW YORK","state":"NY","zip":"10004","longitude":-74.011708,"latitude":40.704636,"landmark":"Marketfield St"}},{"id":"74680","summary":{"name":"Magic Mix Juicery","cuisines":["Healthy","Juice Bar","Organic"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"magic-mix-juicery","complete":"https:\/\/staging.delivery.com\/nyc\/magic-mix-juicery"},"activation_date":"2013-10-10"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 08:00:00","minimum":12,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.22333839041002,"street":"102 FULTON ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.006681,"latitude":40.709555,"landmark":"William St."}},{"id":"74812","summary":{"name":"Nuchas","cuisines":["Empanadas"],"phone":"555-555-5555","description":"All orders must be placed with a 48 hrs advance notice. The $20 delivery fee includes set up and utensils.","overall_rating":0,"num_ratings":0,"type":"C","type_label":"Caterer","notes":null,"url":{"geo_tag":"nyc","short_tag":"nuchas","complete":"https:\/\/staging.delivery.com\/nyc\/nuchas"},"activation_date":"2013-11-13"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions"],"is_rds":false,"time_needed":2865,"specials":null,"last_or_next_order_time":"2014-04-13 10:00:00","minimum":144,"is_open":false,"delivery_charge":20,"delivery_percent":0},"location":{"distance":3.6408942094816,"street":"1514 BROADWAY","city":"NEW YORK","state":"NY","zip":"10036","longitude":-73.985512,"latitude":40.757627,"landmark":"Between W 44th and W 45th St"}},{"id":"75032","summary":{"name":"Broadway Spirits","cuisines":null,"phone":"555-555-5555","description":"Lowest Prices in Downtown","overall_rating":0,"num_ratings":0,"type":"W","type_label":"Wine and Liquor Store","notes":null,"url":{"geo_tag":"nyc","short_tag":"broadway-spirits","complete":"https:\/\/staging.delivery.com\/nyc\/broadway-spirits"},"activation_date":"2013-11-26"},"ordering":{"delivery_processes_card":false,"payment_types":["cash","credit"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-10 23:30:00","minimum":25,"is_open":true,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.60850220642131,"street":"315 BROADWAY","city":"NEW YORK","state":"NY","zip":"10007","longitude":-74.00511,"latitude":40.715672,"landmark":"Duane"}},{"id":"75062","summary":{"name":"America's Finest Deli","cuisines":["Deli","Sandwiches"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":1,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"americas-finest-deli","complete":"https:\/\/staging.delivery.com\/nyc\/americas-finest-deli"},"activation_date":"2014-01-06"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 06:00:00","minimum":7,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.48278331980719,"street":"46 TRINITY PL","city":"NEW YORK","state":"NY","zip":"10006","longitude":-74.013482,"latitude":40.707141,"landmark":"Between Greenwich and Trinity Pl"}},{"id":"75122","summary":{"name":"New York Vintners","cuisines":null,"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"W","type_label":"Wine and Liquor Store","notes":null,"url":{"geo_tag":"nyc","short_tag":"new-york-vintners","complete":"https:\/\/staging.delivery.com\/nyc\/new-york-vintners"},"activation_date":"2013-12-04"},"ordering":{"delivery_processes_card":false,"payment_types":["credit"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 12:15:00","minimum":50,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.52355313494327,"street":"21 WARREN ST","city":"NEW YORK","state":"NY","zip":"10007","longitude":-74.007663,"latitude":40.714016,"landmark":"Church St."}},{"id":"75154","summary":{"name":"Pakistan Tea House","cuisines":["Middle Eastern"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"pakistan-tea-house","complete":"https:\/\/staging.delivery.com\/nyc\/pakistan-tea-house"},"activation_date":"2013-12-17"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 11:00:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.64991212626402,"street":"176 CHURCH ST","city":"NEW YORK","state":"NY","zip":"10013","longitude":-74.007075,"latitude":40.716051,"landmark":"Between Duane and Reade St"}},{"id":"75162","summary":{"name":"Justino's Pizzeria","cuisines":["American","Italian","Pizza"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"justinos-pizzeria-pearl-st","complete":"https:\/\/staging.delivery.com\/nyc\/justinos-pizzeria-pearl-st"},"activation_date":"2013-12-20"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 10:00:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.38855805019811,"street":"77 PEARL ST","city":"NEW YORK","state":"NY","zip":"10004","longitude":-74.010482,"latitude":40.703814,"landmark":"PEARL ST"}},{"id":"75165","summary":{"name":"A-Wah Restaurant II","cuisines":["Chinese"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":1,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"a-wah-restaurant-ii","complete":"https:\/\/staging.delivery.com\/nyc\/a-wah-restaurant-ii"},"activation_date":"2013-12-16"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 10:30:00","minimum":10,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.72926293389023,"street":"48B BOWERY","city":"NEW YORK","state":"NY","zip":"10013","longitude":-73.99643,"latitude":40.71561,"landmark":"Between Canal and Bayard St"}},{"id":"75197","summary":{"name":"Bennie's Thai Cafe","cuisines":["Thai"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"bennies-thai-cafe","complete":"https:\/\/staging.delivery.com\/nyc\/bennies-thai-cafe"},"activation_date":"2013-12-18"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":null,"last_or_next_order_time":"2014-04-11 11:00:00","minimum":15,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.18424702358684,"street":"88 FULTON ST","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.006004,"latitude":40.709209,"landmark":"88 FULTON ST"}},{"id":"75225","summary":{"name":"Tous Crepes","cuisines":["Crepes"],"phone":"555-555-5555","description":"","overall_rating":0,"num_ratings":0,"type":"R","type_label":"Restaurant","notes":null,"url":{"geo_tag":"nyc","short_tag":"tous-crepes","complete":"https:\/\/staging.delivery.com\/nyc\/tous-crepes"},"activation_date":"2013-12-26"},"ordering":{"delivery_processes_card":true,"payment_types":["credit","gift card","promotions","cash"],"is_rds":false,"time_needed":30,"specials":["15% Off for First Time Users","10% Off All Orders Over $50"],"last_or_next_order_time":"2014-04-11 07:30:00","minimum":8,"is_open":false,"delivery_charge":0,"delivery_percent":0},"location":{"distance":0.10640928263769,"street":"125 MAIDEN LN","city":"NEW YORK","state":"NY","zip":"10038","longitude":-74.006218,"latitude":40.706449,"landmark":"MAIDEN LN and Water St"}}],"verticals":[{"type":"R","count":163,"label":"Restaurant"},{"type":"C","count":44,"label":"Caterer"},{"type":"I","count":3,"label":"Grocery Store"},{"type":"F","count":2,"label":"Florist"},{"type":"W","count":23,"label":"Wine and Liquor Store"},{"type":"B","count":3,"label":"Bakery"},{"type":"G","count":1,"label":"Gift Basket Maker"},{"type":"T","count":1,"label":"Butcher Shop"},{"type":"Z","count":1,"label":"Tobacco Shop"},{"type":"O","count":1,"label":"Office Supply"},{"type":"H","count":1,"label":"Health and Beauty Store"}],"cuisines":["American","Argentinian","Asian","Bagelry","Barbeque","Breakfast","Burgers","Cafe","Carribbean","Cheesesteaks","Chinese","Crepes","Cuban","Deli","Desserts","Diner","Empanadas","Fast Food","French","Fusion","Glatt Kosher","Greek","Halal","Hawaiian","Healthy","Hot Dogs","Ice Cream","Indian","Irish","Italian","Japanese","Juice Bar","Korean","Kosher","Latin","Mediterranean","Mexican","Middle Eastern","OU Kosher","Organic","Pizza","Russian","Salads","Sandwiches","Seafood","Soul Food","Soups","Spanish","Steaks","Sushi","Tapas","Tex-Mex","Thai","Turkish","Vegetarian","Vietnamese","Wings"],"popular_cuisines":["Sandwiches","American","Italian","Chinese","Deli"]}
@@ -0,0 +1,15 @@
1
+ require 'test_helper'
2
+
3
+ class TestClient < Minitest::Test
4
+ def setup
5
+ @client = Delivery::Client.new 'client_id', base_uri: 'http://sandbox.delivery.com'
6
+ end
7
+
8
+ def test_search
9
+ stub_request(:get, 'http://sandbox.delivery.com/merchant/search/delivery?client_id=client_id&address=199%20Water%20St%2010038').
10
+ to_return(body: fixture('search.json'), headers: {content_type: 'application/json'})
11
+
12
+ search = @client.search '199 Water St 10038'
13
+ assert_equal 40.706888574096, search.search_address.latitude
14
+ end
15
+ end
@@ -0,0 +1,12 @@
1
+ require 'delivery'
2
+ require 'minitest/pride'
3
+ require 'minitest/autorun'
4
+ require 'webmock/minitest'
5
+
6
+ def fixture_path
7
+ File.expand_path('../fixtures', __FILE__)
8
+ end
9
+
10
+ def fixture(file)
11
+ File.new(fixture_path + '/' + file)
12
+ end
metadata ADDED
@@ -0,0 +1,143 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: delivery
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - James A. Anderson
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-04-11 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.3'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: minitest
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ~>
46
+ - !ruby/object:Gem::Version
47
+ version: 5.3.2
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: 5.3.2
55
+ - !ruby/object:Gem::Dependency
56
+ name: webmock
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: 1.17.4
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ~>
67
+ - !ruby/object:Gem::Version
68
+ version: 1.17.4
69
+ - !ruby/object:Gem::Dependency
70
+ name: httparty
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ~>
74
+ - !ruby/object:Gem::Version
75
+ version: 0.13.1
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ~>
81
+ - !ruby/object:Gem::Version
82
+ version: 0.13.1
83
+ - !ruby/object:Gem::Dependency
84
+ name: hashie
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ~>
88
+ - !ruby/object:Gem::Version
89
+ version: 2.1.0
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ~>
95
+ - !ruby/object:Gem::Version
96
+ version: 2.1.0
97
+ description: A Ruby interface to the Delivery.com API
98
+ email:
99
+ - me@jamesaanderson.com
100
+ executables: []
101
+ extensions: []
102
+ extra_rdoc_files: []
103
+ files:
104
+ - .gitignore
105
+ - Gemfile
106
+ - LICENSE.txt
107
+ - README.md
108
+ - Rakefile
109
+ - delivery.gemspec
110
+ - lib/delivery.rb
111
+ - lib/delivery/client.rb
112
+ - lib/delivery/version.rb
113
+ - test/fixtures/search.json
114
+ - test/test_client.rb
115
+ - test/test_helper.rb
116
+ homepage: ''
117
+ licenses:
118
+ - MIT
119
+ metadata: {}
120
+ post_install_message:
121
+ rdoc_options: []
122
+ require_paths:
123
+ - lib
124
+ required_ruby_version: !ruby/object:Gem::Requirement
125
+ requirements:
126
+ - - '>='
127
+ - !ruby/object:Gem::Version
128
+ version: '0'
129
+ required_rubygems_version: !ruby/object:Gem::Requirement
130
+ requirements:
131
+ - - '>='
132
+ - !ruby/object:Gem::Version
133
+ version: '0'
134
+ requirements: []
135
+ rubyforge_project:
136
+ rubygems_version: 2.0.3
137
+ signing_key:
138
+ specification_version: 4
139
+ summary: A Ruby interface to the Delivery.com API
140
+ test_files:
141
+ - test/fixtures/search.json
142
+ - test/test_client.rb
143
+ - test/test_helper.rb