foursquare2 0.9.1 → 0.9.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/Rakefile CHANGED
@@ -17,8 +17,8 @@ Jeweler::Tasks.new do |gem|
17
17
  gem.license = "MIT"
18
18
  gem.summary = "Foursquare API v2 gem in the spirit of the original foursquare gem"
19
19
  gem.description = "Gives access to all endpoints in version 2 of foursquare's API with syntax that will be familiar to those who used the original foursquare gem by Jeremy Welch."
20
- gem.email = "muellermr@gmail.com"
21
- gem.authors = ["Matt Mueller"]
20
+ gem.email = ["muellermr@gmail.com", "email@marcomoura.com"]
21
+ gem.authors = ["Matt Mueller", "Marco Moura"]
22
22
  end
23
23
  Jeweler::RubygemsDotOrgTasks.new
24
24
 
data/Readme.md CHANGED
@@ -41,6 +41,26 @@ See [the documentation](http://rubydoc.info/gems/foursquare2/frames) for a list
41
41
 
42
42
  client.checkin(:venueId => "4b2afcaaf964a5205bb324e3", :broadcast => 'public', :ll => '36.142064,-86.816086', :shout => 'zomg coffee!1!')
43
43
 
44
+
45
+ #### Search user by tip
46
+
47
+ client.search_users_by_tip(:ll => '36.142064,-86.816086', :name => 'Marco')
48
+
49
+ #### Search tips from a user (optionally filter a user's tips based on some term)
50
+
51
+ client.user_tips("123456", :query => 'coffee')
52
+
53
+ #### Search venues by tip
54
+
55
+ client.search_venues_by_tip(:ll => '36.142064,-86.816086', :query => 'coffee')
56
+
57
+ #### Search tips at a venue (optionally filter a venue's tips based on some term)
58
+
59
+ client.venue_tips("4b2afcaaf964a5205bb324e3", :query => 'coffee')
60
+
61
+
62
+
63
+
44
64
  ## Full list of methods
45
65
 
46
66
  See [the documentation](http://rubydoc.info/gems/foursquare2/frames) or [foursquare's endpoint list](http://developer.foursquare.com/docs/index_docs.html) for parameters.
@@ -77,7 +97,9 @@ See [the documentation](http://rubydoc.info/gems/foursquare2/frames) or [foursqu
77
97
  client.user_deny_friend
78
98
  client.user_set_friend_pings
79
99
  client.venue
100
+ client.venue_tips
80
101
  client.search_venues
102
+ client.search_venues_by_tip
81
103
  client.venue_categories
82
104
  client.add_venue
83
105
  client.mark_venue_todo
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.9.1
1
+ 0.9.5
@@ -5,13 +5,13 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{foursquare2}
8
- s.version = "0.9.1"
8
+ s.version = "0.9.5"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
- s.authors = ["Matt Mueller"]
12
- s.date = %q{2011-04-05}
11
+ s.authors = ["Matt Mueller", "Marco Moura"]
12
+ s.date = %q{2011-04-26}
13
13
  s.description = %q{Gives access to all endpoints in version 2 of foursquare's API with syntax that will be familiar to those who used the original foursquare gem by Jeremy Welch.}
14
- s.email = %q{muellermr@gmail.com}
14
+ s.email = ["muellermr@gmail.com", "email@marcomoura.com"]
15
15
  s.extra_rdoc_files = [
16
16
  "LICENSE.txt"
17
17
  ]
@@ -27,23 +27,30 @@ Gem::Specification.new do |s|
27
27
  "lib/foursquare2.rb",
28
28
  "lib/foursquare2/checkins.rb",
29
29
  "lib/foursquare2/client.rb",
30
+ "lib/foursquare2/hash.rb",
30
31
  "lib/foursquare2/photos.rb",
31
32
  "lib/foursquare2/settings.rb",
32
33
  "lib/foursquare2/specials.rb",
33
34
  "lib/foursquare2/tips.rb",
34
35
  "lib/foursquare2/users.rb",
35
36
  "lib/foursquare2/venues.rb",
37
+ "test/config.rb",
36
38
  "test/fixtures/checkin.json",
37
39
  "test/fixtures/friend_checkins.json",
40
+ "test/fixtures/no_venues_by_tip.json",
38
41
  "test/fixtures/photo.json",
39
42
  "test/fixtures/search_specials.json",
40
43
  "test/fixtures/search_tips.json",
41
44
  "test/fixtures/search_users.json",
42
45
  "test/fixtures/search_venues.json",
46
+ "test/fixtures/search_venues_by_tip.json",
43
47
  "test/fixtures/special.json",
44
48
  "test/fixtures/tip.json",
45
49
  "test/fixtures/user.json",
50
+ "test/fixtures/user_tips.json",
51
+ "test/fixtures/user_tips_empty.json",
46
52
  "test/fixtures/venue.json",
53
+ "test/fixtures/venue_tips.json",
47
54
  "test/helper.rb",
48
55
  "test/test_checkins.rb",
49
56
  "test/test_client.rb",
@@ -56,9 +63,10 @@ Gem::Specification.new do |s|
56
63
  s.homepage = %q{http://github.com/mattmueller/foursquare2}
57
64
  s.licenses = ["MIT"]
58
65
  s.require_paths = ["lib"]
59
- s.rubygems_version = %q{1.3.7}
66
+ s.rubygems_version = %q{1.4.2}
60
67
  s.summary = %q{Foursquare API v2 gem in the spirit of the original foursquare gem}
61
68
  s.test_files = [
69
+ "test/config.rb",
62
70
  "test/helper.rb",
63
71
  "test/test_checkins.rb",
64
72
  "test/test_client.rb",
@@ -70,7 +78,6 @@ Gem::Specification.new do |s|
70
78
  ]
71
79
 
72
80
  if s.respond_to? :specification_version then
73
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
74
81
  s.specification_version = 3
75
82
 
76
83
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
@@ -5,6 +5,17 @@ directory = File.expand_path(File.dirname(__FILE__))
5
5
 
6
6
  module Foursquare2
7
7
  class << self
8
+
9
+ def filter tips, term
10
+ tip = []
11
+ unless tips.nil?
12
+ tips.items.each do |check_tip|
13
+ tip << check_tip if check_tip.text.include? term
14
+ end
15
+ end
16
+ {:count => tip.count,:items => tip}
17
+ end
18
+
8
19
  end
9
20
 
10
21
  require 'foursquare2/users'
@@ -15,5 +26,7 @@ module Foursquare2
15
26
  require 'foursquare2/checkins'
16
27
  require 'foursquare2/venues'
17
28
  require 'foursquare2/client'
29
+ require 'foursquare2/hash'
18
30
 
19
31
  end
32
+
@@ -0,0 +1,7 @@
1
+ class ::Hash
2
+ def method_missing(name)
3
+ return self[name] if key? name
4
+ self.each { |k,v| return v if k.to_s.to_sym == name }
5
+ super.method_missing name
6
+ end
7
+ end
@@ -26,6 +26,22 @@ module Foursquare2
26
26
  return_error_or_body(response, response.body.response.tips)
27
27
  end
28
28
 
29
+ # Search for tips from a venue.
30
+ #
31
+ # @param [String] venue_id - Venue id to flag, required.
32
+ # @param [Hash] options
33
+ # @option options String :sort [recent] One of recent or popular.
34
+ # @option options Integer :limit [100] Number of results to return, up to 500.
35
+ # @option options Integer :offset [100] Used to page through results
36
+ # @option options String :query - Only find tips matching this term.
37
+
38
+ def venue_tips(venue_id, options={})
39
+ response = connection.get("venues/#{venue_id}/tips")
40
+ tips = return_error_or_body(response, response.body.response.tips)
41
+ tips = Foursquare2.filter(tips, options[:query]) if options.has_key? :query
42
+ tips
43
+ end
44
+
29
45
  # Add a tip
30
46
  #
31
47
  # @param [Hash] options
@@ -26,6 +26,31 @@ module Foursquare2
26
26
  return_error_or_body(response, response.body.response)
27
27
  end
28
28
 
29
+ # Search for users by tip
30
+ # @param [Hash] options
31
+ # @option options String :ll - Latitude and longitude in format LAT,LON
32
+ # @option options Integer :limit - The limit of results to return.
33
+ # @option options Integer :offset - Used to page through results.
34
+ # @option options String :filter - Set to 'friends' to limit tips to those from friends.
35
+ # @option options String :query - Only find tips matching this term.
36
+ # @option options String :name - Match on name
37
+
38
+ def search_users_by_tip(options={})
39
+ name = options.delete(:name)
40
+ options[:limit] = 500
41
+ tips = search_tips(options)
42
+ user = []
43
+ tips.each do |tip|
44
+ user << tip['user'] if check_name(tip['user'], name)
45
+ end
46
+ user.uniq
47
+ end
48
+
49
+ # check if the first last name of user match the query
50
+
51
+ def check_name user, query
52
+ user.firstName.downcase.match(query.downcase)
53
+ end
29
54
  # Get all pending friend requests for the authenticated user
30
55
 
31
56
  def user_requests
@@ -70,7 +95,7 @@ module Foursquare2
70
95
  return_error_or_body(response, response.body.response.friends)
71
96
  end
72
97
 
73
- # Get all tips for a given user.
98
+ # Get all tips for a given user, optionally filtering by text.
74
99
  #
75
100
  # @param [String] user_id - The user to retrieve friends for.
76
101
  # @param [Hash] options
@@ -78,12 +103,15 @@ module Foursquare2
78
103
  # @option options Integer :offest - For paging through results
79
104
  # @option options String :sort - One of recent, nearby, popular
80
105
  # @option options String :ll - Latitude and longitude in format LAT,LON - required for nearby sort option.
106
+ # @option String :query - Only find tips matching this term.
81
107
 
82
108
  def user_tips(user_id, options={})
83
109
  response = connection.get do |req|
84
110
  req.url "users/#{user_id}/tips", options
85
111
  end
86
- return_error_or_body(response, response.body.response.tips)
112
+ tips = return_error_or_body(response, response.body.response.tips)
113
+ tips = Foursquare2.filter(tips, options[:query]) if options.has_key? :query
114
+ tips
87
115
  end
88
116
 
89
117
  # Get all todos for a given user.
@@ -28,6 +28,24 @@ module Foursquare2
28
28
  return_error_or_body(response, response.body.response)
29
29
  end
30
30
 
31
+ # Search for venues by tip
32
+ #
33
+ # @param [Hash] options
34
+ # @option options String :ll - Latitude and longitude in format LAT,LON
35
+ # @option options Integer :limit - The limit of results to return.
36
+ # @option options Integer :offset - Used to page through results.
37
+ # @option options String :filter - Set to 'friends' to limit tips to those from friends.
38
+ # @option options String :query - Only find tips matching this term.
39
+
40
+ def search_venues_by_tip(options={})
41
+ tips = search_tips(options)
42
+ venues = []
43
+ tips.each do |tip|
44
+ venues << tip['venue']
45
+ end
46
+ venues
47
+ end
48
+
31
49
  # Retrieve information about all venue categories.
32
50
 
33
51
  def venue_categories
@@ -0,0 +1,4 @@
1
+ QUERY = "pizza"
2
+
3
+ LATLNG = "77.7%2C-77.7"
4
+
@@ -0,0 +1 @@
1
+ {"meta":{"code":200},"response":{"tips":[]}}
@@ -96,7 +96,7 @@
96
96
  },
97
97
  "user": {
98
98
  "id": "2227298",
99
- "firstName": "mindvomit",
99
+ "firstName": "developer",
100
100
  "photo": "http://playfoursquare.s3.amazonaws.com/userpix_thumbs/0EHHLLXPDQHXD3XK.jpg",
101
101
  "gender": "female",
102
102
  "homeCity": "Brooklyn, NY"
@@ -105,7 +105,7 @@
105
105
  {
106
106
  "id": "4c520e519d642d7f377693de",
107
107
  "createdAt": 1280446033,
108
- "text": "Pick up some extra napkins [and put some pieces in your ears] in case the sound is too loud again this week...",
108
+ "text": "Pick up some extra pizza [and put some pieces in your ears] in case the sound is too loud again this week...",
109
109
  "todo": {
110
110
  "count": 0
111
111
  },
@@ -1,2701 +1 @@
1
- {
2
- "meta": {
3
- "code": 200
4
- },
5
- "response": {
6
- "groups": [
7
- {
8
- "type": "places",
9
- "name": "Matching Places",
10
- "items": [
11
- {
12
- "id": "4b06a0fef964a520eced22e3",
13
- "name": "Ugly Mugs",
14
- "contact": {
15
- "phone": "6159150675",
16
- "twitter": "uglymugs"
17
- },
18
- "location": {
19
- "address": "1886 Eastland Ave",
20
- "crossStreet": "at Chapel Ave",
21
- "city": "Nashville",
22
- "state": "Tennessee",
23
- "postalCode": "37206",
24
- "country": "USA",
25
- "lat": 36.182201,
26
- "lng": -86.735499,
27
- "distance": 8509
28
- },
29
- "categories": [
30
- {
31
- "id": "4bf58dd8d48988d1e0931735",
32
- "name": "Coffee Shop",
33
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
34
- "parents": [
35
- "Food"
36
- ],
37
- "primary": true
38
- }
39
- ],
40
- "verified": false,
41
- "stats": {
42
- "checkinsCount": 1932,
43
- "usersCount": 362
44
- },
45
- "todos": {
46
- "count": 0
47
- },
48
- "specials": [
49
-
50
- ],
51
- "hereNow": {
52
- "count": 0
53
- }
54
- },
55
- {
56
- "id": "4b073160f964a5204bf922e3",
57
- "name": "Cafe Coco",
58
- "contact": {
59
-
60
- },
61
- "location": {
62
- "address": "210 Louise Ave",
63
- "city": "Nashville",
64
- "state": "TN",
65
- "postalCode": "37203",
66
- "lat": 36.151912,
67
- "lng": -86.804893,
68
- "distance": 1487
69
- },
70
- "categories": [
71
- {
72
- "id": "4bf58dd8d48988d1e0931735",
73
- "name": "Coffee Shop",
74
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
75
- "parents": [
76
- "Food"
77
- ],
78
- "primary": true
79
- },
80
- {
81
- "id": "4bf58dd8d48988d116941735",
82
- "name": "Bar",
83
- "icon": "http://foursquare.com/img/categories/nightlife/default.png",
84
- "parents": [
85
- "Nightlife"
86
- ]
87
- },
88
- {
89
- "id": "4bf58dd8d48988d1e9931735",
90
- "name": "Rock Club",
91
- "icon": "http://foursquare.com/img/categories/arts_entertainment/musicvenue_rockclub.png",
92
- "parents": [
93
- "Arts & Entertainment",
94
- "Music Venue"
95
- ]
96
- },
97
- {
98
- "id": "4bf58dd8d48988d14e941735",
99
- "name": "American",
100
- "icon": "http://foursquare.com/img/categories/food/default.png",
101
- "parents": [
102
- "Food"
103
- ]
104
- }
105
- ],
106
- "verified": false,
107
- "stats": {
108
- "checkinsCount": 1592,
109
- "usersCount": 747
110
- },
111
- "todos": {
112
- "count": 0
113
- },
114
- "specials": [
115
-
116
- ],
117
- "hereNow": {
118
- "count": 0
119
- }
120
- },
121
- {
122
- "id": "4b3388b1f964a5206b1a25e3",
123
- "name": "The Frothy Monkey Coffeehouse",
124
- "contact": {
125
- "phone": "6152921808",
126
- "twitter": "frothymonkey"
127
- },
128
- "location": {
129
- "address": "2509 12th Ave S",
130
- "crossStreet": "at Gilmore Ave",
131
- "city": "Nashville",
132
- "state": "TN",
133
- "postalCode": "37204",
134
- "lat": 36.12458208029139,
135
- "lng": -86.78984642028809,
136
- "distance": 3058
137
- },
138
- "categories": [
139
- {
140
- "id": "4bf58dd8d48988d1e0931735",
141
- "name": "Coffee Shop",
142
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
143
- "parents": [
144
- "Food"
145
- ],
146
- "primary": true
147
- }
148
- ],
149
- "verified": false,
150
- "stats": {
151
- "checkinsCount": 1678,
152
- "usersCount": 558
153
- },
154
- "todos": {
155
- "count": 0
156
- },
157
- "specials": [
158
-
159
- ],
160
- "hereNow": {
161
- "count": 0
162
- }
163
- },
164
- {
165
- "id": "4b0822d7f964a5208c0423e3",
166
- "name": "Dose",
167
- "contact": {
168
- "phone": "6154571300",
169
- "twitter": "dosecoffee"
170
- },
171
- "location": {
172
- "address": "3431 Murphy Rd.",
173
- "crossStreet": "West End",
174
- "city": "Nashville",
175
- "state": "TN",
176
- "postalCode": "37203",
177
- "country": "USA",
178
- "lat": 36.139434,
179
- "lng": -86.8219809,
180
- "distance": 605
181
- },
182
- "categories": [
183
- {
184
- "id": "4bf58dd8d48988d1e0931735",
185
- "name": "Coffee Shop",
186
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
187
- "parents": [
188
- "Food"
189
- ],
190
- "primary": true
191
- },
192
- {
193
- "id": "4bf58dd8d48988d16d941735",
194
- "name": "Café",
195
- "icon": "http://foursquare.com/img/categories/food/cafe.png",
196
- "parents": [
197
- "Food"
198
- ]
199
- },
200
- {
201
- "id": "4bf58dd8d48988d16a941735",
202
- "name": "Bakery",
203
- "icon": "http://foursquare.com/img/categories/food/bakery.png",
204
- "parents": [
205
- "Food"
206
- ]
207
- }
208
- ],
209
- "verified": true,
210
- "stats": {
211
- "checkinsCount": 596,
212
- "usersCount": 186
213
- },
214
- "todos": {
215
- "count": 0
216
- },
217
- "specials": [
218
-
219
- ],
220
- "hereNow": {
221
- "count": 1
222
- }
223
- },
224
- {
225
- "id": "4b0adb6ff964a520f92823e3",
226
- "name": "Crema Coffee",
227
- "contact": {
228
- "phone": "6152558311",
229
- "twitter": "CremaCrema"
230
- },
231
- "location": {
232
- "address": "15 Hermitage Ave",
233
- "crossStreet": "btw Peabody & Lea",
234
- "city": "Nashville",
235
- "state": "TN",
236
- "postalCode": "37210",
237
- "country": "USA",
238
- "lat": 36.156815,
239
- "lng": -86.769801,
240
- "distance": 4472
241
- },
242
- "categories": [
243
- {
244
- "id": "4bf58dd8d48988d16d941735",
245
- "name": "Café",
246
- "icon": "http://foursquare.com/img/categories/food/cafe.png",
247
- "parents": [
248
- "Food"
249
- ],
250
- "primary": true
251
- },
252
- {
253
- "id": "4bf58dd8d48988d1e0931735",
254
- "name": "Coffee Shop",
255
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
256
- "parents": [
257
- "Food"
258
- ]
259
- }
260
- ],
261
- "verified": false,
262
- "stats": {
263
- "checkinsCount": 1209,
264
- "usersCount": 306
265
- },
266
- "todos": {
267
- "count": 0
268
- },
269
- "specials": [
270
-
271
- ],
272
- "hereNow": {
273
- "count": 0
274
- }
275
- },
276
- {
277
- "id": "4b4b2239f964a520d99226e3",
278
- "name": "Starbucks",
279
- "contact": {
280
- "phone": "6157702706",
281
- "twitter": "Starbucks"
282
- },
283
- "location": {
284
- "address": "515 Dominican Dr",
285
- "crossStreet": "Rosa L. Parks Blvd",
286
- "city": "Nashville",
287
- "state": "TN",
288
- "postalCode": "37228",
289
- "country": "USA",
290
- "lat": 36.187689067020706,
291
- "lng": -86.79787427186966,
292
- "distance": 5336
293
- },
294
- "categories": [
295
- {
296
- "id": "4bf58dd8d48988d1e0931735",
297
- "name": "Coffee Shop",
298
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
299
- "parents": [
300
- "Food"
301
- ],
302
- "primary": true
303
- }
304
- ],
305
- "verified": true,
306
- "stats": {
307
- "checkinsCount": 908,
308
- "usersCount": 237
309
- },
310
- "todos": {
311
- "count": 0
312
- },
313
- "specials": [
314
-
315
- ],
316
- "hereNow": {
317
- "count": 0
318
- }
319
- },
320
- {
321
- "id": "4b05b8d0f964a5209fe122e3",
322
- "name": "DrinkHaus Espresso+Tea",
323
- "contact": {
324
- "phone": "6152555200",
325
- "twitter": "DrinkHaus"
326
- },
327
- "location": {
328
- "address": "500 Madison St, #103",
329
- "crossStreet": "btw 5th & 6th Ave N",
330
- "city": "Nashville",
331
- "state": "TN",
332
- "postalCode": "37208",
333
- "lat": 36.1751549,
334
- "lng": -86.78853,
335
- "distance": 4438
336
- },
337
- "categories": [
338
- {
339
- "id": "4bf58dd8d48988d1dc931735",
340
- "name": "Tea Room",
341
- "icon": "http://foursquare.com/img/categories/food/tearoom.png",
342
- "parents": [
343
- "Food"
344
- ],
345
- "primary": true
346
- },
347
- {
348
- "id": "4bf58dd8d48988d1e0931735",
349
- "name": "Coffee Shop",
350
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
351
- "parents": [
352
- "Food"
353
- ]
354
- }
355
- ],
356
- "verified": false,
357
- "stats": {
358
- "checkinsCount": 864,
359
- "usersCount": 126
360
- },
361
- "todos": {
362
- "count": 0
363
- },
364
- "specials": [
365
-
366
- ],
367
- "hereNow": {
368
- "count": 0
369
- }
370
- },
371
- {
372
- "id": "4b4f200af964a520dafa26e3",
373
- "name": "Starbucks",
374
- "contact": {
375
- "phone": "6157310926",
376
- "twitter": "Starbucks"
377
- },
378
- "location": {
379
- "address": "5253 Hickory Hollow Pkwy",
380
- "crossStreet": "Bell Rd.",
381
- "city": "Antioch",
382
- "state": "TN",
383
- "postalCode": "37014",
384
- "lat": 36.048461,
385
- "lng": -86.6585601,
386
- "distance": 17588
387
- },
388
- "categories": [
389
- {
390
- "id": "4bf58dd8d48988d1e0931735",
391
- "name": "Coffee Shop",
392
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
393
- "parents": [
394
- "Food"
395
- ],
396
- "primary": true
397
- }
398
- ],
399
- "verified": true,
400
- "stats": {
401
- "checkinsCount": 480,
402
- "usersCount": 160
403
- },
404
- "todos": {
405
- "count": 0
406
- },
407
- "specials": [
408
-
409
- ],
410
- "hereNow": {
411
- "count": 0
412
- }
413
- },
414
- {
415
- "id": "4bbd1463a8cf76b06b61b1fd",
416
- "name": "Starbucks Coffee",
417
- "contact": {
418
- "phone": "6154601152",
419
- "twitter": "Starbucks"
420
- },
421
- "location": {
422
- "address": "4514 Harding Pike",
423
- "city": "Nashville",
424
- "state": "TN",
425
- "postalCode": "37205",
426
- "lat": 36.1247499,
427
- "lng": -86.8479817,
428
- "distance": 3455
429
- },
430
- "categories": [
431
- {
432
- "id": "4bf58dd8d48988d1e0931735",
433
- "name": "Coffee Shop",
434
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
435
- "parents": [
436
- "Food"
437
- ],
438
- "primary": true
439
- }
440
- ],
441
- "verified": true,
442
- "stats": {
443
- "checkinsCount": 646,
444
- "usersCount": 257
445
- },
446
- "todos": {
447
- "count": 0
448
- },
449
- "specials": [
450
-
451
- ],
452
- "hereNow": {
453
- "count": 0
454
- }
455
- },
456
- {
457
- "id": "4be186d5c1732d7f723f5c9a",
458
- "name": "Wired Coffee Company",
459
- "contact": {
460
-
461
- },
462
- "location": {
463
- "address": "West Main Street",
464
- "city": "Hendersonville",
465
- "state": "TN",
466
- "lat": 36.3031494,
467
- "lng": -86.641662,
468
- "distance": 23809
469
- },
470
- "categories": [
471
- {
472
- "id": "4bf58dd8d48988d1e0931735",
473
- "name": "Coffee Shop",
474
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
475
- "parents": [
476
- "Food"
477
- ],
478
- "primary": true
479
- }
480
- ],
481
- "verified": false,
482
- "stats": {
483
- "checkinsCount": 122,
484
- "usersCount": 41
485
- },
486
- "todos": {
487
- "count": 0
488
- },
489
- "specials": [
490
-
491
- ],
492
- "hereNow": {
493
- "count": 0
494
- }
495
- },
496
- {
497
- "id": "4b06bd0cf964a52065ef22e3",
498
- "name": "Maxximo Jo's",
499
- "contact": {
500
- "phone": "6157919822",
501
- "twitter": "maxximojos"
502
- },
503
- "location": {
504
- "address": "1212 Murfreesboro Rd",
505
- "crossStreet": "Center Point Pl",
506
- "city": "Franklin",
507
- "state": "TN",
508
- "postalCode": "37064",
509
- "lat": 35.91509,
510
- "lng": -86.830634,
511
- "distance": 25300
512
- },
513
- "categories": [
514
- {
515
- "id": "4bf58dd8d48988d1e0931735",
516
- "name": "Coffee Shop",
517
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
518
- "parents": [
519
- "Food"
520
- ],
521
- "primary": true
522
- }
523
- ],
524
- "verified": false,
525
- "stats": {
526
- "checkinsCount": 170,
527
- "usersCount": 62
528
- },
529
- "todos": {
530
- "count": 0
531
- },
532
- "specials": [
533
-
534
- ],
535
- "hereNow": {
536
- "count": 0
537
- }
538
- },
539
- {
540
- "id": "4b9f8e29f964a5200c2b37e3",
541
- "name": "Hot Spot Coffee",
542
- "contact": {
543
- "phone": "6155991102"
544
- },
545
- "location": {
546
- "address": "1441 New Highway 96 W # 1",
547
- "city": "Franklin",
548
- "state": "TN",
549
- "postalCode": "37064-4831",
550
- "lat": 35.93029159296168,
551
- "lng": -86.90408706665039,
552
- "distance": 24869
553
- },
554
- "categories": [
555
- {
556
- "id": "4bf58dd8d48988d1e0931735",
557
- "name": "Coffee Shop",
558
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
559
- "parents": [
560
- "Food"
561
- ],
562
- "primary": true
563
- }
564
- ],
565
- "verified": false,
566
- "stats": {
567
- "checkinsCount": 160,
568
- "usersCount": 42
569
- },
570
- "todos": {
571
- "count": 0
572
- },
573
- "specials": [
574
-
575
- ],
576
- "hereNow": {
577
- "count": 0
578
- }
579
- },
580
- {
581
- "id": "4b0d7a01f964a520304923e3",
582
- "name": "Sky Blue Coffee & Bistro",
583
- "contact": {
584
- "phone": "6157707097"
585
- },
586
- "location": {
587
- "address": "700 Fatherland St.",
588
- "crossStreet": "7th Ave",
589
- "city": "Nashville",
590
- "state": "TN",
591
- "postalCode": "37206",
592
- "country": "USA",
593
- "lat": 36.1713669,
594
- "lng": -86.758867,
595
- "distance": 6090
596
- },
597
- "categories": [
598
- {
599
- "id": "4bf58dd8d48988d16d941735",
600
- "name": "Café",
601
- "icon": "http://foursquare.com/img/categories/food/cafe.png",
602
- "parents": [
603
- "Food"
604
- ],
605
- "primary": true
606
- },
607
- {
608
- "id": "4bf58dd8d48988d1e0931735",
609
- "name": "Coffee Shop",
610
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
611
- "parents": [
612
- "Food"
613
- ]
614
- }
615
- ],
616
- "verified": true,
617
- "stats": {
618
- "checkinsCount": 343,
619
- "usersCount": 191
620
- },
621
- "todos": {
622
- "count": 0
623
- },
624
- "specials": [
625
- {
626
- "id": "4bf7155886ba62b511cb88b3",
627
- "type": "count",
628
- "message": "10% off your order for checking in...",
629
- "description": "on your 1st check-in"
630
- }
631
- ],
632
- "hereNow": {
633
- "count": 0
634
- }
635
- },
636
- {
637
- "id": "4b9a5f88f964a520bfaf35e3",
638
- "name": "Coffee Beanery",
639
- "contact": {
640
- "phone": "6157909553"
641
- },
642
- "location": {
643
- "address": "1010 Murfreesboro Road",
644
- "city": "Franklin",
645
- "state": "TN",
646
- "postalCode": "37067",
647
- "lat": 35.9165107,
648
- "lng": -86.8388975,
649
- "distance": 25192
650
- },
651
- "categories": [
652
- {
653
- "id": "4bf58dd8d48988d1e0931735",
654
- "name": "Coffee Shop",
655
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
656
- "parents": [
657
- "Food"
658
- ],
659
- "primary": true
660
- }
661
- ],
662
- "verified": false,
663
- "stats": {
664
- "checkinsCount": 78,
665
- "usersCount": 43
666
- },
667
- "todos": {
668
- "count": 0
669
- },
670
- "specials": [
671
-
672
- ],
673
- "hereNow": {
674
- "count": 0
675
- }
676
- },
677
- {
678
- "id": "4b6f485ef964a52017e92ce3",
679
- "name": "Starbucks",
680
- "contact": {
681
- "phone": "6152754400",
682
- "twitter": "Starbucks"
683
- },
684
- "location": {
685
- "address": "Terminal C",
686
- "crossStreet": "Nashville International Airport",
687
- "city": "Nashville",
688
- "state": "TN",
689
- "postalCode": "37217",
690
- "lat": 36.12908831155034,
691
- "lng": -86.67030572891235,
692
- "distance": 13185
693
- },
694
- "categories": [
695
- {
696
- "id": "4bf58dd8d48988d1e0931735",
697
- "name": "Coffee Shop",
698
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
699
- "parents": [
700
- "Food"
701
- ],
702
- "primary": true
703
- },
704
- {
705
- "id": "4bf58dd8d48988d16d941735",
706
- "name": "Café",
707
- "icon": "http://foursquare.com/img/categories/food/cafe.png",
708
- "parents": [
709
- "Food"
710
- ]
711
- }
712
- ],
713
- "verified": false,
714
- "stats": {
715
- "checkinsCount": 550,
716
- "usersCount": 416
717
- },
718
- "todos": {
719
- "count": 0
720
- },
721
- "specials": [
722
-
723
- ],
724
- "hereNow": {
725
- "count": 0
726
- }
727
- },
728
- {
729
- "id": "4b075157f964a520ebfb22e3",
730
- "name": "Casablanca Coffee",
731
- "contact": {
732
- "phone": "6159427666"
733
- },
734
- "location": {
735
- "address": "602 12th Ave",
736
- "crossStreet": "Division",
737
- "city": "Nashville",
738
- "state": "TN",
739
- "postalCode": "37203",
740
- "lat": 36.151294,
741
- "lng": -86.783857,
742
- "distance": 3073
743
- },
744
- "categories": [
745
- {
746
- "id": "4bf58dd8d48988d1e0931735",
747
- "name": "Coffee Shop",
748
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
749
- "parents": [
750
- "Food"
751
- ],
752
- "primary": true
753
- }
754
- ],
755
- "verified": false,
756
- "stats": {
757
- "checkinsCount": 442,
758
- "usersCount": 165
759
- },
760
- "todos": {
761
- "count": 0
762
- },
763
- "specials": [
764
-
765
- ],
766
- "hereNow": {
767
- "count": 0
768
- }
769
- },
770
- {
771
- "id": "4bf56c0cff90c9b65a595628",
772
- "name": "Vienna House Coffee & Bistro",
773
- "contact": {
774
- "phone": "6156563567"
775
- },
776
- "location": {
777
- "address": "2000 Meridian Blvd",
778
- "crossStreet": "Carothers Pkw",
779
- "city": "Franklin",
780
- "state": "TN",
781
- "postalCode": "37067",
782
- "lat": 35.951788,
783
- "lng": -86.808231,
784
- "distance": 21193
785
- },
786
- "categories": [
787
- {
788
- "id": "4bf58dd8d48988d16d941735",
789
- "name": "Café",
790
- "icon": "http://foursquare.com/img/categories/food/cafe.png",
791
- "parents": [
792
- "Food"
793
- ],
794
- "primary": true
795
- },
796
- {
797
- "id": "4bf58dd8d48988d1e0931735",
798
- "name": "Coffee Shop",
799
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
800
- "parents": [
801
- "Food"
802
- ]
803
- }
804
- ],
805
- "verified": false,
806
- "stats": {
807
- "checkinsCount": 94,
808
- "usersCount": 53
809
- },
810
- "todos": {
811
- "count": 0
812
- },
813
- "specials": [
814
-
815
- ],
816
- "hereNow": {
817
- "count": 0
818
- }
819
- },
820
- {
821
- "id": "4ba9230af964a5205c0e3ae3",
822
- "name": "Starbucks - Hotel Indigo",
823
- "contact": {
824
- "phone": "6158916000",
825
- "twitter": "Starbucks"
826
- },
827
- "location": {
828
- "address": "301 Union St",
829
- "crossStreet": "3rd Ave N.",
830
- "city": "Nashville",
831
- "state": "Tennessee",
832
- "postalCode": "37201",
833
- "country": "USA",
834
- "lat": 36.16543633351585,
835
- "lng": -86.77869915962219,
836
- "distance": 4249
837
- },
838
- "categories": [
839
- {
840
- "id": "4bf58dd8d48988d1e0931735",
841
- "name": "Coffee Shop",
842
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
843
- "parents": [
844
- "Food"
845
- ],
846
- "primary": true
847
- }
848
- ],
849
- "verified": false,
850
- "stats": {
851
- "checkinsCount": 271,
852
- "usersCount": 113
853
- },
854
- "todos": {
855
- "count": 0
856
- },
857
- "specials": [
858
-
859
- ],
860
- "hereNow": {
861
- "count": 0
862
- }
863
- },
864
- {
865
- "id": "4bf6e6025ec320a17dfc85d3",
866
- "name": "Coffee Shop @ Nissan North America",
867
- "contact": {
868
-
869
- },
870
- "location": {
871
- "address": "One nissan way",
872
- "city": "Franklin",
873
- "state": "TN",
874
- "lat": 35.939845,
875
- "lng": -86.813072,
876
- "distance": 22512
877
- },
878
- "categories": [
879
- {
880
- "id": "4bf58dd8d48988d1e0931735",
881
- "name": "Coffee Shop",
882
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
883
- "parents": [
884
- "Food"
885
- ],
886
- "primary": true
887
- }
888
- ],
889
- "verified": false,
890
- "stats": {
891
- "checkinsCount": 68,
892
- "usersCount": 9
893
- },
894
- "todos": {
895
- "count": 0
896
- },
897
- "specials": [
898
-
899
- ],
900
- "hereNow": {
901
- "count": 0
902
- }
903
- },
904
- {
905
- "id": "4ba24e59f964a520a2eb37e3",
906
- "name": "Coffee Beanery",
907
- "contact": {
908
-
909
- },
910
- "location": {
911
- "address": "1800 Galleria Blvd",
912
- "city": "Franklin",
913
- "state": "Tn",
914
- "postalCode": "37067",
915
- "lat": 35.956674,
916
- "lng": -86.814223,
917
- "distance": 20638
918
- },
919
- "categories": [
920
- {
921
- "id": "4bf58dd8d48988d1e0931735",
922
- "name": "Coffee Shop",
923
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
924
- "parents": [
925
- "Food"
926
- ],
927
- "primary": true
928
- },
929
- {
930
- "id": "4bf58dd8d48988d1fd941735",
931
- "name": "Mall",
932
- "icon": "http://foursquare.com/img/categories/shops/default.png",
933
- "parents": [
934
- "Shops"
935
- ]
936
- }
937
- ],
938
- "verified": false,
939
- "stats": {
940
- "checkinsCount": 98,
941
- "usersCount": 23
942
- },
943
- "todos": {
944
- "count": 0
945
- },
946
- "specials": [
947
-
948
- ],
949
- "hereNow": {
950
- "count": 0
951
- }
952
- },
953
- {
954
- "id": "4d08ed21143cb60c60f27da6",
955
- "name": "Starbucks Coffee",
956
- "contact": {
957
-
958
- },
959
- "location": {
960
- "lat": 35.924015,
961
- "lng": -86.871508,
962
- "distance": 24780
963
- },
964
- "categories": [
965
- {
966
- "id": "4bf58dd8d48988d16d941735",
967
- "name": "Café",
968
- "icon": "http://foursquare.com/img/categories/food/cafe.png",
969
- "parents": [
970
- "Food"
971
- ],
972
- "primary": true
973
- }
974
- ],
975
- "verified": false,
976
- "stats": {
977
- "checkinsCount": 45,
978
- "usersCount": 27
979
- },
980
- "todos": {
981
- "count": 0
982
- },
983
- "specials": [
984
-
985
- ],
986
- "hereNow": {
987
- "count": 0
988
- }
989
- },
990
- {
991
- "id": "4c7c4754aa3ba093e867aa74",
992
- "name": "Starbucks Coffee",
993
- "contact": {
994
-
995
- },
996
- "location": {
997
- "city": "Madison",
998
- "state": "Tennessee",
999
- "lat": 36.303549,
1000
- "lng": -86.695859,
1001
- "distance": 20969
1002
- },
1003
- "categories": [
1004
- {
1005
- "id": "4bf58dd8d48988d1e0931735",
1006
- "name": "Coffee Shop",
1007
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
1008
- "parents": [
1009
- "Food"
1010
- ],
1011
- "primary": true
1012
- }
1013
- ],
1014
- "verified": false,
1015
- "stats": {
1016
- "checkinsCount": 66,
1017
- "usersCount": 24
1018
- },
1019
- "todos": {
1020
- "count": 0
1021
- },
1022
- "specials": [
1023
-
1024
- ],
1025
- "hereNow": {
1026
- "count": 0
1027
- }
1028
- },
1029
- {
1030
- "id": "4b434c51f964a5201bde25e3",
1031
- "name": "dunn bros coffee",
1032
- "contact": {
1033
- "phone": "6152522567",
1034
- "twitter": "dunnbrosnash"
1035
- },
1036
- "location": {
1037
- "address": "401 church street",
1038
- "crossStreet": "Corner of Fourth & Church",
1039
- "city": "Nashville",
1040
- "state": "Tn",
1041
- "postalCode": "37219",
1042
- "lat": 36.163213,
1043
- "lng": -86.778999,
1044
- "distance": 4081
1045
- },
1046
- "categories": [
1047
- {
1048
- "id": "4bf58dd8d48988d1e0931735",
1049
- "name": "Coffee Shop",
1050
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
1051
- "parents": [
1052
- "Food"
1053
- ],
1054
- "primary": true
1055
- }
1056
- ],
1057
- "verified": true,
1058
- "stats": {
1059
- "checkinsCount": 293,
1060
- "usersCount": 81
1061
- },
1062
- "url": "http://dunnbros.com",
1063
- "todos": {
1064
- "count": 0
1065
- },
1066
- "specials": [
1067
-
1068
- ],
1069
- "hereNow": {
1070
- "count": 0
1071
- }
1072
- },
1073
- {
1074
- "id": "4c2e90dc452620a103241c0f",
1075
- "name": "Seattle's Best Coffee",
1076
- "contact": {
1077
- "phone": "6158913671"
1078
- },
1079
- "location": {
1080
- "address": "4322 Harding Pike",
1081
- "city": "Nashville",
1082
- "state": "TN",
1083
- "postalCode": "37205",
1084
- "lat": 36.1261064,
1085
- "lng": -86.8459975,
1086
- "distance": 3222
1087
- },
1088
- "categories": [
1089
- {
1090
- "id": "4bf58dd8d48988d1e0931735",
1091
- "name": "Coffee Shop",
1092
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
1093
- "parents": [
1094
- "Food"
1095
- ],
1096
- "primary": true
1097
- }
1098
- ],
1099
- "verified": false,
1100
- "stats": {
1101
- "checkinsCount": 149,
1102
- "usersCount": 32
1103
- },
1104
- "todos": {
1105
- "count": 0
1106
- },
1107
- "specials": [
1108
-
1109
- ],
1110
- "hereNow": {
1111
- "count": 0
1112
- }
1113
- },
1114
- {
1115
- "id": "4c3feb11ff711b8d1bb70f05",
1116
- "name": "Hot Spot Coffee",
1117
- "contact": {
1118
- "phone": "6155991102"
1119
- },
1120
- "location": {
1121
- "address": "1441 New Highway 96 W # 1",
1122
- "crossStreet": "Downs Blvd.",
1123
- "city": "Franklin",
1124
- "state": "TN",
1125
- "postalCode": "37064",
1126
- "lat": 35.928305,
1127
- "lng": -86.888818,
1128
- "distance": 24679
1129
- },
1130
- "categories": [
1131
- {
1132
- "id": "4bf58dd8d48988d1e0931735",
1133
- "name": "Coffee Shop",
1134
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
1135
- "parents": [
1136
- "Food"
1137
- ],
1138
- "primary": true
1139
- }
1140
- ],
1141
- "verified": false,
1142
- "stats": {
1143
- "checkinsCount": 18,
1144
- "usersCount": 11
1145
- },
1146
- "todos": {
1147
- "count": 0
1148
- },
1149
- "specials": [
1150
-
1151
- ],
1152
- "hereNow": {
1153
- "count": 0
1154
- }
1155
- },
1156
- {
1157
- "id": "4cdf4d14df986ea8dd73e116",
1158
- "name": "The Coffeetable Table",
1159
- "contact": {
1160
-
1161
- },
1162
- "location": {
1163
- "lat": 36.044803,
1164
- "lng": -86.593529,
1165
- "distance": 22759
1166
- },
1167
- "categories": [
1168
-
1169
- ],
1170
- "verified": false,
1171
- "stats": {
1172
- "checkinsCount": 8,
1173
- "usersCount": 3
1174
- },
1175
- "todos": {
1176
- "count": 0
1177
- },
1178
- "specials": [
1179
-
1180
- ],
1181
- "hereNow": {
1182
- "count": 0
1183
- }
1184
- },
1185
- {
1186
- "id": "4cd1796a48b83704f9fdf8de",
1187
- "name": "Last Drop Coffee Shop",
1188
- "contact": {
1189
-
1190
- },
1191
- "location": {
1192
- "lat": 36.148736,
1193
- "lng": -86.804504,
1194
- "distance": 1278
1195
- },
1196
- "categories": [
1197
- {
1198
- "id": "4bf58dd8d48988d16d941735",
1199
- "name": "Café",
1200
- "icon": "http://foursquare.com/img/categories/food/cafe.png",
1201
- "parents": [
1202
- "Food"
1203
- ],
1204
- "primary": true
1205
- }
1206
- ],
1207
- "verified": false,
1208
- "stats": {
1209
- "checkinsCount": 16,
1210
- "usersCount": 8
1211
- },
1212
- "todos": {
1213
- "count": 0
1214
- },
1215
- "specials": [
1216
-
1217
- ],
1218
- "hereNow": {
1219
- "count": 0
1220
- }
1221
- },
1222
- {
1223
- "id": "4b4754c5f964a520122f26e3",
1224
- "name": "Seattle's Best Coffee",
1225
- "contact": {
1226
-
1227
- },
1228
- "location": {
1229
- "address": "330 Franklin Road",
1230
- "city": "Brentwood",
1231
- "state": "TN",
1232
- "postalCode": "37027",
1233
- "lat": 36.0277216,
1234
- "lng": -86.7917625,
1235
- "distance": 12915
1236
- },
1237
- "categories": [
1238
- {
1239
- "id": "4bf58dd8d48988d1e0931735",
1240
- "name": "Coffee Shop",
1241
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
1242
- "parents": [
1243
- "Food"
1244
- ],
1245
- "primary": true
1246
- }
1247
- ],
1248
- "verified": false,
1249
- "stats": {
1250
- "checkinsCount": 190,
1251
- "usersCount": 6
1252
- },
1253
- "todos": {
1254
- "count": 0
1255
- },
1256
- "specials": [
1257
-
1258
- ],
1259
- "hereNow": {
1260
- "count": 0
1261
- }
1262
- },
1263
- {
1264
- "id": "4c4ef579f53d0f47fdde61a7",
1265
- "name": "That Good Coffee Place",
1266
- "contact": {
1267
-
1268
- },
1269
- "location": {
1270
- "address": "2300 Patterson Street",
1271
- "city": "Nashville",
1272
- "state": "TN",
1273
- "lat": 36.153635,
1274
- "lng": -86.810061,
1275
- "distance": 1397
1276
- },
1277
- "categories": [
1278
-
1279
- ],
1280
- "verified": false,
1281
- "stats": {
1282
- "checkinsCount": 20,
1283
- "usersCount": 1
1284
- },
1285
- "todos": {
1286
- "count": 0
1287
- },
1288
- "specials": [
1289
-
1290
- ],
1291
- "hereNow": {
1292
- "count": 0
1293
- }
1294
- },
1295
- {
1296
- "id": "4ccafeebf1f3199cebd1d8d9",
1297
- "name": "Wired Coffee Company",
1298
- "contact": {
1299
- "twitter": "lovewiredcoffee"
1300
- },
1301
- "location": {
1302
- "address": "699 West Main Street",
1303
- "crossStreet": "Forest Retreat",
1304
- "city": "Hendersonville",
1305
- "state": "TN",
1306
- "postalCode": "37075",
1307
- "lat": 36.302335,
1308
- "lng": -86.64044,
1309
- "distance": 23814
1310
- },
1311
- "categories": [
1312
-
1313
- ],
1314
- "verified": false,
1315
- "stats": {
1316
- "checkinsCount": 2,
1317
- "usersCount": 2
1318
- },
1319
- "todos": {
1320
- "count": 0
1321
- },
1322
- "specials": [
1323
-
1324
- ],
1325
- "hereNow": {
1326
- "count": 0
1327
- }
1328
- }
1329
- ]
1330
- },
1331
- {
1332
- "type": "tags",
1333
- "name": "Matching Tags",
1334
- "items": [
1335
- {
1336
- "id": "4b06ec04f964a52020f322e3",
1337
- "name": "Fido",
1338
- "contact": {
1339
- "phone": "6157773436"
1340
- },
1341
- "location": {
1342
- "address": "1812 21st Ave S",
1343
- "crossStreet": "at Belcourt",
1344
- "city": "Nashville",
1345
- "state": "TN",
1346
- "postalCode": "37212",
1347
- "country": "USA",
1348
- "lat": 36.1367228,
1349
- "lng": -86.8008444,
1350
- "distance": 1493
1351
- },
1352
- "categories": [
1353
- {
1354
- "id": "4bf58dd8d48988d1e0931735",
1355
- "name": "Coffee Shop",
1356
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
1357
- "parents": [
1358
- "Food"
1359
- ],
1360
- "primary": true
1361
- }
1362
- ],
1363
- "verified": false,
1364
- "stats": {
1365
- "checkinsCount": 3597,
1366
- "usersCount": 1221
1367
- },
1368
- "todos": {
1369
- "count": 0
1370
- },
1371
- "specials": [
1372
-
1373
- ],
1374
- "hereNow": {
1375
- "count": 0
1376
- }
1377
- },
1378
- {
1379
- "id": "4b2afcaaf964a5205bb324e3",
1380
- "name": "Starbucks",
1381
- "contact": {
1382
- "phone": "6153210262",
1383
- "twitter": "Starbucks"
1384
- },
1385
- "location": {
1386
- "address": "3005 West End Ave",
1387
- "crossStreet": "30th Ave",
1388
- "city": "Nashville",
1389
- "state": "TN",
1390
- "postalCode": "37203",
1391
- "lat": 36.143546,
1392
- "lng": -86.813794,
1393
- "distance": 263
1394
- },
1395
- "categories": [
1396
- {
1397
- "id": "4bf58dd8d48988d1e0931735",
1398
- "name": "Coffee Shop",
1399
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
1400
- "parents": [
1401
- "Food"
1402
- ],
1403
- "primary": true
1404
- },
1405
- {
1406
- "id": "4bf58dd8d48988d16d941735",
1407
- "name": "Café",
1408
- "icon": "http://foursquare.com/img/categories/food/cafe.png",
1409
- "parents": [
1410
- "Food"
1411
- ]
1412
- }
1413
- ],
1414
- "verified": true,
1415
- "stats": {
1416
- "checkinsCount": 2019,
1417
- "usersCount": 603
1418
- },
1419
- "todos": {
1420
- "count": 0
1421
- },
1422
- "specials": [
1423
-
1424
- ],
1425
- "hereNow": {
1426
- "count": 0
1427
- }
1428
- },
1429
- {
1430
- "id": "4b073160f964a5204bf922e3",
1431
- "name": "Cafe Coco",
1432
- "contact": {
1433
-
1434
- },
1435
- "location": {
1436
- "address": "210 Louise Ave",
1437
- "city": "Nashville",
1438
- "state": "TN",
1439
- "postalCode": "37203",
1440
- "lat": 36.151912,
1441
- "lng": -86.804893,
1442
- "distance": 1487
1443
- },
1444
- "categories": [
1445
- {
1446
- "id": "4bf58dd8d48988d1e0931735",
1447
- "name": "Coffee Shop",
1448
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
1449
- "parents": [
1450
- "Food"
1451
- ],
1452
- "primary": true
1453
- },
1454
- {
1455
- "id": "4bf58dd8d48988d116941735",
1456
- "name": "Bar",
1457
- "icon": "http://foursquare.com/img/categories/nightlife/default.png",
1458
- "parents": [
1459
- "Nightlife"
1460
- ]
1461
- },
1462
- {
1463
- "id": "4bf58dd8d48988d1e9931735",
1464
- "name": "Rock Club",
1465
- "icon": "http://foursquare.com/img/categories/arts_entertainment/musicvenue_rockclub.png",
1466
- "parents": [
1467
- "Arts & Entertainment",
1468
- "Music Venue"
1469
- ]
1470
- },
1471
- {
1472
- "id": "4bf58dd8d48988d14e941735",
1473
- "name": "American",
1474
- "icon": "http://foursquare.com/img/categories/food/default.png",
1475
- "parents": [
1476
- "Food"
1477
- ]
1478
- }
1479
- ],
1480
- "verified": false,
1481
- "stats": {
1482
- "checkinsCount": 1592,
1483
- "usersCount": 747
1484
- },
1485
- "todos": {
1486
- "count": 0
1487
- },
1488
- "specials": [
1489
-
1490
- ],
1491
- "hereNow": {
1492
- "count": 0
1493
- }
1494
- },
1495
- {
1496
- "id": "4b3388b1f964a5206b1a25e3",
1497
- "name": "The Frothy Monkey Coffeehouse",
1498
- "contact": {
1499
- "phone": "6152921808",
1500
- "twitter": "frothymonkey"
1501
- },
1502
- "location": {
1503
- "address": "2509 12th Ave S",
1504
- "crossStreet": "at Gilmore Ave",
1505
- "city": "Nashville",
1506
- "state": "TN",
1507
- "postalCode": "37204",
1508
- "lat": 36.12458208029139,
1509
- "lng": -86.78984642028809,
1510
- "distance": 3058
1511
- },
1512
- "categories": [
1513
- {
1514
- "id": "4bf58dd8d48988d1e0931735",
1515
- "name": "Coffee Shop",
1516
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
1517
- "parents": [
1518
- "Food"
1519
- ],
1520
- "primary": true
1521
- }
1522
- ],
1523
- "verified": false,
1524
- "stats": {
1525
- "checkinsCount": 1678,
1526
- "usersCount": 558
1527
- },
1528
- "todos": {
1529
- "count": 0
1530
- },
1531
- "specials": [
1532
-
1533
- ],
1534
- "hereNow": {
1535
- "count": 0
1536
- }
1537
- },
1538
- {
1539
- "id": "4b0822d7f964a5208c0423e3",
1540
- "name": "Dose",
1541
- "contact": {
1542
- "phone": "6154571300",
1543
- "twitter": "dosecoffee"
1544
- },
1545
- "location": {
1546
- "address": "3431 Murphy Rd.",
1547
- "crossStreet": "West End",
1548
- "city": "Nashville",
1549
- "state": "TN",
1550
- "postalCode": "37203",
1551
- "country": "USA",
1552
- "lat": 36.139434,
1553
- "lng": -86.8219809,
1554
- "distance": 605
1555
- },
1556
- "categories": [
1557
- {
1558
- "id": "4bf58dd8d48988d1e0931735",
1559
- "name": "Coffee Shop",
1560
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
1561
- "parents": [
1562
- "Food"
1563
- ],
1564
- "primary": true
1565
- },
1566
- {
1567
- "id": "4bf58dd8d48988d16d941735",
1568
- "name": "Café",
1569
- "icon": "http://foursquare.com/img/categories/food/cafe.png",
1570
- "parents": [
1571
- "Food"
1572
- ]
1573
- },
1574
- {
1575
- "id": "4bf58dd8d48988d16a941735",
1576
- "name": "Bakery",
1577
- "icon": "http://foursquare.com/img/categories/food/bakery.png",
1578
- "parents": [
1579
- "Food"
1580
- ]
1581
- }
1582
- ],
1583
- "verified": true,
1584
- "stats": {
1585
- "checkinsCount": 596,
1586
- "usersCount": 186
1587
- },
1588
- "todos": {
1589
- "count": 0
1590
- },
1591
- "specials": [
1592
-
1593
- ],
1594
- "hereNow": {
1595
- "count": 1
1596
- }
1597
- },
1598
- {
1599
- "id": "4b21ab73f964a520d83f24e3",
1600
- "name": "Starbucks",
1601
- "contact": {
1602
- "phone": "6153830353",
1603
- "twitter": "Starbucks"
1604
- },
1605
- "location": {
1606
- "address": "3706 Hillsboro Pike",
1607
- "crossStreet": "btw Graybar Ln & Glen Echo Rd",
1608
- "city": "Nashville",
1609
- "state": "TN",
1610
- "postalCode": "37215",
1611
- "country": "USA",
1612
- "lat": 36.109922,
1613
- "lng": -86.810772,
1614
- "distance": 3609
1615
- },
1616
- "categories": [
1617
- {
1618
- "id": "4bf58dd8d48988d1e0931735",
1619
- "name": "Coffee Shop",
1620
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
1621
- "parents": [
1622
- "Food"
1623
- ],
1624
- "primary": true
1625
- }
1626
- ],
1627
- "verified": true,
1628
- "stats": {
1629
- "checkinsCount": 1350,
1630
- "usersCount": 468
1631
- },
1632
- "todos": {
1633
- "count": 0
1634
- },
1635
- "specials": [
1636
-
1637
- ],
1638
- "hereNow": {
1639
- "count": 0
1640
- }
1641
- },
1642
- {
1643
- "id": "4b20103cf964a520bc2c24e3",
1644
- "name": "Panera Bread",
1645
- "contact": {
1646
- "phone": "6153216401"
1647
- },
1648
- "location": {
1649
- "address": "2829 West End Avenue",
1650
- "city": "Nashville",
1651
- "state": "TN",
1652
- "postalCode": "37203",
1653
- "country": "USA",
1654
- "lat": 36.14379242414867,
1655
- "lng": -86.81356251239777,
1656
- "distance": 297
1657
- },
1658
- "categories": [
1659
- {
1660
- "id": "4bf58dd8d48988d1c5941735",
1661
- "name": "Sandwiches",
1662
- "icon": "http://foursquare.com/img/categories/food/sandwiches.png",
1663
- "parents": [
1664
- "Food"
1665
- ],
1666
- "primary": true
1667
- }
1668
- ],
1669
- "verified": false,
1670
- "stats": {
1671
- "checkinsCount": 580,
1672
- "usersCount": 277
1673
- },
1674
- "todos": {
1675
- "count": 0
1676
- },
1677
- "specials": [
1678
-
1679
- ],
1680
- "hereNow": {
1681
- "count": 0
1682
- }
1683
- },
1684
- {
1685
- "id": "4b0755dcf964a52030fc22e3",
1686
- "name": "Starbucks",
1687
- "contact": {
1688
- "phone": "6153410093"
1689
- },
1690
- "location": {
1691
- "address": "2525 West End Ave",
1692
- "crossStreet": "at Natchez Trce",
1693
- "city": "Nashville",
1694
- "state": "TN",
1695
- "postalCode": "37203",
1696
- "lat": 36.145452,
1697
- "lng": -86.809325,
1698
- "distance": 715
1699
- },
1700
- "categories": [
1701
- {
1702
- "id": "4bf58dd8d48988d1e0931735",
1703
- "name": "Coffee Shop",
1704
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
1705
- "parents": [
1706
- "Food"
1707
- ],
1708
- "primary": true
1709
- }
1710
- ],
1711
- "verified": true,
1712
- "stats": {
1713
- "checkinsCount": 829,
1714
- "usersCount": 259
1715
- },
1716
- "todos": {
1717
- "count": 0
1718
- },
1719
- "specials": [
1720
-
1721
- ],
1722
- "hereNow": {
1723
- "count": 0
1724
- }
1725
- },
1726
- {
1727
- "id": "4b058668f964a520c66022e3",
1728
- "name": "Bongo Java",
1729
- "contact": {
1730
- "phone": "6153855282",
1731
- "twitter": "bongojava"
1732
- },
1733
- "location": {
1734
- "address": "2007 Belmont Blvd",
1735
- "crossStreet": "btw Portland Ave & Bernard Ave",
1736
- "city": "Nashville",
1737
- "state": "TN",
1738
- "postalCode": "37212",
1739
- "lat": 36.132156,
1740
- "lng": -86.795849,
1741
- "distance": 2127
1742
- },
1743
- "categories": [
1744
- {
1745
- "id": "4bf58dd8d48988d1e0931735",
1746
- "name": "Coffee Shop",
1747
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
1748
- "parents": [
1749
- "Food"
1750
- ],
1751
- "primary": true
1752
- }
1753
- ],
1754
- "verified": false,
1755
- "stats": {
1756
- "checkinsCount": 1023,
1757
- "usersCount": 471
1758
- },
1759
- "todos": {
1760
- "count": 0
1761
- },
1762
- "specials": [
1763
-
1764
- ],
1765
- "hereNow": {
1766
- "count": 0
1767
- }
1768
- },
1769
- {
1770
- "id": "4b07f35df964a520780123e3",
1771
- "name": "Bongo Java Roasting Company",
1772
- "contact": {
1773
-
1774
- },
1775
- "location": {
1776
- "address": "107 S 11th St",
1777
- "city": "Nashville",
1778
- "state": "TN",
1779
- "lat": 36.1770349,
1780
- "lng": -86.749639,
1781
- "distance": 7128
1782
- },
1783
- "categories": [
1784
- {
1785
- "id": "4bf58dd8d48988d1e0931735",
1786
- "name": "Coffee Shop",
1787
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
1788
- "parents": [
1789
- "Food"
1790
- ],
1791
- "primary": true
1792
- }
1793
- ],
1794
- "verified": false,
1795
- "stats": {
1796
- "checkinsCount": 1073,
1797
- "usersCount": 315
1798
- },
1799
- "todos": {
1800
- "count": 0
1801
- },
1802
- "specials": [
1803
-
1804
- ],
1805
- "hereNow": {
1806
- "count": 0
1807
- }
1808
- },
1809
- {
1810
- "id": "4b16a81bf964a5208cbb23e3",
1811
- "name": "Panera Bread",
1812
- "contact": {
1813
- "phone": "6153201500"
1814
- },
1815
- "location": {
1816
- "address": "406 21st Ave S",
1817
- "crossStreet": "btw Scarritt Pl & Grand Ave",
1818
- "city": "Nashville",
1819
- "state": "TN",
1820
- "country": "USA",
1821
- "lat": 36.146492,
1822
- "lng": -86.799093,
1823
- "distance": 1605
1824
- },
1825
- "categories": [
1826
- {
1827
- "id": "4bf58dd8d48988d1e0931735",
1828
- "name": "Coffee Shop",
1829
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
1830
- "parents": [
1831
- "Food"
1832
- ],
1833
- "primary": true
1834
- }
1835
- ],
1836
- "verified": false,
1837
- "stats": {
1838
- "checkinsCount": 748,
1839
- "usersCount": 382
1840
- },
1841
- "todos": {
1842
- "count": 0
1843
- },
1844
- "specials": [
1845
-
1846
- ],
1847
- "hereNow": {
1848
- "count": 0
1849
- }
1850
- },
1851
- {
1852
- "id": "4b0adb6ff964a520f92823e3",
1853
- "name": "Crema Coffee",
1854
- "contact": {
1855
- "phone": "6152558311",
1856
- "twitter": "CremaCrema"
1857
- },
1858
- "location": {
1859
- "address": "15 Hermitage Ave",
1860
- "crossStreet": "btw Peabody & Lea",
1861
- "city": "Nashville",
1862
- "state": "TN",
1863
- "postalCode": "37210",
1864
- "country": "USA",
1865
- "lat": 36.156815,
1866
- "lng": -86.769801,
1867
- "distance": 4472
1868
- },
1869
- "categories": [
1870
- {
1871
- "id": "4bf58dd8d48988d16d941735",
1872
- "name": "Café",
1873
- "icon": "http://foursquare.com/img/categories/food/cafe.png",
1874
- "parents": [
1875
- "Food"
1876
- ],
1877
- "primary": true
1878
- },
1879
- {
1880
- "id": "4bf58dd8d48988d1e0931735",
1881
- "name": "Coffee Shop",
1882
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
1883
- "parents": [
1884
- "Food"
1885
- ]
1886
- }
1887
- ],
1888
- "verified": false,
1889
- "stats": {
1890
- "checkinsCount": 1209,
1891
- "usersCount": 306
1892
- },
1893
- "todos": {
1894
- "count": 0
1895
- },
1896
- "specials": [
1897
-
1898
- ],
1899
- "hereNow": {
1900
- "count": 0
1901
- }
1902
- },
1903
- {
1904
- "id": "4b118c76f964a520107f23e3",
1905
- "name": "Borders Bookstore",
1906
- "contact": {
1907
- "phone": "6153279656"
1908
- },
1909
- "location": {
1910
- "address": "2501 West End Ave",
1911
- "crossStreet": "at 25th Ave S",
1912
- "city": "Nashville",
1913
- "state": "TN",
1914
- "postalCode": "37201",
1915
- "lat": 36.1464695411456,
1916
- "lng": -86.80855751037598,
1917
- "distance": 835
1918
- },
1919
- "categories": [
1920
- {
1921
- "id": "4bf58dd8d48988d114951735",
1922
- "name": "Bookstore",
1923
- "icon": "http://foursquare.com/img/categories/shops/bookstore.png",
1924
- "parents": [
1925
- "Shops"
1926
- ],
1927
- "primary": true
1928
- },
1929
- {
1930
- "id": "4bf58dd8d48988d1e0931735",
1931
- "name": "Coffee Shop",
1932
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
1933
- "parents": [
1934
- "Food"
1935
- ]
1936
- }
1937
- ],
1938
- "verified": false,
1939
- "stats": {
1940
- "checkinsCount": 546,
1941
- "usersCount": 288
1942
- },
1943
- "todos": {
1944
- "count": 0
1945
- },
1946
- "specials": [
1947
-
1948
- ],
1949
- "hereNow": {
1950
- "count": 0
1951
- }
1952
- },
1953
- {
1954
- "id": "4b4b2239f964a520d99226e3",
1955
- "name": "Starbucks",
1956
- "contact": {
1957
- "phone": "6157702706",
1958
- "twitter": "Starbucks"
1959
- },
1960
- "location": {
1961
- "address": "515 Dominican Dr",
1962
- "crossStreet": "Rosa L. Parks Blvd",
1963
- "city": "Nashville",
1964
- "state": "TN",
1965
- "postalCode": "37228",
1966
- "country": "USA",
1967
- "lat": 36.187689067020706,
1968
- "lng": -86.79787427186966,
1969
- "distance": 5336
1970
- },
1971
- "categories": [
1972
- {
1973
- "id": "4bf58dd8d48988d1e0931735",
1974
- "name": "Coffee Shop",
1975
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
1976
- "parents": [
1977
- "Food"
1978
- ],
1979
- "primary": true
1980
- }
1981
- ],
1982
- "verified": true,
1983
- "stats": {
1984
- "checkinsCount": 908,
1985
- "usersCount": 237
1986
- },
1987
- "todos": {
1988
- "count": 0
1989
- },
1990
- "specials": [
1991
-
1992
- ],
1993
- "hereNow": {
1994
- "count": 0
1995
- }
1996
- },
1997
- {
1998
- "id": "4b05b8d0f964a5209fe122e3",
1999
- "name": "DrinkHaus Espresso+Tea",
2000
- "contact": {
2001
- "phone": "6152555200",
2002
- "twitter": "DrinkHaus"
2003
- },
2004
- "location": {
2005
- "address": "500 Madison St, #103",
2006
- "crossStreet": "btw 5th & 6th Ave N",
2007
- "city": "Nashville",
2008
- "state": "TN",
2009
- "postalCode": "37208",
2010
- "lat": 36.1751549,
2011
- "lng": -86.78853,
2012
- "distance": 4438
2013
- },
2014
- "categories": [
2015
- {
2016
- "id": "4bf58dd8d48988d1dc931735",
2017
- "name": "Tea Room",
2018
- "icon": "http://foursquare.com/img/categories/food/tearoom.png",
2019
- "parents": [
2020
- "Food"
2021
- ],
2022
- "primary": true
2023
- },
2024
- {
2025
- "id": "4bf58dd8d48988d1e0931735",
2026
- "name": "Coffee Shop",
2027
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
2028
- "parents": [
2029
- "Food"
2030
- ]
2031
- }
2032
- ],
2033
- "verified": false,
2034
- "stats": {
2035
- "checkinsCount": 864,
2036
- "usersCount": 126
2037
- },
2038
- "todos": {
2039
- "count": 0
2040
- },
2041
- "specials": [
2042
-
2043
- ],
2044
- "hereNow": {
2045
- "count": 0
2046
- }
2047
- },
2048
- {
2049
- "id": "4b05866af964a520166122e3",
2050
- "name": "Rocketown",
2051
- "contact": {
2052
- "phone": "6158434001",
2053
- "twitter": "rocketown"
2054
- },
2055
- "location": {
2056
- "address": "601 4th Avenue South",
2057
- "city": "Nashville",
2058
- "state": "TN",
2059
- "postalCode": "37203",
2060
- "country": "USA",
2061
- "lat": 36.15412784374999,
2062
- "lng": -86.77317380905151,
2063
- "distance": 4084
2064
- },
2065
- "categories": [
2066
- {
2067
- "id": "4bf58dd8d48988d16d941735",
2068
- "name": "Café",
2069
- "icon": "http://foursquare.com/img/categories/food/cafe.png",
2070
- "parents": [
2071
- "Food"
2072
- ],
2073
- "primary": true
2074
- },
2075
- {
2076
- "id": "4bf58dd8d48988d1e5931735",
2077
- "name": "Music Venue",
2078
- "icon": "http://foursquare.com/img/categories/arts_entertainment/musicvenue.png",
2079
- "parents": [
2080
- "Arts & Entertainment"
2081
- ]
2082
- },
2083
- {
2084
- "id": "4bf58dd8d48988d1e0931735",
2085
- "name": "Coffee Shop",
2086
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
2087
- "parents": [
2088
- "Food"
2089
- ]
2090
- },
2091
- {
2092
- "id": "4bf58dd8d48988d167941735",
2093
- "name": "Skate Park / Spot",
2094
- "icon": "http://foursquare.com/img/categories/parks_outdoors/skate_park.png",
2095
- "parents": [
2096
- "Parks & Outdoors"
2097
- ]
2098
- }
2099
- ],
2100
- "verified": true,
2101
- "stats": {
2102
- "checkinsCount": 655,
2103
- "usersCount": 273
2104
- },
2105
- "todos": {
2106
- "count": 0
2107
- },
2108
- "specials": [
2109
- {
2110
- "id": "4c5a364e15aaef3b48c4c480",
2111
- "type": "mayor",
2112
- "message": "50% Coffeebar drink",
2113
- "description": "for the mayor"
2114
- }
2115
- ],
2116
- "hereNow": {
2117
- "count": 0
2118
- }
2119
- },
2120
- {
2121
- "id": "4bbd1463a8cf76b06b61b1fd",
2122
- "name": "Starbucks Coffee",
2123
- "contact": {
2124
- "phone": "6154601152",
2125
- "twitter": "Starbucks"
2126
- },
2127
- "location": {
2128
- "address": "4514 Harding Pike",
2129
- "city": "Nashville",
2130
- "state": "TN",
2131
- "postalCode": "37205",
2132
- "lat": 36.1247499,
2133
- "lng": -86.8479817,
2134
- "distance": 3455
2135
- },
2136
- "categories": [
2137
- {
2138
- "id": "4bf58dd8d48988d1e0931735",
2139
- "name": "Coffee Shop",
2140
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
2141
- "parents": [
2142
- "Food"
2143
- ],
2144
- "primary": true
2145
- }
2146
- ],
2147
- "verified": true,
2148
- "stats": {
2149
- "checkinsCount": 646,
2150
- "usersCount": 257
2151
- },
2152
- "todos": {
2153
- "count": 0
2154
- },
2155
- "specials": [
2156
-
2157
- ],
2158
- "hereNow": {
2159
- "count": 0
2160
- }
2161
- },
2162
- {
2163
- "id": "4babcd6df964a520dfca3ae3",
2164
- "name": "CoLab Nashville",
2165
- "contact": {
2166
- "phone": "6158526522"
2167
- },
2168
- "location": {
2169
- "address": "230 N. 4th Avenue",
2170
- "crossStreet": "Union",
2171
- "city": "Nashville",
2172
- "state": "Tennessee",
2173
- "postalCode": "37219",
2174
- "lat": 36.1628125,
2175
- "lng": -86.7783496,
2176
- "distance": 4103
2177
- },
2178
- "categories": [
2179
- {
2180
- "id": "4bf58dd8d48988d174941735",
2181
- "name": "Coworking Space",
2182
- "icon": "http://foursquare.com/img/categories/building/default.png",
2183
- "parents": [
2184
- "Home / Work / Other",
2185
- "Corporate / Office"
2186
- ],
2187
- "primary": true
2188
- },
2189
- {
2190
- "id": "4bf58dd8d48988d124941735",
2191
- "name": "Corporate / Office",
2192
- "icon": "http://foursquare.com/img/categories/building/default.png",
2193
- "parents": [
2194
- "Home / Work / Other"
2195
- ]
2196
- }
2197
- ],
2198
- "verified": false,
2199
- "stats": {
2200
- "checkinsCount": 482,
2201
- "usersCount": 68
2202
- },
2203
- "todos": {
2204
- "count": 0
2205
- },
2206
- "specials": [
2207
-
2208
- ],
2209
- "hereNow": {
2210
- "count": 0
2211
- }
2212
- },
2213
- {
2214
- "id": "4b16c553f964a52031bd23e3",
2215
- "name": "Sweet 16th",
2216
- "contact": {
2217
- "phone": "6152268367"
2218
- },
2219
- "location": {
2220
- "address": "311 N 16th St",
2221
- "crossStreet": "Ordway Pl",
2222
- "city": "Nashville",
2223
- "state": "TN",
2224
- "postalCode": "37206",
2225
- "lat": 36.179717954183644,
2226
- "lng": -86.74140572547913,
2227
- "distance": 7913
2228
- },
2229
- "categories": [
2230
- {
2231
- "id": "4bf58dd8d48988d16a941735",
2232
- "name": "Bakery",
2233
- "icon": "http://foursquare.com/img/categories/food/bakery.png",
2234
- "parents": [
2235
- "Food"
2236
- ],
2237
- "primary": true
2238
- }
2239
- ],
2240
- "verified": false,
2241
- "stats": {
2242
- "checkinsCount": 389,
2243
- "usersCount": 60
2244
- },
2245
- "todos": {
2246
- "count": 0
2247
- },
2248
- "specials": [
2249
-
2250
- ],
2251
- "hereNow": {
2252
- "count": 0
2253
- }
2254
- },
2255
- {
2256
- "id": "4b06d20ef964a520d7f022e3",
2257
- "name": "J & J's Market & Cafe",
2258
- "contact": {
2259
- "phone": "6153279055"
2260
- },
2261
- "location": {
2262
- "address": "1912 Broadway",
2263
- "city": "Nashville",
2264
- "state": "TN",
2265
- "postalCode": "37203",
2266
- "lat": 36.150413,
2267
- "lng": -86.797567,
2268
- "distance": 1906
2269
- },
2270
- "categories": [
2271
- {
2272
- "id": "4bf58dd8d48988d1e0931735",
2273
- "name": "Coffee Shop",
2274
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
2275
- "parents": [
2276
- "Food"
2277
- ],
2278
- "primary": true
2279
- }
2280
- ],
2281
- "verified": false,
2282
- "stats": {
2283
- "checkinsCount": 458,
2284
- "usersCount": 177
2285
- },
2286
- "todos": {
2287
- "count": 0
2288
- },
2289
- "specials": [
2290
-
2291
- ],
2292
- "hereNow": {
2293
- "count": 0
2294
- }
2295
- },
2296
- {
2297
- "id": "4b0d7a01f964a520304923e3",
2298
- "name": "Sky Blue Coffee & Bistro",
2299
- "contact": {
2300
- "phone": "6157707097"
2301
- },
2302
- "location": {
2303
- "address": "700 Fatherland St.",
2304
- "crossStreet": "7th Ave",
2305
- "city": "Nashville",
2306
- "state": "TN",
2307
- "postalCode": "37206",
2308
- "country": "USA",
2309
- "lat": 36.1713669,
2310
- "lng": -86.758867,
2311
- "distance": 6090
2312
- },
2313
- "categories": [
2314
- {
2315
- "id": "4bf58dd8d48988d16d941735",
2316
- "name": "Café",
2317
- "icon": "http://foursquare.com/img/categories/food/cafe.png",
2318
- "parents": [
2319
- "Food"
2320
- ],
2321
- "primary": true
2322
- },
2323
- {
2324
- "id": "4bf58dd8d48988d1e0931735",
2325
- "name": "Coffee Shop",
2326
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
2327
- "parents": [
2328
- "Food"
2329
- ]
2330
- }
2331
- ],
2332
- "verified": true,
2333
- "stats": {
2334
- "checkinsCount": 343,
2335
- "usersCount": 191
2336
- },
2337
- "todos": {
2338
- "count": 0
2339
- },
2340
- "specials": [
2341
- {
2342
- "id": "4bf7155886ba62b511cb88b3",
2343
- "type": "count",
2344
- "message": "10% off your order for checking in...",
2345
- "description": "on your 1st check-in"
2346
- }
2347
- ],
2348
- "hereNow": {
2349
- "count": 0
2350
- }
2351
- },
2352
- {
2353
- "id": "4b071b08f964a52056f722e3",
2354
- "name": "Edgehill Cafe",
2355
- "contact": {
2356
- "phone": "6153018539"
2357
- },
2358
- "location": {
2359
- "address": "1201 Villa Place",
2360
- "city": "Nashville",
2361
- "state": "TN",
2362
- "postalCode": "37212",
2363
- "lat": 36.142984,
2364
- "lng": -86.792303,
2365
- "distance": 2140
2366
- },
2367
- "categories": [
2368
- {
2369
- "id": "4bf58dd8d48988d16d941735",
2370
- "name": "Café",
2371
- "icon": "http://foursquare.com/img/categories/food/cafe.png",
2372
- "parents": [
2373
- "Food"
2374
- ],
2375
- "primary": true
2376
- }
2377
- ],
2378
- "verified": false,
2379
- "stats": {
2380
- "checkinsCount": 619,
2381
- "usersCount": 224
2382
- },
2383
- "todos": {
2384
- "count": 0
2385
- },
2386
- "specials": [
2387
-
2388
- ],
2389
- "hereNow": {
2390
- "count": 0
2391
- }
2392
- },
2393
- {
2394
- "id": "4ceaf73df1c6236abf766df0",
2395
- "name": "Hot & Cold",
2396
- "contact": {
2397
- "twitter": "bongohotandcold"
2398
- },
2399
- "location": {
2400
- "address": "1804 21st Ave S",
2401
- "city": "Nashville",
2402
- "state": "Tennessee",
2403
- "lat": 36.1368228,
2404
- "lng": -86.8008308,
2405
- "distance": 1490
2406
- },
2407
- "categories": [
2408
- {
2409
- "id": "4bf58dd8d48988d1e0931735",
2410
- "name": "Coffee Shop",
2411
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
2412
- "parents": [
2413
- "Food"
2414
- ],
2415
- "primary": true
2416
- }
2417
- ],
2418
- "verified": false,
2419
- "stats": {
2420
- "checkinsCount": 110,
2421
- "usersCount": 55
2422
- },
2423
- "todos": {
2424
- "count": 0
2425
- },
2426
- "specials": [
2427
-
2428
- ],
2429
- "hereNow": {
2430
- "count": 0
2431
- }
2432
- },
2433
- {
2434
- "id": "4b128214f964a520638a23e3",
2435
- "name": "The Listening Room Cafe",
2436
- "contact": {
2437
- "phone": "6152593600"
2438
- },
2439
- "location": {
2440
- "address": "209 10th Ave. South",
2441
- "city": "Nashville",
2442
- "state": "TN",
2443
- "postalCode": "37203",
2444
- "lat": 36.154734,
2445
- "lng": -86.782191,
2446
- "distance": 3357
2447
- },
2448
- "categories": [
2449
- {
2450
- "id": "4bf58dd8d48988d116941735",
2451
- "name": "Bar",
2452
- "icon": "http://foursquare.com/img/categories/nightlife/default.png",
2453
- "parents": [
2454
- "Nightlife"
2455
- ],
2456
- "primary": true
2457
- },
2458
- {
2459
- "id": "4bf58dd8d48988d1e0931735",
2460
- "name": "Coffee Shop",
2461
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
2462
- "parents": [
2463
- "Food"
2464
- ]
2465
- }
2466
- ],
2467
- "verified": false,
2468
- "stats": {
2469
- "checkinsCount": 447,
2470
- "usersCount": 198
2471
- },
2472
- "todos": {
2473
- "count": 0
2474
- },
2475
- "specials": [
2476
-
2477
- ],
2478
- "hereNow": {
2479
- "count": 0
2480
- }
2481
- },
2482
- {
2483
- "id": "4b060431f964a5207ce722e3",
2484
- "name": "Portland Brew",
2485
- "contact": {
2486
- "phone": "6152929004"
2487
- },
2488
- "location": {
2489
- "address": "2605 12th Ave S",
2490
- "crossStreet": "Sweetbriar Ave",
2491
- "city": "Nashville",
2492
- "state": "TN",
2493
- "postalCode": "37215",
2494
- "lat": 36.123663,
2495
- "lng": -86.7901399,
2496
- "distance": 3104
2497
- },
2498
- "categories": [
2499
- {
2500
- "id": "4bf58dd8d48988d1e0931735",
2501
- "name": "Coffee Shop",
2502
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
2503
- "parents": [
2504
- "Food"
2505
- ],
2506
- "primary": true
2507
- }
2508
- ],
2509
- "verified": false,
2510
- "stats": {
2511
- "checkinsCount": 487,
2512
- "usersCount": 141
2513
- },
2514
- "todos": {
2515
- "count": 0
2516
- },
2517
- "specials": [
2518
-
2519
- ],
2520
- "hereNow": {
2521
- "count": 0
2522
- }
2523
- },
2524
- {
2525
- "id": "4b329b07f964a520d10f25e3",
2526
- "name": "Fiddlecakes",
2527
- "contact": {
2528
- "phone": "6154572127",
2529
- "twitter": "fiddlecakes"
2530
- },
2531
- "location": {
2532
- "address": "2206 8th Ave S",
2533
- "crossStreet": "Bradford",
2534
- "city": "Nashville",
2535
- "state": "TN",
2536
- "postalCode": "37204",
2537
- "country": "USA",
2538
- "lat": 36.129939,
2539
- "lng": -86.777932,
2540
- "distance": 3686
2541
- },
2542
- "categories": [
2543
- {
2544
- "id": "4bf58dd8d48988d16a941735",
2545
- "name": "Bakery",
2546
- "icon": "http://foursquare.com/img/categories/food/bakery.png",
2547
- "parents": [
2548
- "Food"
2549
- ],
2550
- "primary": true
2551
- }
2552
- ],
2553
- "verified": true,
2554
- "stats": {
2555
- "checkinsCount": 180,
2556
- "usersCount": 100
2557
- },
2558
- "todos": {
2559
- "count": 0
2560
- },
2561
- "specials": [
2562
- {
2563
- "id": "4c924da54c19ef3b0f318ce1",
2564
- "type": "frequency",
2565
- "message": "Get a free cookie when you stop in on your 3rd visit!",
2566
- "description": "every 3 check-ins"
2567
- }
2568
- ],
2569
- "hereNow": {
2570
- "count": 0
2571
- }
2572
- },
2573
- {
2574
- "id": "4c1965544ff90f475cec0f49",
2575
- "name": "Bongo After Hours Theater",
2576
- "contact": {
2577
-
2578
- },
2579
- "location": {
2580
- "lat": 36.132189,
2581
- "lng": -86.795657,
2582
- "distance": 2140
2583
- },
2584
- "categories": [
2585
- {
2586
- "id": "4bf58dd8d48988d1f1931735",
2587
- "name": "Other - Entertainment",
2588
- "icon": "http://foursquare.com/img/categories/arts_entertainment/default.png",
2589
- "parents": [
2590
- "Arts & Entertainment"
2591
- ],
2592
- "primary": true
2593
- }
2594
- ],
2595
- "verified": false,
2596
- "stats": {
2597
- "checkinsCount": 14,
2598
- "usersCount": 4
2599
- },
2600
- "todos": {
2601
- "count": 0
2602
- },
2603
- "specials": [
2604
-
2605
- ],
2606
- "hereNow": {
2607
- "count": 0
2608
- }
2609
- },
2610
- {
2611
- "id": "4b31278af964a520490125e3",
2612
- "name": "Panera Bread",
2613
- "contact": {
2614
-
2615
- },
2616
- "location": {
2617
- "address": "2117 Green Hills Village Drive Ste 282",
2618
- "city": "Nashville",
2619
- "state": "TN",
2620
- "lat": 36.1078449,
2621
- "lng": -86.8157302,
2622
- "distance": 3809
2623
- },
2624
- "categories": [
2625
- {
2626
- "id": "4bf58dd8d48988d16a941735",
2627
- "name": "Bakery",
2628
- "icon": "http://foursquare.com/img/categories/food/bakery.png",
2629
- "parents": [
2630
- "Food"
2631
- ],
2632
- "primary": true
2633
- },
2634
- {
2635
- "id": "4bf58dd8d48988d1e0931735",
2636
- "name": "Coffee Shop",
2637
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
2638
- "parents": [
2639
- "Food"
2640
- ]
2641
- }
2642
- ],
2643
- "verified": false,
2644
- "stats": {
2645
- "checkinsCount": 176,
2646
- "usersCount": 83
2647
- },
2648
- "todos": {
2649
- "count": 0
2650
- },
2651
- "specials": [
2652
-
2653
- ],
2654
- "hereNow": {
2655
- "count": 0
2656
- }
2657
- },
2658
- {
2659
- "id": "4bd3584877b29c74b79c9082",
2660
- "name": "Sam and Zoe's Coffee",
2661
- "contact": {
2662
-
2663
- },
2664
- "location": {
2665
- "city": "Berry Hill",
2666
- "state": "Tennessee",
2667
- "lat": 36.107241,
2668
- "lng": -86.767886,
2669
- "distance": 5814
2670
- },
2671
- "categories": [
2672
- {
2673
- "id": "4bf58dd8d48988d1e0931735",
2674
- "name": "Coffee Shop",
2675
- "icon": "http://foursquare.com/img/categories/food/coffeeshop.png",
2676
- "parents": [
2677
- "Food"
2678
- ],
2679
- "primary": true
2680
- }
2681
- ],
2682
- "verified": false,
2683
- "stats": {
2684
- "checkinsCount": 43,
2685
- "usersCount": 27
2686
- },
2687
- "todos": {
2688
- "count": 0
2689
- },
2690
- "specials": [
2691
-
2692
- ],
2693
- "hereNow": {
2694
- "count": 0
2695
- }
2696
- }
2697
- ]
2698
- }
2699
- ]
2700
- }
2701
- }
1
+ {"meta":{"code":200},"response":{"groups":[{"type":"places","name":"Matching Places","items":[{"id":"4b06a0fef964a520eced22e3","name":"Ugly Mugs","contact":{"phone":"6159150675","twitter":"uglymugs"},"location":{"address":"1886 Eastland Ave","crossStreet":"at Chapel Ave","city":"Nashville","state":"Tennessee","postalCode":"37206","country":"USA","lat":36.182201,"lng":-86.735499,"distance":8509},"categories":[{"id":"4bf58dd8d48988d1e0931735","name":"Coffee Shops","icon":"http://foursquare.com/img/categories/food/coffeeshop.png","parents":["Food"],"primary":true}],"verified":false,"stats":{"checkinsCount":2379,"usersCount":434},"todos":{"count":0},"hereNow":{"count":2}},{"id":"4b073160f964a5204bf922e3","name":"Cafe Coco","contact":{},"location":{"address":"210 Louise Ave","city":"Nashville","state":"TN","postalCode":"37203","lat":36.151912,"lng":-86.804893,"distance":1487},"categories":[{"id":"4bf58dd8d48988d1e0931735","name":"Coffee Shops","icon":"http://foursquare.com/img/categories/food/coffeeshop.png","parents":["Food"],"primary":true},{"id":"4bf58dd8d48988d116941735","name":"Bars","icon":"http://foursquare.com/img/categories/nightlife/default.png","parents":["Nightlife Spots"]},{"id":"4bf58dd8d48988d1e9931735","name":"Rock Clubs","icon":"http://foursquare.com/img/categories/arts_entertainment/musicvenue_rockclub.png","parents":["Arts & Entertainment","Music Venues"]},{"id":"4bf58dd8d48988d14e941735","name":"American Restaurants","icon":"http://foursquare.com/img/categories/food/default.png","parents":["Food"]}],"verified":false,"stats":{"checkinsCount":1885,"usersCount":885},"todos":{"count":0},"hereNow":{"count":0}},{"id":"4b3388b1f964a5206b1a25e3","name":"The Frothy Monkey Coffeehouse","contact":{"phone":"6152921808","twitter":"frothymonkey"},"location":{"address":"2509 12th Ave S","crossStreet":"at Gilmore Ave","city":"Nashville","state":"TN","postalCode":"37204","lat":36.12458208029139,"lng":-86.78984642028809,"distance":3058},"categories":[{"id":"4bf58dd8d48988d1e0931735","name":"Coffee Shops","icon":"http://foursquare.com/img/categories/food/coffeeshop.png","parents":["Food"],"primary":true}],"verified":false,"stats":{"checkinsCount":1945,"usersCount":652},"todos":{"count":0},"hereNow":{"count":0}},{"id":"4b0822d7f964a5208c0423e3","name":"Dose","contact":{"phone":"6154571300","twitter":"dosecoffee"},"location":{"address":"3431 Murphy Rd.","crossStreet":"West End","city":"Nashville","state":"TN","postalCode":"37203","country":"USA","lat":36.139434,"lng":-86.8219809,"distance":605},"categories":[{"id":"4bf58dd8d48988d1e0931735","name":"Coffee Shops","icon":"http://foursquare.com/img/categories/food/coffeeshop.png","parents":["Food"],"primary":true},{"id":"4bf58dd8d48988d16d941735","name":"Cafés","icon":"http://foursquare.com/img/categories/food/cafe.png","parents":["Food"]},{"id":"4bf58dd8d48988d16a941735","name":"Bakeries","icon":"http://foursquare.com/img/categories/food/bakery.png","parents":["Food"]}],"verified":true,"stats":{"checkinsCount":777,"usersCount":229},"todos":{"count":0},"hereNow":{"count":0}},{"id":"4b0adb6ff964a520f92823e3","name":"CREMA","contact":{"phone":"6152558311","twitter":"CremaCrema"},"location":{"address":"15 Hermitage Ave","crossStreet":"btw Peabody & Lea","city":"Nashville","state":"TN","postalCode":"37210","country":"USA","lat":36.156815,"lng":-86.769801,"distance":4472},"categories":[{"id":"4bf58dd8d48988d16d941735","name":"Cafés","icon":"http://foursquare.com/img/categories/food/cafe.png","parents":["Food"],"primary":true},{"id":"4bf58dd8d48988d1e0931735","name":"Coffee Shops","icon":"http://foursquare.com/img/categories/food/coffeeshop.png","parents":["Food"]}],"verified":true,"stats":{"checkinsCount":1436,"usersCount":361},"url":"http://www.crema-coffee.com","todos":{"count":0},"hereNow":{"count":1}},{"id":"4b4b2239f964a520d99226e3","name":"Starbucks","contact":{"phone":"6157702706","twitter":"Starbucks"},"location":{"address":"515 Dominican Dr","crossStreet":"Rosa L. Parks Blvd","city":"Nashville","state":"TN","postalCode":"37228","country":"USA","lat":36.187689067020706,"lng":-86.79787427186966,"distance":5336},"categories":[{"id":"4bf58dd8d48988d1e0931735","name":"Coffee Shops","icon":"http://foursquare.com/img/categories/food/coffeeshop.png","parents":["Food"],"primary":true}],"verified":true,"stats":{"checkinsCount":1091,"usersCount":291},"todos":{"count":0},"hereNow":{"count":0}},{"id":"4b05b8d0f964a5209fe122e3","name":"DrinkHaus Espresso+Tea","contact":{"phone":"6152555200","twitter":"DrinkHaus"},"location":{"address":"500 Madison St.","crossStreet":"btw 5th & 6th Ave N","city":"Nashville","state":"TN","postalCode":"37208","lat":36.1753675,"lng":-86.7882252,"distance":4473},"categories":[{"id":"4bf58dd8d48988d1dc931735","name":"Tea Rooms","icon":"http://foursquare.com/img/categories/food/tearoom.png","parents":["Food"],"primary":true},{"id":"4bf58dd8d48988d1e0931735","name":"Coffee Shops","icon":"http://foursquare.com/img/categories/food/coffeeshop.png","parents":["Food"]}],"verified":false,"stats":{"checkinsCount":933,"usersCount":137},"todos":{"count":0},"hereNow":{"count":0}},{"id":"4b4f200af964a520dafa26e3","name":"Starbucks","contact":{"phone":"6157310926","twitter":"Starbucks"},"location":{"address":"5253 Hickory Hollow Pkwy","crossStreet":"Bell Rd.","city":"Antioch","state":"TN","postalCode":"37014","lat":36.048461,"lng":-86.6585601,"distance":17588},"categories":[{"id":"4bf58dd8d48988d1e0931735","name":"Coffee Shops","icon":"http://foursquare.com/img/categories/food/coffeeshop.png","parents":["Food"],"primary":true}],"verified":true,"stats":{"checkinsCount":569,"usersCount":184},"todos":{"count":0},"hereNow":{"count":0}},{"id":"4bbd1463a8cf76b06b61b1fd","name":"Starbucks","contact":{"phone":"6154601152","twitter":"Starbucks"},"location":{"address":"4514 Harding Pike","city":"Nashville","state":"TN","postalCode":"37205","lat":36.1247499,"lng":-86.8479817,"distance":3455},"categories":[{"id":"4bf58dd8d48988d1e0931735","name":"Coffee Shops","icon":"http://foursquare.com/img/categories/food/coffeeshop.png","parents":["Food"],"primary":true}],"verified":true,"stats":{"checkinsCount":767,"usersCount":294},"todos":{"count":0},"hereNow":{"count":0}},{"id":"4b0d7a01f964a520304923e3","name":"Sky Blue Coffee & Bistro","contact":{"phone":"6157707097"},"location":{"address":"700 Fatherland St.","crossStreet":"7th Ave","city":"Nashville","state":"TN","postalCode":"37206","country":"USA","lat":36.1713669,"lng":-86.758867,"distance":6090},"categories":[{"id":"4bf58dd8d48988d16d941735","name":"Cafés","icon":"http://foursquare.com/img/categories/food/cafe.png","parents":["Food"],"primary":true},{"id":"4bf58dd8d48988d1e0931735","name":"Coffee Shops","icon":"http://foursquare.com/img/categories/food/coffeeshop.png","parents":["Food"]}],"verified":true,"stats":{"checkinsCount":423,"usersCount":227},"todos":{"count":0},"specials":[{"id":"4bf7155886ba62b511cb88b3","type":"count","message":"10% off your order for checking in...","icon":"newbie","title":"Newbie Special","provider":"foursquare","redemption":"standard"}],"hereNow":{"count":1}},{"id":"4b06bd0cf964a52065ef22e3","name":"Maxximo Jo's","contact":{"phone":"6157919822","twitter":"maxximojos"},"location":{"address":"1212 Murfreesboro Rd","crossStreet":"Center Point Pl","city":"Franklin","state":"TN","postalCode":"37064","lat":35.91509,"lng":-86.830634,"distance":25300},"categories":[{"id":"4bf58dd8d48988d1e0931735","name":"Coffee Shops","icon":"http://foursquare.com/img/categories/food/coffeeshop.png","parents":["Food"],"primary":true}],"verified":false,"stats":{"checkinsCount":191,"usersCount":72},"todos":{"count":0},"hereNow":{"count":0}},{"id":"4d08ed21143cb60c60f27da6","name":"Starbucks Coffee","contact":{},"location":{"lat":35.92406451702118,"lng":-86.87175035476685,"distance":24779},"categories":[{"id":"4bf58dd8d48988d16d941735","name":"Cafés","icon":"http://foursquare.com/img/categories/food/cafe.png","parents":["Food"],"primary":true}],"verified":false,"stats":{"checkinsCount":168,"usersCount":66},"todos":{"count":0},"hereNow":{"count":0}},{"id":"4b9f8e29f964a5200c2b37e3","name":"Hot Spot Coffee","contact":{"phone":"6155991102"},"location":{"address":"1441 New Highway 96 W # 1","city":"Franklin","state":"TN","postalCode":"37064-4831","lat":35.93029159296168,"lng":-86.90408706665039,"distance":24869},"categories":[{"id":"4bf58dd8d48988d1e0931735","name":"Coffee Shops","icon":"http://foursquare.com/img/categories/food/coffeeshop.png","parents":["Food"],"primary":true}],"verified":false,"stats":{"checkinsCount":171,"usersCount":49},"todos":{"count":0},"hereNow":{"count":0}},{"id":"4b9a5f88f964a520bfaf35e3","name":"Coffee Beanery","contact":{"phone":"6157909553"},"location":{"address":"1010 Murfreesboro Road","city":"Franklin","state":"TN","postalCode":"37067","lat":35.9165107,"lng":-86.8388975,"distance":25192},"categories":[{"id":"4bf58dd8d48988d1e0931735","name":"Coffee Shops","icon":"http://foursquare.com/img/categories/food/coffeeshop.png","parents":["Food"],"primary":true}],"verified":false,"stats":{"checkinsCount":93,"usersCount":50},"todos":{"count":0},"hereNow":{"count":0}},{"id":"4b6f485ef964a52017e92ce3","name":"Starbucks (Terminal C)","contact":{"phone":"6152754400","twitter":"Starbucks"},"location":{"address":"Terminal C","crossStreet":"Nashville International Airport","city":"Nashville","state":"TN","postalCode":"37217","lat":36.12908831155034,"lng":-86.67030572891235,"distance":13185},"categories":[{"id":"4bf58dd8d48988d1e0931735","name":"Coffee Shops","icon":"http://foursquare.com/img/categories/food/coffeeshop.png","parents":["Food"],"primary":true},{"id":"4bf58dd8d48988d16d941735","name":"Cafés","icon":"http://foursquare.com/img/categories/food/cafe.png","parents":["Food"]}],"verified":false,"stats":{"checkinsCount":627,"usersCount":471},"todos":{"count":0},"hereNow":{"count":0}},{"id":"4b075157f964a520ebfb22e3","name":"Casablanca Coffee","contact":{"phone":"6159427666"},"location":{"address":"602 12th Ave","crossStreet":"Division","city":"Nashville","state":"TN","postalCode":"37203","lat":36.151294,"lng":-86.783857,"distance":3073},"categories":[{"id":"4bf58dd8d48988d1e0931735","name":"Coffee Shops","icon":"http://foursquare.com/img/categories/food/coffeeshop.png","parents":["Food"],"primary":true}],"verified":false,"stats":{"checkinsCount":527,"usersCount":203},"todos":{"count":0},"hereNow":{"count":0}},{"id":"4bf56c0cff90c9b65a595628","name":"Vienna House Coffee & Bistro","contact":{"phone":"6156563567"},"location":{"address":"2000 Meridian Blvd","crossStreet":"Carothers Pkw","city":"Franklin","state":"TN","postalCode":"37067","lat":35.951788,"lng":-86.808231,"distance":21193},"categories":[{"id":"4bf58dd8d48988d16d941735","name":"Cafés","icon":"http://foursquare.com/img/categories/food/cafe.png","parents":["Food"],"primary":true},{"id":"4bf58dd8d48988d1e0931735","name":"Coffee Shops","icon":"http://foursquare.com/img/categories/food/coffeeshop.png","parents":["Food"]}],"verified":false,"stats":{"checkinsCount":113,"usersCount":68},"todos":{"count":0},"hereNow":{"count":0}},{"id":"4ba9230af964a5205c0e3ae3","name":"Starbucks - Hotel Indigo","contact":{"phone":"6158916000","twitter":"Starbucks"},"location":{"address":"301 Union St","crossStreet":"3rd Ave N.","city":"Nashville","state":"Tennessee","postalCode":"37201","country":"USA","lat":36.16543633351585,"lng":-86.77869915962219,"distance":4249},"categories":[{"id":"4bf58dd8d48988d1e0931735","name":"Coffee Shops","icon":"http://foursquare.com/img/categories/food/coffeeshop.png","parents":["Food"],"primary":true}],"verified":false,"stats":{"checkinsCount":326,"usersCount":148},"todos":{"count":0},"hereNow":{"count":0}},{"id":"4c7c4754aa3ba093e867aa74","name":"Starbucks Coffee","contact":{},"location":{"city":"Madison","state":"Tennessee","lat":36.303549,"lng":-86.695859,"distance":20969},"categories":[{"id":"4bf58dd8d48988d1e0931735","name":"Coffee Shops","icon":"http://foursquare.com/img/categories/food/coffeeshop.png","parents":["Food"],"primary":true}],"verified":false,"stats":{"checkinsCount":75,"usersCount":32},"todos":{"count":0},"hereNow":{"count":0}},{"id":"4bf6e6025ec320a17dfc85d3","name":"Coffee Shop @ Nissan North America","contact":{},"location":{"address":"One nissan way","city":"Franklin","state":"TN","lat":35.93938765,"lng":-86.81258641666666,"distance":22563},"categories":[{"id":"4bf58dd8d48988d1e0931735","name":"Coffee Shops","icon":"http://foursquare.com/img/categories/food/coffeeshop.png","parents":["Food"],"primary":true}],"verified":false,"stats":{"checkinsCount":78,"usersCount":14},"todos":{"count":0},"hereNow":{"count":0}},{"id":"4b434c51f964a5201bde25e3","name":"dunn bros coffee","contact":{"phone":"6152522567","twitter":"dunnbrosnash"},"location":{"address":"401 church street","crossStreet":"Corner of Fourth & Church","city":"Nashville","state":"Tn","postalCode":"37219","lat":36.163213,"lng":-86.778999,"distance":4081},"categories":[{"id":"4bf58dd8d48988d1e0931735","name":"Coffee Shops","icon":"http://foursquare.com/img/categories/food/coffeeshop.png","parents":["Food"],"primary":true}],"verified":true,"stats":{"checkinsCount":392,"usersCount":105},"url":"http://dunnbros.com","todos":{"count":0},"hereNow":{"count":0}},{"id":"4ba24e59f964a520a2eb37e3","name":"Coffee Beanery","contact":{},"location":{"address":"1800 Galleria Blvd","city":"Franklin","state":"Tn","postalCode":"37067","lat":35.956674,"lng":-86.814223,"distance":20638},"categories":[{"id":"4bf58dd8d48988d1e0931735","name":"Coffee Shops","icon":"http://foursquare.com/img/categories/food/coffeeshop.png","parents":["Food"],"primary":true},{"id":"4bf58dd8d48988d1fd941735","name":"Malls","icon":"http://foursquare.com/img/categories/shops/default.png","parents":["Shops"]}],"verified":false,"stats":{"checkinsCount":101,"usersCount":26},"todos":{"count":0},"hereNow":{"count":0}},{"id":"4c3feb11ff711b8d1bb70f05","name":"Hot Spot Coffee","contact":{"phone":"6155991102"},"location":{"address":"1441 New Highway 96 W # 1","crossStreet":"Downs Blvd.","city":"Franklin","state":"TN","postalCode":"37064","lat":35.928305,"lng":-86.888818,"distance":24679},"categories":[{"id":"4bf58dd8d48988d1e0931735","name":"Coffee Shops","icon":"http://foursquare.com/img/categories/food/coffeeshop.png","parents":["Food"],"primary":true}],"verified":false,"stats":{"checkinsCount":23,"usersCount":16},"todos":{"count":0},"hereNow":{"count":0}},{"id":"4c2e90dc452620a103241c0f","name":"Seattle's Best Coffee","contact":{"phone":"6158913671"},"location":{"address":"4322 Harding Pike","city":"Nashville","state":"TN","postalCode":"37205","lat":36.1261064,"lng":-86.8459975,"distance":3222},"categories":[{"id":"4bf58dd8d48988d1e0931735","name":"Coffee Shops","icon":"http://foursquare.com/img/categories/food/coffeeshop.png","parents":["Food"],"primary":true}],"verified":false,"stats":{"checkinsCount":170,"usersCount":42},"todos":{"count":0},"hereNow":{"count":0}},{"id":"4b4754c5f964a520122f26e3","name":"Seattle's Best Coffee","contact":{},"location":{"address":"330 Franklin Road","city":"Brentwood","state":"TN","postalCode":"37027","lat":36.0277216,"lng":-86.7917625,"distance":12915},"categories":[{"id":"4bf58dd8d48988d1e0931735","name":"Coffee Shops","icon":"http://foursquare.com/img/categories/food/coffeeshop.png","parents":["Food"],"primary":true}],"verified":false,"stats":{"checkinsCount":206,"usersCount":8},"todos":{"count":0},"hereNow":{"count":0}},{"id":"4cd1796a48b83704f9fdf8de","name":"Last Drop Coffee Shop","contact":{},"location":{"lat":36.14555975,"lng":-86.80173655,"distance":1347},"categories":[{"id":"4bf58dd8d48988d16d941735","name":"Cafés","icon":"http://foursquare.com/img/categories/food/cafe.png","parents":["Food"],"primary":true}],"verified":false,"stats":{"checkinsCount":34,"usersCount":13},"todos":{"count":0},"hereNow":{"count":0}},{"id":"4c4ef579f53d0f47fdde61a7","name":"That Good Coffee Place","contact":{},"location":{"address":"2300 Patterson Street","city":"Nashville","state":"TN","lat":36.153093,"lng":-86.809264,"distance":1372},"categories":[],"verified":false,"stats":{"checkinsCount":22,"usersCount":2},"todos":{"count":0},"hereNow":{"count":0}},{"id":"4d8fa82bd4ec8cfa174d9189","name":"The Wire Coffee And Hookah","contact":{},"location":{"city":"Hendersonville","state":"Tennessee","postalCode":"37075","lat":36.3028001,"lng":-86.6415337,"distance":23788},"categories":[],"verified":false,"stats":{"checkinsCount":1,"usersCount":1},"todos":{"count":0},"hereNow":{"count":0}},{"id":"4cdc0e41a1bba35df02498e5","name":"Starbucks Coffee","contact":{},"location":{"address":"Cude Lane and Gallatin","city":"Madison","state":"TN","postalCode":"37115","lat":36.29853162,"lng":-86.69689166666667,"distance":20444},"categories":[],"verified":false,"stats":{"checkinsCount":10,"usersCount":9},"todos":{"count":0},"hereNow":{"count":0}},{"id":"4bd3584877b29c74b79c9082","name":"Sam and Zoe's Coffee","contact":{},"location":{"city":"Berry Hill","state":"Tennessee","lat":36.107241,"lng":-86.767886,"distance":5814},"categories":[{"id":"4bf58dd8d48988d1e0931735","name":"Coffee Shops","icon":"http://foursquare.com/img/categories/food/coffeeshop.png","parents":["Food"],"primary":true}],"verified":false,"stats":{"checkinsCount":54,"usersCount":35},"todos":{"count":0},"hereNow":{"count":0}}]}]}}