gowalla 0.3.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (61) hide show
  1. data/.document +5 -0
  2. data/.gitignore +25 -0
  3. data/Gemfile +3 -0
  4. data/Gemfile.lock +43 -0
  5. data/LICENSE +20 -0
  6. data/README.md +96 -0
  7. data/Rakefile +14 -0
  8. data/changelog.md +33 -0
  9. data/gowalla.gemspec +30 -0
  10. data/lib/gowalla.rb +26 -22
  11. data/lib/gowalla/checkins.rb +31 -0
  12. data/lib/gowalla/client.rb +22 -176
  13. data/lib/gowalla/flags.rb +42 -0
  14. data/lib/gowalla/items.rb +22 -0
  15. data/lib/gowalla/spots.rb +67 -0
  16. data/lib/gowalla/trips.rb +27 -0
  17. data/lib/gowalla/users.rb +91 -0
  18. data/lib/gowalla/version.rb +3 -0
  19. data/test/checkins_test.rb +18 -0
  20. data/test/client_test.rb +72 -0
  21. data/test/fixtures/categories.json +1826 -0
  22. data/test/fixtures/category.json +8 -0
  23. data/test/fixtures/challenges.json +191 -0
  24. data/test/fixtures/checkin.json +21 -0
  25. data/test/fixtures/events.json +185 -0
  26. data/test/fixtures/find_spots.json +620 -0
  27. data/test/fixtures/find_trips.json +695 -0
  28. data/test/fixtures/flag.json +23 -0
  29. data/test/fixtures/flags.json +31 -0
  30. data/test/fixtures/friend_requests.json +21 -0
  31. data/test/fixtures/friends.json +3 -0
  32. data/test/fixtures/friends_recent.json +243 -0
  33. data/test/fixtures/item.json +8 -0
  34. data/test/fixtures/item_events.json +35 -0
  35. data/test/fixtures/items.json +100 -0
  36. data/test/fixtures/me.json +49 -0
  37. data/test/fixtures/missing_items.json +1 -0
  38. data/test/fixtures/new_spot.json +49 -0
  39. data/test/fixtures/photos.json +88 -0
  40. data/test/fixtures/pins.json +81 -0
  41. data/test/fixtures/potential_twitter_friends.json +2090 -0
  42. data/test/fixtures/spot.json +251 -0
  43. data/test/fixtures/spots.json +557 -0
  44. data/test/fixtures/spots_by_category.json +620 -0
  45. data/test/fixtures/spots_urls.json +26 -0
  46. data/test/fixtures/stamps.json +284 -0
  47. data/test/fixtures/top_spots.json +64 -0
  48. data/test/fixtures/trip.json +22 -0
  49. data/test/fixtures/trips.json +881 -0
  50. data/test/fixtures/user.json +43 -0
  51. data/test/fixtures/users.json +46 -0
  52. data/test/fixtures/vaulted_items.json +12 -0
  53. data/test/fixtures/visited_spots.json +1 -0
  54. data/test/flags_test.rb +46 -0
  55. data/test/helper.rb +6 -6
  56. data/test/items_test.rb +26 -0
  57. data/test/spots_test.rb +70 -0
  58. data/test/trips_test.rb +25 -0
  59. data/test/users_test.rb +83 -0
  60. metadata +177 -29
  61. data/test/gowalla_test.rb +0 -214
@@ -0,0 +1,42 @@
1
+ module Gowalla
2
+ module Flags
3
+
4
+ # Retrieve a list of flags
5
+ #
6
+ # @return [<Hashie::Mash>] Flag info
7
+ def list_flags(options={})
8
+ connection.get("/flags").body.flags
9
+ end
10
+
11
+ # Retrieve information about a particular flag
12
+ #
13
+ # @param [Integer] flag_id Flag ID
14
+ # @return [Hashie::Mash] Flag info
15
+ def flag(flag_id)
16
+ connection.get("/flags/#{flag_id}").body
17
+ end
18
+
19
+ # Retrieve a list of flags for a particular spot
20
+ # WARNING: This method uses calls not officially supported by Gowalla.
21
+ #
22
+ # @param [Integer] spot_id Spot ID
23
+ # @return [Hashie::Mash] Array of Flags
24
+ def spot_flags(spot_id)
25
+ connection.get("/spots/#{spot_id}/flags").body.flags
26
+ end
27
+
28
+ # Create a flag on a particular spot (Reports a problem to Gowalla)
29
+ # WARNING: This method uses calls not officially supported by Gowalla.
30
+ #
31
+ # @param [String] flag_type Type of flag to create: invalid,duplicate,mislocated,venue_closed,inaccurate_information
32
+ # @param [String] description Description of the problem
33
+ def flag_spot(spot_id, flag_type, description)
34
+ response = connection.post do |req|
35
+ req.url "/spots/#{spot_id}/flags/#{flag_type}"
36
+ req.body = {:description => description}
37
+ end
38
+ response.body
39
+ end
40
+
41
+ end
42
+ end
@@ -0,0 +1,22 @@
1
+ module Gowalla
2
+ module Items
3
+
4
+ # Retrieve information about a specific item
5
+ #
6
+ # @param [Integer] id Item ID
7
+ # @return [Hashie::Mash] item info
8
+ def item(id)
9
+ connection.get("/items/#{id}").body
10
+ end
11
+
12
+ # Retrieve events connected to a specific item
13
+ # WARNING: This method uses calls not officially supported by Gowalla.
14
+ #
15
+ # @param [Integer] id Item ID
16
+ # @return [Hashie::Mash] Array of events
17
+ def item_events(id)
18
+ connection.get("/items/#{id}/events").body.events
19
+ end
20
+
21
+ end
22
+ end
@@ -0,0 +1,67 @@
1
+ module Gowalla
2
+ module Spots
3
+
4
+ # Retrieve a list of spots within a specified distance of a location
5
+ #
6
+ # @option options [Float] :lat Latitude of search location
7
+ # @option options [Float] :lng Longitude of search location
8
+ # @option options [Integer] :radius Search radius (in meters)
9
+ # @return [Hashie::Mash] spots info
10
+ def list_spots(options={})
11
+ query = format_geo_options(options)
12
+ response = connection.get do |req|
13
+ req.url "/spots", query
14
+ end
15
+ response.body.spots
16
+ end
17
+
18
+ # Retrieve information about a specific spot
19
+ #
20
+ # @param [Integer] spot_id Spot ID
21
+ # @return [Hashie::Mash] Spot info
22
+ def spot(spot_id)
23
+ connection.get("/spots/#{spot_id}").body
24
+ end
25
+
26
+ # Retrieve a list of check-ins at a particular spot. Shows only the activity that is visible to a given user.
27
+ #
28
+ # @param [Integer] spot_id Spot ID
29
+ # @return [Hashie::Mash] Spot info
30
+ def spot_events(spot_id)
31
+ connection.get("/spots/#{spot_id}/events").body.activity
32
+ end
33
+
34
+ # Retrieve a list of items available at a particular spot
35
+ #
36
+ # @param [Integer] spot_id Spot ID
37
+ # @return [Hashie::Mash] Spot info
38
+ def spot_items(spot_id)
39
+ connection.get("/spots/#{spot_id}/items").body.items
40
+ end
41
+
42
+ # Lists all spot categories
43
+ #
44
+ # @return [<Hashie::Mash>] category info
45
+ def categories
46
+ connection.get("/categories").body.spot_categories
47
+ end
48
+
49
+ # Retrieve information about a specific category
50
+ #
51
+ # @param [Integer] id Category ID
52
+ # @return [Hashie::Mash] category info
53
+ def category(id)
54
+ connection.get("/categories/#{id}").body
55
+ end
56
+
57
+ # Retrieve a list of photos for a particular spot
58
+ # WARNING: This method uses calls not officially supported by Gowalla.
59
+ #
60
+ # @param [Integer] spot_id Spot ID
61
+ # @return [Hashie::Mash] Array of photos
62
+ def spot_photos(spot_id)
63
+ connection.get("/spots/#{spot_id}/photos").body.activity
64
+ end
65
+
66
+ end
67
+ end
@@ -0,0 +1,27 @@
1
+ module Gowalla
2
+ module Trips
3
+
4
+ # List of trips
5
+ #
6
+ # @return [<Hashie::Mash>] trip info
7
+ def trips(options={})
8
+ if user_id = options.delete(:user_id)
9
+ options[:user_url] = "/users/#{user_id}"
10
+ end
11
+ query = format_geo_options(options)
12
+ response = connection.get do |req|
13
+ req.url "/trips", query
14
+ end
15
+ response.body.trips
16
+ end
17
+
18
+ # Retrieve information about a specific trip
19
+ #
20
+ # @param [Integer] trip_id Trip ID
21
+ # @return [Hashie::Mash] trip info
22
+ def trip(trip_id)
23
+ connection.get("/trips/#{trip_id}").body
24
+ end
25
+
26
+ end
27
+ end
@@ -0,0 +1,91 @@
1
+ module Gowalla
2
+ module Users
3
+
4
+ # Retrieve information about a specific user
5
+ #
6
+ # @param [String] user_id (authenticated basic auth user) User ID (screen name)
7
+ # @return [Hashie::Mash] User info
8
+ def user(user_id=nil)
9
+ user_id ||= username
10
+ connection.get("/users/#{user_id}").body
11
+ end
12
+
13
+ # Retrieve a list of the stamps the user has collected
14
+ #
15
+ # @param [String] user_id (authenticated basic auth user) User ID (screen name)
16
+ # @param [Integer] limit (20) limit per page
17
+ # @return [Hashie::Mash] stamps info
18
+ def stamps(user_id=self.username, limit=20)
19
+ response = connection.get do |req|
20
+ req.url "/users/#{user_id}/stamps", :limit => limit
21
+ end
22
+ response.body.stamps
23
+ end
24
+
25
+ # Retrieve a list of spots the user has visited most often
26
+ #
27
+ # @param [String] user_id (authenticated basic auth user) User ID (screen name)
28
+ # @return [Hashie::Mash] item info
29
+ def top_spots(user_id=self.username)
30
+ connection.get("/users/#{user_id}/top_spots").body.top_spots
31
+ end
32
+
33
+ # Retrieve a list of spot urls the user has visited
34
+ #
35
+ # @param [String] user_id (authenticated basic auth user) User ID (screen name)
36
+ # @return [Hashie::Mash] spot urls
37
+ def visited_spots_urls(user_id=self.username)
38
+ connection.get("/users/#{user_id}/visited_spots_urls").body.urls
39
+ end
40
+
41
+ # Retrieve a list of items the user is carrying
42
+ # WARNING: This method uses calls not officially supported by Gowalla.
43
+ #
44
+ # @param [String] user_id (authenticated basic auth user) User ID (screen name)
45
+ # @param [String] context The type of item: pack, vault, missing
46
+ # @return [Hashie::Mash] items info
47
+ def user_items(user_id=self.username, context='pack')
48
+ response = connection.get do |req|
49
+ req.url "/users/#{user_id}/items", :context => context
50
+ end
51
+ response.body.items
52
+ end
53
+
54
+ # Retrieve a list of photos the user has taken
55
+ # WARNING: This method uses calls not officially supported by Gowalla.
56
+ #
57
+ # @param [String] user_id (authenticated basic auth user) User ID (screen name)
58
+ # @return [Hashie::Mash] photos info
59
+ def user_photos(user_id=self.username)
60
+ connection.get("/users/#{user_id}/photos").body.activity
61
+ end
62
+
63
+ # Retrieve a list of trips the user has created
64
+ # WARNING: This method uses calls not officially supported by Gowalla.
65
+ #
66
+ # @param [String] user_id (authenticated basic auth user) User ID (screen name)
67
+ # @return [Hashie::Mash] trips info
68
+ def user_trips(user_id=self.username)
69
+ connection.get("/users/#{user_id}/trips").body.trips
70
+ end
71
+
72
+ # Retrieve a list of pins the user has collected
73
+ # WARNING: This method uses calls not officially supported by Gowalla.
74
+ #
75
+ # @param [String] user_id (authenticated basic auth user) User ID (screen name)
76
+ # @return [Hashie::Mash] pins info
77
+ def user_pins(user_id=self.username)
78
+ connection.get("/users/#{user_id}/pins").body.pins
79
+ end
80
+
81
+ # Retrieve a list of friends for the user
82
+ # WARNING: This method uses calls not officially supported by Gowalla.
83
+ #
84
+ # @param [String] user_id (authenticated basic auth user) User ID (screen name)
85
+ # @return [Hashie::Mash] friends info
86
+ def friends(user_id=self.username)
87
+ connection.get("/users/#{user_id}/friends").body.users
88
+ end
89
+
90
+ end
91
+ end
@@ -0,0 +1,3 @@
1
+ module Gowalla
2
+ VERSION = '0.4.0'
3
+ end
@@ -0,0 +1,18 @@
1
+ require 'helper'
2
+
3
+ class CheckinsTest < Test::Unit::TestCase
4
+
5
+ context "When using the Gowalla API and working with checkins" do
6
+ setup do
7
+ @client = gowalla_test_client
8
+ end
9
+
10
+ should "fetch info for a checkin" do
11
+ stub_get("http://pengwynn:0U812@api.gowalla.com/checkins/88", "checkin.json")
12
+ checkin = @client.checkin_info(88)
13
+ checkin.spot.name.should == 'Movie Tavern'
14
+ checkin.message.should == 'There sending us Back-- to the Future!'
15
+ end
16
+ end
17
+
18
+ end
@@ -0,0 +1,72 @@
1
+ require 'helper'
2
+
3
+ class ClientTest < Test::Unit::TestCase
4
+
5
+ context "When using the Gowalla API" do
6
+ setup do
7
+ @client = gowalla_test_client
8
+ end
9
+
10
+
11
+ end
12
+
13
+ context "when using basic auth" do
14
+ should "configure api_key, username, and password for easy access" do
15
+
16
+ Gowalla.configure do |config|
17
+ config.api_key = 'api_key'
18
+ config.api_secret = nil
19
+ config.username = 'username'
20
+ config.password = 'password'
21
+ end
22
+
23
+ @client = Gowalla::Client.new
24
+
25
+ stub_get('http://username:password@api.gowalla.com/trips', 'trips.json')
26
+ trips = @client.trips
27
+
28
+ @client.username.should == 'username'
29
+ end
30
+
31
+ should "configure test mode" do
32
+ Gowalla.configure do |config|
33
+ config.api_key = 'api_key'
34
+ config.api_secret = nil
35
+ config.username = 'username'
36
+ config.password = 'password'
37
+ config.test_mode = true
38
+ end
39
+
40
+ Gowalla.test_mode?.should == true
41
+
42
+ end
43
+ end
44
+
45
+ context "when using OAuth2" do
46
+
47
+ setup do
48
+ Gowalla.configure do |config|
49
+ config.api_key = 'api_key'
50
+ config.api_secret = 'api_secret'
51
+ end
52
+
53
+ @client = Gowalla::Client.new
54
+ end
55
+
56
+ should "confiure api_key, api_secret" do
57
+ @client.api_secret.should == 'api_secret'
58
+ @client.oauth_client.id.should == 'api_key'
59
+ end
60
+
61
+ should "create an OAuth2 client" do
62
+ @client.oauth_client.class.to_s.should == "OAuth2::Client"
63
+ end
64
+
65
+ should "indicate if it needs an access_token" do
66
+ @client.needs_access?.should == true
67
+ end
68
+
69
+ end
70
+
71
+
72
+ end
@@ -0,0 +1,1826 @@
1
+ {
2
+ "spot_categories": [
3
+ {
4
+ "image_url": "http://static.gowalla.com/categories/13-standard.png",
5
+ "name": "Architecture & Buildings",
6
+ "small_image_url": "http://static.gowalla.com/categories/13-small-standard.png",
7
+ "url": "/categories/13",
8
+ "spot_categories": [
9
+ {
10
+ "image_url": "http://static.gowalla.com/categories/128-standard.png",
11
+ "name": "Bridge",
12
+ "small_image_url": "http://static.gowalla.com/categories/128-small-standard.png",
13
+ "url": "/categories/128",
14
+ "spot_categories": [],
15
+ "description": ""
16
+ },
17
+ {
18
+ "image_url": "http://static.gowalla.com/categories/185-standard.png",
19
+ "name": "Castle",
20
+ "small_image_url": "http://static.gowalla.com/categories/185-small-standard.png",
21
+ "url": "/categories/185",
22
+ "spot_categories": [],
23
+ "description": ""
24
+ },
25
+ {
26
+ "image_url": "http://static.gowalla.com/categories/121-standard.png",
27
+ "name": "Corporate - Office",
28
+ "small_image_url": "http://static.gowalla.com/categories/121-small-standard.png",
29
+ "url": "/categories/121",
30
+ "spot_categories": [],
31
+ "description": ""
32
+ },
33
+ {
34
+ "image_url": "http://static.gowalla.com/categories/126-standard.png",
35
+ "name": "Courthouse",
36
+ "small_image_url": "http://static.gowalla.com/categories/126-small-standard.png",
37
+ "url": "/categories/126",
38
+ "spot_categories": [],
39
+ "description": ""
40
+ },
41
+ {
42
+ "image_url": "http://static.gowalla.com/categories/150-standard.png",
43
+ "name": "Fountain",
44
+ "small_image_url": "http://static.gowalla.com/categories/150-small-standard.png",
45
+ "url": "/categories/150",
46
+ "spot_categories": [],
47
+ "description": ""
48
+ },
49
+ {
50
+ "image_url": "http://static.gowalla.com/categories/166-standard.png",
51
+ "name": "Historic Landmark",
52
+ "small_image_url": "http://static.gowalla.com/categories/166-small-standard.png",
53
+ "url": "/categories/166",
54
+ "spot_categories": [],
55
+ "description": ""
56
+ },
57
+ {
58
+ "image_url": "http://static.gowalla.com/categories/21-standard.png",
59
+ "name": "Home",
60
+ "small_image_url": "http://static.gowalla.com/categories/21-small-standard.png",
61
+ "url": "/categories/21",
62
+ "spot_categories": [
63
+ {
64
+ "image_url": "http://static.gowalla.com/categories/20-standard.png",
65
+ "name": "Apartment",
66
+ "small_image_url": "http://static.gowalla.com/categories/20-small-standard.png",
67
+ "url": "/categories/20",
68
+ "description": ""
69
+ },
70
+ {
71
+ "image_url": "http://static.gowalla.com/categories/29-standard.png",
72
+ "name": "Condo",
73
+ "small_image_url": "http://static.gowalla.com/categories/29-small-standard.png",
74
+ "url": "/categories/29",
75
+ "description": ""
76
+ },
77
+ {
78
+ "image_url": "http://static.gowalla.com/categories/89-standard.png",
79
+ "name": "Craftsman",
80
+ "small_image_url": "http://static.gowalla.com/categories/89-small-standard.png",
81
+ "url": "/categories/89",
82
+ "description": ""
83
+ },
84
+ {
85
+ "image_url": "http://static.gowalla.com/categories/87-standard.png",
86
+ "name": "Duplex",
87
+ "small_image_url": "http://static.gowalla.com/categories/87-small-standard.png",
88
+ "url": "/categories/87",
89
+ "description": ""
90
+ },
91
+ {
92
+ "image_url": "http://static.gowalla.com/categories/90-standard.png",
93
+ "name": "Modern",
94
+ "small_image_url": "http://static.gowalla.com/categories/90-small-standard.png",
95
+ "url": "/categories/90",
96
+ "description": ""
97
+ },
98
+ {
99
+ "image_url": "http://static.gowalla.com/categories/88-standard.png",
100
+ "name": "Victorian",
101
+ "small_image_url": "http://static.gowalla.com/categories/88-small-standard.png",
102
+ "url": "/categories/88",
103
+ "description": ""
104
+ }
105
+ ],
106
+ "description": ""
107
+ },
108
+ {
109
+ "image_url": "http://static.gowalla.com/categories/216-standard.png",
110
+ "name": "Lighthouse",
111
+ "small_image_url": "http://static.gowalla.com/categories/216-small-standard.png",
112
+ "url": "/categories/216",
113
+ "spot_categories": [],
114
+ "description": ""
115
+ },
116
+ {
117
+ "image_url": "http://static.gowalla.com/categories/69-standard.png",
118
+ "name": "Mission",
119
+ "small_image_url": "http://static.gowalla.com/categories/69-small-standard.png",
120
+ "url": "/categories/69",
121
+ "spot_categories": [],
122
+ "description": ""
123
+ },
124
+ {
125
+ "image_url": "http://static.gowalla.com/categories/60-standard.png",
126
+ "name": "Other - Architecture",
127
+ "small_image_url": "http://static.gowalla.com/categories/60-small-standard.png",
128
+ "url": "/categories/60",
129
+ "spot_categories": [],
130
+ "description": ""
131
+ },
132
+ {
133
+ "image_url": "http://static.gowalla.com/categories/205-standard.png",
134
+ "name": "Place of Worship",
135
+ "small_image_url": "http://static.gowalla.com/categories/205-small-standard.png",
136
+ "url": "/categories/205",
137
+ "spot_categories": [
138
+ {
139
+ "image_url": "http://static.gowalla.com/categories/65-standard.png",
140
+ "name": "Church",
141
+ "small_image_url": "http://static.gowalla.com/categories/65-small-standard.png",
142
+ "url": "/categories/65",
143
+ "description": ""
144
+ },
145
+ {
146
+ "image_url": "http://static.gowalla.com/categories/68-standard.png",
147
+ "name": "Contemporary Church",
148
+ "small_image_url": "http://static.gowalla.com/categories/68-small-standard.png",
149
+ "url": "/categories/68",
150
+ "description": ""
151
+ },
152
+ {
153
+ "image_url": "http://static.gowalla.com/categories/22-standard.png",
154
+ "name": "Historic Church",
155
+ "small_image_url": "http://static.gowalla.com/categories/22-small-standard.png",
156
+ "url": "/categories/22",
157
+ "description": ""
158
+ },
159
+ {
160
+ "image_url": "http://static.gowalla.com/categories/70-standard.png",
161
+ "name": "Mosque",
162
+ "small_image_url": "http://static.gowalla.com/categories/70-small-standard.png",
163
+ "url": "/categories/70",
164
+ "description": ""
165
+ },
166
+ {
167
+ "image_url": "http://static.gowalla.com/categories/208-standard.png",
168
+ "name": "Other - Place of Worship",
169
+ "small_image_url": "http://static.gowalla.com/categories/208-small-standard.png",
170
+ "url": "/categories/208",
171
+ "description": ""
172
+ },
173
+ {
174
+ "image_url": "http://static.gowalla.com/categories/71-standard.png",
175
+ "name": "Synagogue",
176
+ "small_image_url": "http://static.gowalla.com/categories/71-small-standard.png",
177
+ "url": "/categories/71",
178
+ "description": ""
179
+ },
180
+ {
181
+ "image_url": "http://static.gowalla.com/categories/184-standard.png",
182
+ "name": "Temple",
183
+ "small_image_url": "http://static.gowalla.com/categories/184-small-standard.png",
184
+ "url": "/categories/184",
185
+ "description": ""
186
+ }
187
+ ],
188
+ "description": ""
189
+ },
190
+ {
191
+ "image_url": "http://static.gowalla.com/categories/165-standard.png",
192
+ "name": "Plaza / Square",
193
+ "small_image_url": "http://static.gowalla.com/categories/165-small-standard.png",
194
+ "url": "/categories/165",
195
+ "spot_categories": [],
196
+ "description": ""
197
+ },
198
+ {
199
+ "image_url": "http://static.gowalla.com/categories/23-standard.png",
200
+ "name": "Skyscraper",
201
+ "small_image_url": "http://static.gowalla.com/categories/23-small-standard.png",
202
+ "url": "/categories/23",
203
+ "spot_categories": [],
204
+ "description": ""
205
+ },
206
+ {
207
+ "image_url": "http://static.gowalla.com/categories/146-standard.png",
208
+ "name": "Tower",
209
+ "small_image_url": "http://static.gowalla.com/categories/146-small-standard.png",
210
+ "url": "/categories/146",
211
+ "spot_categories": [],
212
+ "description": ""
213
+ },
214
+ {
215
+ "image_url": "http://static.gowalla.com/categories/170-standard.png",
216
+ "name": "Warehouse & Industrial",
217
+ "small_image_url": "http://static.gowalla.com/categories/170-small-standard.png",
218
+ "url": "/categories/170",
219
+ "spot_categories": [],
220
+ "description": ""
221
+ }
222
+ ],
223
+ "description": "Bridge, Corporate, Home, Church, etc."
224
+ },
225
+ {
226
+ "image_url": "http://static.gowalla.com/categories/2-standard.png",
227
+ "name": "Art & Culture",
228
+ "small_image_url": "http://static.gowalla.com/categories/2-small-standard.png",
229
+ "url": "/categories/2",
230
+ "spot_categories": [
231
+ {
232
+ "image_url": "http://static.gowalla.com/categories/188-standard.png",
233
+ "name": "Gallery",
234
+ "small_image_url": "http://static.gowalla.com/categories/188-small-standard.png",
235
+ "url": "/categories/188",
236
+ "spot_categories": [],
237
+ "description": ""
238
+ },
239
+ {
240
+ "image_url": "http://static.gowalla.com/categories/102-standard.png",
241
+ "name": "Library",
242
+ "small_image_url": "http://static.gowalla.com/categories/102-small-standard.png",
243
+ "url": "/categories/102",
244
+ "spot_categories": [],
245
+ "description": ""
246
+ },
247
+ {
248
+ "image_url": "http://static.gowalla.com/categories/63-standard.png",
249
+ "name": "Monument",
250
+ "small_image_url": "http://static.gowalla.com/categories/63-small-standard.png",
251
+ "url": "/categories/63",
252
+ "spot_categories": [],
253
+ "description": ""
254
+ },
255
+ {
256
+ "image_url": "http://static.gowalla.com/categories/207-standard.png",
257
+ "name": "Museum",
258
+ "small_image_url": "http://static.gowalla.com/categories/207-small-standard.png",
259
+ "url": "/categories/207",
260
+ "spot_categories": [
261
+ {
262
+ "image_url": "http://static.gowalla.com/categories/72-standard.png",
263
+ "name": "Asian Art Museum",
264
+ "small_image_url": "http://static.gowalla.com/categories/72-small-standard.png",
265
+ "url": "/categories/72",
266
+ "description": ""
267
+ },
268
+ {
269
+ "image_url": "http://static.gowalla.com/categories/73-standard.png",
270
+ "name": "History Museum",
271
+ "small_image_url": "http://static.gowalla.com/categories/73-small-standard.png",
272
+ "url": "/categories/73",
273
+ "description": ""
274
+ },
275
+ {
276
+ "image_url": "http://static.gowalla.com/categories/52-standard.png",
277
+ "name": "Modern Art Museum",
278
+ "small_image_url": "http://static.gowalla.com/categories/52-small-standard.png",
279
+ "url": "/categories/52",
280
+ "description": ""
281
+ },
282
+ {
283
+ "image_url": "http://static.gowalla.com/categories/212-standard.png",
284
+ "name": "Science Museum",
285
+ "small_image_url": "http://static.gowalla.com/categories/212-small-standard.png",
286
+ "url": "/categories/212",
287
+ "description": ""
288
+ },
289
+ {
290
+ "image_url": "http://static.gowalla.com/categories/50-standard.png",
291
+ "name": "Traditional Art Museum",
292
+ "small_image_url": "http://static.gowalla.com/categories/50-small-standard.png",
293
+ "url": "/categories/50",
294
+ "description": ""
295
+ }
296
+ ],
297
+ "description": ""
298
+ },
299
+ {
300
+ "image_url": "http://static.gowalla.com/categories/59-standard.png",
301
+ "name": "Other - Art & Culture",
302
+ "small_image_url": "http://static.gowalla.com/categories/59-small-standard.png",
303
+ "url": "/categories/59",
304
+ "spot_categories": [],
305
+ "description": ""
306
+ },
307
+ {
308
+ "image_url": "http://static.gowalla.com/categories/213-standard.png",
309
+ "name": "Planetarium",
310
+ "small_image_url": "http://static.gowalla.com/categories/213-small-standard.png",
311
+ "url": "/categories/213",
312
+ "spot_categories": [],
313
+ "description": ""
314
+ },
315
+ {
316
+ "image_url": "http://static.gowalla.com/categories/51-standard.png",
317
+ "name": "Sculpture",
318
+ "small_image_url": "http://static.gowalla.com/categories/51-small-standard.png",
319
+ "url": "/categories/51",
320
+ "spot_categories": [],
321
+ "description": ""
322
+ }
323
+ ],
324
+ "description": "Library, Monument, Museum, Sculpture"
325
+ },
326
+ {
327
+ "image_url": "http://static.gowalla.com/categories/133-standard.png",
328
+ "name": "College & Education",
329
+ "small_image_url": "http://static.gowalla.com/categories/133-small-standard.png",
330
+ "url": "/categories/133",
331
+ "spot_categories": [
332
+ {
333
+ "image_url": "http://static.gowalla.com/categories/135-standard.png",
334
+ "name": "Administration",
335
+ "small_image_url": "http://static.gowalla.com/categories/135-small-standard.png",
336
+ "url": "/categories/135",
337
+ "spot_categories": [],
338
+ "description": ""
339
+ },
340
+ {
341
+ "image_url": "http://static.gowalla.com/categories/137-standard.png",
342
+ "name": "Aquatics",
343
+ "small_image_url": "http://static.gowalla.com/categories/137-small-standard.png",
344
+ "url": "/categories/137",
345
+ "spot_categories": [],
346
+ "description": ""
347
+ },
348
+ {
349
+ "image_url": "http://static.gowalla.com/categories/136-standard.png",
350
+ "name": "Arts",
351
+ "small_image_url": "http://static.gowalla.com/categories/136-small-standard.png",
352
+ "url": "/categories/136",
353
+ "spot_categories": [],
354
+ "description": ""
355
+ },
356
+ {
357
+ "image_url": "http://static.gowalla.com/categories/96-standard.png",
358
+ "name": "Bookstore",
359
+ "small_image_url": "http://static.gowalla.com/categories/96-small-standard.png",
360
+ "url": "/categories/96",
361
+ "spot_categories": [],
362
+ "description": ""
363
+ },
364
+ {
365
+ "image_url": "http://static.gowalla.com/categories/138-standard.png",
366
+ "name": "Campus Commons",
367
+ "small_image_url": "http://static.gowalla.com/categories/138-small-standard.png",
368
+ "url": "/categories/138",
369
+ "spot_categories": [],
370
+ "description": ""
371
+ },
372
+ {
373
+ "image_url": "http://static.gowalla.com/categories/149-standard.png",
374
+ "name": "County College",
375
+ "small_image_url": "http://static.gowalla.com/categories/149-small-standard.png",
376
+ "url": "/categories/149",
377
+ "spot_categories": [],
378
+ "description": ""
379
+ },
380
+ {
381
+ "image_url": "http://static.gowalla.com/categories/139-standard.png",
382
+ "name": "Dormitory",
383
+ "small_image_url": "http://static.gowalla.com/categories/139-small-standard.png",
384
+ "url": "/categories/139",
385
+ "spot_categories": [],
386
+ "description": ""
387
+ },
388
+ {
389
+ "image_url": "http://static.gowalla.com/categories/150-standard.png",
390
+ "name": "Fountain",
391
+ "small_image_url": "http://static.gowalla.com/categories/150-small-standard.png",
392
+ "url": "/categories/150",
393
+ "spot_categories": [],
394
+ "description": ""
395
+ },
396
+ {
397
+ "image_url": "http://static.gowalla.com/categories/140-standard.png",
398
+ "name": "Frat House",
399
+ "small_image_url": "http://static.gowalla.com/categories/140-small-standard.png",
400
+ "url": "/categories/140",
401
+ "spot_categories": [],
402
+ "description": ""
403
+ },
404
+ {
405
+ "image_url": "http://static.gowalla.com/categories/141-standard.png",
406
+ "name": "Hall",
407
+ "small_image_url": "http://static.gowalla.com/categories/141-small-standard.png",
408
+ "url": "/categories/141",
409
+ "spot_categories": [],
410
+ "description": ""
411
+ },
412
+ {
413
+ "image_url": "http://static.gowalla.com/categories/152-standard.png",
414
+ "name": "High School",
415
+ "small_image_url": "http://static.gowalla.com/categories/152-small-standard.png",
416
+ "url": "/categories/152",
417
+ "spot_categories": [],
418
+ "description": ""
419
+ },
420
+ {
421
+ "image_url": "http://static.gowalla.com/categories/142-standard.png",
422
+ "name": "Lab",
423
+ "small_image_url": "http://static.gowalla.com/categories/142-small-standard.png",
424
+ "url": "/categories/142",
425
+ "spot_categories": [],
426
+ "description": ""
427
+ },
428
+ {
429
+ "image_url": "http://static.gowalla.com/categories/147-standard.png",
430
+ "name": "Law School",
431
+ "small_image_url": "http://static.gowalla.com/categories/147-small-standard.png",
432
+ "url": "/categories/147",
433
+ "spot_categories": [],
434
+ "description": ""
435
+ },
436
+ {
437
+ "image_url": "http://static.gowalla.com/categories/102-standard.png",
438
+ "name": "Library",
439
+ "small_image_url": "http://static.gowalla.com/categories/102-small-standard.png",
440
+ "url": "/categories/102",
441
+ "spot_categories": [],
442
+ "description": ""
443
+ },
444
+ {
445
+ "image_url": "http://static.gowalla.com/categories/148-standard.png",
446
+ "name": "Medical School",
447
+ "small_image_url": "http://static.gowalla.com/categories/148-small-standard.png",
448
+ "url": "/categories/148",
449
+ "spot_categories": [],
450
+ "description": ""
451
+ },
452
+ {
453
+ "image_url": "http://static.gowalla.com/categories/153-standard.png",
454
+ "name": "Other - College & Education",
455
+ "small_image_url": "http://static.gowalla.com/categories/153-small-standard.png",
456
+ "url": "/categories/153",
457
+ "spot_categories": [],
458
+ "description": ""
459
+ },
460
+ {
461
+ "image_url": "http://static.gowalla.com/categories/143-standard.png",
462
+ "name": "Rec Center",
463
+ "small_image_url": "http://static.gowalla.com/categories/143-small-standard.png",
464
+ "url": "/categories/143",
465
+ "spot_categories": [],
466
+ "description": ""
467
+ },
468
+ {
469
+ "image_url": "http://static.gowalla.com/categories/144-standard.png",
470
+ "name": "Sorority House",
471
+ "small_image_url": "http://static.gowalla.com/categories/144-small-standard.png",
472
+ "url": "/categories/144",
473
+ "spot_categories": [],
474
+ "description": ""
475
+ },
476
+ {
477
+ "image_url": "http://static.gowalla.com/categories/79-standard.png",
478
+ "name": "Stadium",
479
+ "small_image_url": "http://static.gowalla.com/categories/79-small-standard.png",
480
+ "url": "/categories/79",
481
+ "spot_categories": [],
482
+ "description": ""
483
+ },
484
+ {
485
+ "image_url": "http://static.gowalla.com/categories/145-standard.png",
486
+ "name": "Student Center",
487
+ "small_image_url": "http://static.gowalla.com/categories/145-small-standard.png",
488
+ "url": "/categories/145",
489
+ "spot_categories": [],
490
+ "description": ""
491
+ },
492
+ {
493
+ "image_url": "http://static.gowalla.com/categories/103-standard.png",
494
+ "name": "Theatre",
495
+ "small_image_url": "http://static.gowalla.com/categories/103-small-standard.png",
496
+ "url": "/categories/103",
497
+ "spot_categories": [],
498
+ "description": ""
499
+ },
500
+ {
501
+ "image_url": "http://static.gowalla.com/categories/146-standard.png",
502
+ "name": "Tower",
503
+ "small_image_url": "http://static.gowalla.com/categories/146-small-standard.png",
504
+ "url": "/categories/146",
505
+ "spot_categories": [],
506
+ "description": ""
507
+ },
508
+ {
509
+ "image_url": "http://static.gowalla.com/categories/151-standard.png",
510
+ "name": "Trade/Tech School",
511
+ "small_image_url": "http://static.gowalla.com/categories/151-small-standard.png",
512
+ "url": "/categories/151",
513
+ "spot_categories": [],
514
+ "description": ""
515
+ }
516
+ ],
517
+ "description": "Dorm, Stadium, High School, Commons"
518
+ },
519
+ {
520
+ "image_url": "http://static.gowalla.com/categories/12-standard.png",
521
+ "name": "Entertainment",
522
+ "small_image_url": "http://static.gowalla.com/categories/12-small-standard.png",
523
+ "url": "/categories/12",
524
+ "spot_categories": [
525
+ {
526
+ "image_url": "http://static.gowalla.com/categories/76-standard.png",
527
+ "name": "Aquarium",
528
+ "small_image_url": "http://static.gowalla.com/categories/76-small-standard.png",
529
+ "url": "/categories/76",
530
+ "spot_categories": [],
531
+ "description": ""
532
+ },
533
+ {
534
+ "image_url": "http://static.gowalla.com/categories/74-standard.png",
535
+ "name": "Arcade",
536
+ "small_image_url": "http://static.gowalla.com/categories/74-small-standard.png",
537
+ "url": "/categories/74",
538
+ "spot_categories": [],
539
+ "description": ""
540
+ },
541
+ {
542
+ "image_url": "http://static.gowalla.com/categories/215-standard.png",
543
+ "name": "Bowling",
544
+ "small_image_url": "http://static.gowalla.com/categories/215-small-standard.png",
545
+ "url": "/categories/215",
546
+ "spot_categories": [],
547
+ "description": ""
548
+ },
549
+ {
550
+ "image_url": "http://static.gowalla.com/categories/77-standard.png",
551
+ "name": "Casino",
552
+ "small_image_url": "http://static.gowalla.com/categories/77-small-standard.png",
553
+ "url": "/categories/77",
554
+ "spot_categories": [],
555
+ "description": ""
556
+ },
557
+ {
558
+ "image_url": "http://static.gowalla.com/categories/30-standard.png",
559
+ "name": "Cineplex",
560
+ "small_image_url": "http://static.gowalla.com/categories/30-small-standard.png",
561
+ "url": "/categories/30",
562
+ "spot_categories": [],
563
+ "description": ""
564
+ },
565
+ {
566
+ "image_url": "http://static.gowalla.com/categories/32-standard.png",
567
+ "name": "Live Music",
568
+ "small_image_url": "http://static.gowalla.com/categories/32-small-standard.png",
569
+ "url": "/categories/32",
570
+ "spot_categories": [],
571
+ "description": ""
572
+ },
573
+ {
574
+ "image_url": "http://static.gowalla.com/categories/58-standard.png",
575
+ "name": "Other - Entertainment",
576
+ "small_image_url": "http://static.gowalla.com/categories/58-small-standard.png",
577
+ "url": "/categories/58",
578
+ "spot_categories": [],
579
+ "description": ""
580
+ },
581
+ {
582
+ "image_url": "http://static.gowalla.com/categories/31-standard.png",
583
+ "name": "Performing Arts",
584
+ "small_image_url": "http://static.gowalla.com/categories/31-small-standard.png",
585
+ "url": "/categories/31",
586
+ "spot_categories": [],
587
+ "description": ""
588
+ },
589
+ {
590
+ "image_url": "http://static.gowalla.com/categories/78-standard.png",
591
+ "name": "Racetrack",
592
+ "small_image_url": "http://static.gowalla.com/categories/78-small-standard.png",
593
+ "url": "/categories/78",
594
+ "spot_categories": [],
595
+ "description": ""
596
+ },
597
+ {
598
+ "image_url": "http://static.gowalla.com/categories/79-standard.png",
599
+ "name": "Stadium",
600
+ "small_image_url": "http://static.gowalla.com/categories/79-small-standard.png",
601
+ "url": "/categories/79",
602
+ "spot_categories": [],
603
+ "description": ""
604
+ },
605
+ {
606
+ "image_url": "http://static.gowalla.com/categories/103-standard.png",
607
+ "name": "Theatre",
608
+ "small_image_url": "http://static.gowalla.com/categories/103-small-standard.png",
609
+ "url": "/categories/103",
610
+ "spot_categories": [],
611
+ "description": ""
612
+ },
613
+ {
614
+ "image_url": "http://static.gowalla.com/categories/75-standard.png",
615
+ "name": "Theme Park",
616
+ "small_image_url": "http://static.gowalla.com/categories/75-small-standard.png",
617
+ "url": "/categories/75",
618
+ "spot_categories": [],
619
+ "description": ""
620
+ },
621
+ {
622
+ "image_url": "http://static.gowalla.com/categories/33-standard.png",
623
+ "name": "Zoo",
624
+ "small_image_url": "http://static.gowalla.com/categories/33-small-standard.png",
625
+ "url": "/categories/33",
626
+ "spot_categories": [],
627
+ "description": ""
628
+ }
629
+ ],
630
+ "description": "Aquarium, Casino, Theatre, Zoo"
631
+ },
632
+ {
633
+ "image_url": "http://static.gowalla.com/categories/7-standard.png",
634
+ "name": "Food",
635
+ "small_image_url": "http://static.gowalla.com/categories/7-small-standard.png",
636
+ "url": "/categories/7",
637
+ "spot_categories": [
638
+ {
639
+ "image_url": "http://static.gowalla.com/categories/84-standard.png",
640
+ "name": "African",
641
+ "small_image_url": "http://static.gowalla.com/categories/84-small-standard.png",
642
+ "url": "/categories/84",
643
+ "spot_categories": [],
644
+ "description": ""
645
+ },
646
+ {
647
+ "image_url": "http://static.gowalla.com/categories/16-standard.png",
648
+ "name": "American",
649
+ "small_image_url": "http://static.gowalla.com/categories/16-small-standard.png",
650
+ "url": "/categories/16",
651
+ "spot_categories": [],
652
+ "description": ""
653
+ },
654
+ {
655
+ "image_url": "http://static.gowalla.com/categories/18-standard.png",
656
+ "name": "Asian",
657
+ "small_image_url": "http://static.gowalla.com/categories/18-small-standard.png",
658
+ "url": "/categories/18",
659
+ "spot_categories": [],
660
+ "description": ""
661
+ },
662
+ {
663
+ "image_url": "http://static.gowalla.com/categories/110-standard.png",
664
+ "name": "Bakery",
665
+ "small_image_url": "http://static.gowalla.com/categories/110-small-standard.png",
666
+ "url": "/categories/110",
667
+ "spot_categories": [],
668
+ "description": ""
669
+ },
670
+ {
671
+ "image_url": "http://static.gowalla.com/categories/17-standard.png",
672
+ "name": "BBQ",
673
+ "small_image_url": "http://static.gowalla.com/categories/17-small-standard.png",
674
+ "url": "/categories/17",
675
+ "spot_categories": [],
676
+ "description": ""
677
+ },
678
+ {
679
+ "image_url": "http://static.gowalla.com/categories/123-standard.png",
680
+ "name": "Breakfast",
681
+ "small_image_url": "http://static.gowalla.com/categories/123-small-standard.png",
682
+ "url": "/categories/123",
683
+ "spot_categories": [],
684
+ "description": ""
685
+ },
686
+ {
687
+ "image_url": "http://static.gowalla.com/categories/167-standard.png",
688
+ "name": "Brewery / Microbrewery",
689
+ "small_image_url": "http://static.gowalla.com/categories/167-small-standard.png",
690
+ "url": "/categories/167",
691
+ "spot_categories": [],
692
+ "description": ""
693
+ },
694
+ {
695
+ "image_url": "http://static.gowalla.com/categories/154-standard.png",
696
+ "name": "Burgers",
697
+ "small_image_url": "http://static.gowalla.com/categories/154-small-standard.png",
698
+ "url": "/categories/154",
699
+ "spot_categories": [],
700
+ "description": ""
701
+ },
702
+ {
703
+ "image_url": "http://static.gowalla.com/categories/1-standard.png",
704
+ "name": "Coffee Shop",
705
+ "small_image_url": "http://static.gowalla.com/categories/1-small-standard.png",
706
+ "url": "/categories/1",
707
+ "spot_categories": [],
708
+ "description": ""
709
+ },
710
+ {
711
+ "image_url": "http://static.gowalla.com/categories/80-standard.png",
712
+ "name": "Dessert",
713
+ "small_image_url": "http://static.gowalla.com/categories/80-small-standard.png",
714
+ "url": "/categories/80",
715
+ "spot_categories": [],
716
+ "description": ""
717
+ },
718
+ {
719
+ "image_url": "http://static.gowalla.com/categories/124-standard.png",
720
+ "name": "Diner",
721
+ "small_image_url": "http://static.gowalla.com/categories/124-small-standard.png",
722
+ "url": "/categories/124",
723
+ "spot_categories": [],
724
+ "description": ""
725
+ },
726
+ {
727
+ "image_url": "http://static.gowalla.com/categories/236-standard.png",
728
+ "name": "Fine Dining",
729
+ "small_image_url": "http://static.gowalla.com/categories/236-small-standard.png",
730
+ "url": "/categories/236",
731
+ "spot_categories": [],
732
+ "description": ""
733
+ },
734
+ {
735
+ "image_url": "http://static.gowalla.com/categories/82-standard.png",
736
+ "name": "French",
737
+ "small_image_url": "http://static.gowalla.com/categories/82-small-standard.png",
738
+ "url": "/categories/82",
739
+ "spot_categories": [],
740
+ "description": ""
741
+ },
742
+ {
743
+ "image_url": "http://static.gowalla.com/categories/160-standard.png",
744
+ "name": "Indian",
745
+ "small_image_url": "http://static.gowalla.com/categories/160-small-standard.png",
746
+ "url": "/categories/160",
747
+ "spot_categories": [],
748
+ "description": ""
749
+ },
750
+ {
751
+ "image_url": "http://static.gowalla.com/categories/19-standard.png",
752
+ "name": "Italian",
753
+ "small_image_url": "http://static.gowalla.com/categories/19-small-standard.png",
754
+ "url": "/categories/19",
755
+ "spot_categories": [],
756
+ "description": ""
757
+ },
758
+ {
759
+ "image_url": "http://static.gowalla.com/categories/98-standard.png",
760
+ "name": "Mediterranean",
761
+ "small_image_url": "http://static.gowalla.com/categories/98-small-standard.png",
762
+ "url": "/categories/98",
763
+ "spot_categories": [],
764
+ "description": ""
765
+ },
766
+ {
767
+ "image_url": "http://static.gowalla.com/categories/15-standard.png",
768
+ "name": "Mexican",
769
+ "small_image_url": "http://static.gowalla.com/categories/15-small-standard.png",
770
+ "url": "/categories/15",
771
+ "spot_categories": [],
772
+ "description": ""
773
+ },
774
+ {
775
+ "image_url": "http://static.gowalla.com/categories/83-standard.png",
776
+ "name": "Middle Eastern",
777
+ "small_image_url": "http://static.gowalla.com/categories/83-small-standard.png",
778
+ "url": "/categories/83",
779
+ "spot_categories": [],
780
+ "description": ""
781
+ },
782
+ {
783
+ "image_url": "http://static.gowalla.com/categories/64-standard.png",
784
+ "name": "Other - Food ",
785
+ "small_image_url": "http://static.gowalla.com/categories/64-small-standard.png",
786
+ "url": "/categories/64",
787
+ "spot_categories": [],
788
+ "description": ""
789
+ },
790
+ {
791
+ "image_url": "http://static.gowalla.com/categories/85-standard.png",
792
+ "name": "Pan Pacific",
793
+ "small_image_url": "http://static.gowalla.com/categories/85-small-standard.png",
794
+ "url": "/categories/85",
795
+ "spot_categories": [],
796
+ "description": ""
797
+ },
798
+ {
799
+ "image_url": "http://static.gowalla.com/categories/155-standard.png",
800
+ "name": "Pizza",
801
+ "small_image_url": "http://static.gowalla.com/categories/155-small-standard.png",
802
+ "url": "/categories/155",
803
+ "spot_categories": [],
804
+ "description": ""
805
+ },
806
+ {
807
+ "image_url": "http://static.gowalla.com/categories/101-standard.png",
808
+ "name": "Sandwich Shop",
809
+ "small_image_url": "http://static.gowalla.com/categories/101-small-standard.png",
810
+ "url": "/categories/101",
811
+ "spot_categories": [],
812
+ "description": ""
813
+ },
814
+ {
815
+ "image_url": "http://static.gowalla.com/categories/86-standard.png",
816
+ "name": "Seafood",
817
+ "small_image_url": "http://static.gowalla.com/categories/86-small-standard.png",
818
+ "url": "/categories/86",
819
+ "spot_categories": [],
820
+ "description": ""
821
+ },
822
+ {
823
+ "image_url": "http://static.gowalla.com/categories/237-standard.png",
824
+ "name": "Soul Food",
825
+ "small_image_url": "http://static.gowalla.com/categories/237-small-standard.png",
826
+ "url": "/categories/237",
827
+ "spot_categories": [],
828
+ "description": ""
829
+ },
830
+ {
831
+ "image_url": "http://static.gowalla.com/categories/81-standard.png",
832
+ "name": "South American / Latin",
833
+ "small_image_url": "http://static.gowalla.com/categories/81-small-standard.png",
834
+ "url": "/categories/81",
835
+ "spot_categories": [],
836
+ "description": ""
837
+ },
838
+ {
839
+ "image_url": "http://static.gowalla.com/categories/100-standard.png",
840
+ "name": "Steakhouse",
841
+ "small_image_url": "http://static.gowalla.com/categories/100-small-standard.png",
842
+ "url": "/categories/100",
843
+ "spot_categories": [],
844
+ "description": ""
845
+ },
846
+ {
847
+ "image_url": "http://static.gowalla.com/categories/178-standard.png",
848
+ "name": "Street Fare",
849
+ "small_image_url": "http://static.gowalla.com/categories/178-small-standard.png",
850
+ "url": "/categories/178",
851
+ "spot_categories": [
852
+ {
853
+ "image_url": "http://static.gowalla.com/categories/187-standard.png",
854
+ "name": "Brat / Sausage Kiosk",
855
+ "small_image_url": "http://static.gowalla.com/categories/187-small-standard.png",
856
+ "url": "/categories/187",
857
+ "description": ""
858
+ },
859
+ {
860
+ "image_url": "http://static.gowalla.com/categories/206-standard.png",
861
+ "name": "Donuts",
862
+ "small_image_url": "http://static.gowalla.com/categories/206-small-standard.png",
863
+ "url": "/categories/206",
864
+ "description": ""
865
+ },
866
+ {
867
+ "image_url": "http://static.gowalla.com/categories/204-standard.png",
868
+ "name": "Other - Street Fare",
869
+ "small_image_url": "http://static.gowalla.com/categories/204-small-standard.png",
870
+ "url": "/categories/204",
871
+ "description": ""
872
+ },
873
+ {
874
+ "image_url": "http://static.gowalla.com/categories/189-standard.png",
875
+ "name": "Tacos",
876
+ "small_image_url": "http://static.gowalla.com/categories/189-small-standard.png",
877
+ "url": "/categories/189",
878
+ "description": ""
879
+ }
880
+ ],
881
+ "description": ""
882
+ },
883
+ {
884
+ "image_url": "http://static.gowalla.com/categories/159-standard.png",
885
+ "name": "Sushi",
886
+ "small_image_url": "http://static.gowalla.com/categories/159-small-standard.png",
887
+ "url": "/categories/159",
888
+ "spot_categories": [],
889
+ "description": ""
890
+ },
891
+ {
892
+ "image_url": "http://static.gowalla.com/categories/171-standard.png",
893
+ "name": "Tea Room",
894
+ "small_image_url": "http://static.gowalla.com/categories/171-small-standard.png",
895
+ "url": "/categories/171",
896
+ "spot_categories": [],
897
+ "description": ""
898
+ },
899
+ {
900
+ "image_url": "http://static.gowalla.com/categories/161-standard.png",
901
+ "name": "Vegetarian / Vegan",
902
+ "small_image_url": "http://static.gowalla.com/categories/161-small-standard.png",
903
+ "url": "/categories/161",
904
+ "spot_categories": [],
905
+ "description": ""
906
+ },
907
+ {
908
+ "image_url": "http://static.gowalla.com/categories/157-standard.png",
909
+ "name": "Vineyard",
910
+ "small_image_url": "http://static.gowalla.com/categories/157-small-standard.png",
911
+ "url": "/categories/157",
912
+ "spot_categories": [],
913
+ "description": ""
914
+ },
915
+ {
916
+ "image_url": "http://static.gowalla.com/categories/67-standard.png",
917
+ "name": "Wings",
918
+ "small_image_url": "http://static.gowalla.com/categories/67-small-standard.png",
919
+ "url": "/categories/67",
920
+ "spot_categories": [],
921
+ "description": ""
922
+ }
923
+ ],
924
+ "description": "Bakery, Coffeeshop, Dessert, Vineyard"
925
+ },
926
+ {
927
+ "image_url": "http://static.gowalla.com/categories/4-standard.png",
928
+ "name": "Nightlife",
929
+ "small_image_url": "http://static.gowalla.com/categories/4-small-standard.png",
930
+ "url": "/categories/4",
931
+ "spot_categories": [
932
+ {
933
+ "image_url": "http://static.gowalla.com/categories/241-standard.png",
934
+ "name": "Bar",
935
+ "small_image_url": "http://static.gowalla.com/categories/241-small-standard.png",
936
+ "url": "/categories/241",
937
+ "spot_categories": [],
938
+ "description": ""
939
+ },
940
+ {
941
+ "image_url": "http://static.gowalla.com/categories/167-standard.png",
942
+ "name": "Brewery / Microbrewery",
943
+ "small_image_url": "http://static.gowalla.com/categories/167-small-standard.png",
944
+ "url": "/categories/167",
945
+ "spot_categories": [],
946
+ "description": ""
947
+ },
948
+ {
949
+ "image_url": "http://static.gowalla.com/categories/25-standard.png",
950
+ "name": "Dancefloor",
951
+ "small_image_url": "http://static.gowalla.com/categories/25-small-standard.png",
952
+ "url": "/categories/25",
953
+ "spot_categories": [],
954
+ "description": ""
955
+ },
956
+ {
957
+ "image_url": "http://static.gowalla.com/categories/28-standard.png",
958
+ "name": "Dive Bar",
959
+ "small_image_url": "http://static.gowalla.com/categories/28-small-standard.png",
960
+ "url": "/categories/28",
961
+ "spot_categories": [],
962
+ "description": ""
963
+ },
964
+ {
965
+ "image_url": "http://static.gowalla.com/categories/177-standard.png",
966
+ "name": "Karaoke",
967
+ "small_image_url": "http://static.gowalla.com/categories/177-small-standard.png",
968
+ "url": "/categories/177",
969
+ "spot_categories": [],
970
+ "description": ""
971
+ },
972
+ {
973
+ "image_url": "http://static.gowalla.com/categories/56-standard.png",
974
+ "name": "Other - Nightlife ",
975
+ "small_image_url": "http://static.gowalla.com/categories/56-small-standard.png",
976
+ "url": "/categories/56",
977
+ "spot_categories": [],
978
+ "description": ""
979
+ },
980
+ {
981
+ "image_url": "http://static.gowalla.com/categories/24-standard.png",
982
+ "name": "Pub",
983
+ "small_image_url": "http://static.gowalla.com/categories/24-small-standard.png",
984
+ "url": "/categories/24",
985
+ "spot_categories": [],
986
+ "description": ""
987
+ },
988
+ {
989
+ "image_url": "http://static.gowalla.com/categories/97-standard.png",
990
+ "name": "Saloon",
991
+ "small_image_url": "http://static.gowalla.com/categories/97-small-standard.png",
992
+ "url": "/categories/97",
993
+ "spot_categories": [],
994
+ "description": ""
995
+ },
996
+ {
997
+ "image_url": "http://static.gowalla.com/categories/130-standard.png",
998
+ "name": "Sports Bar",
999
+ "small_image_url": "http://static.gowalla.com/categories/130-small-standard.png",
1000
+ "url": "/categories/130",
1001
+ "spot_categories": [],
1002
+ "description": ""
1003
+ },
1004
+ {
1005
+ "image_url": "http://static.gowalla.com/categories/26-standard.png",
1006
+ "name": "Ultra-lounge",
1007
+ "small_image_url": "http://static.gowalla.com/categories/26-small-standard.png",
1008
+ "url": "/categories/26",
1009
+ "spot_categories": [],
1010
+ "description": ""
1011
+ },
1012
+ {
1013
+ "image_url": "http://static.gowalla.com/categories/27-standard.png",
1014
+ "name": "Wine Bar",
1015
+ "small_image_url": "http://static.gowalla.com/categories/27-small-standard.png",
1016
+ "url": "/categories/27",
1017
+ "spot_categories": [],
1018
+ "description": ""
1019
+ }
1020
+ ],
1021
+ "description": "Pub, Dive Bar, Sports Bar, Ultra Lounge"
1022
+ },
1023
+ {
1024
+ "image_url": "http://static.gowalla.com/categories/5-standard.png",
1025
+ "name": "Parks, Nature & Recreation",
1026
+ "small_image_url": "http://static.gowalla.com/categories/5-small-standard.png",
1027
+ "url": "/categories/5",
1028
+ "spot_categories": [
1029
+ {
1030
+ "image_url": "http://static.gowalla.com/categories/223-standard.png",
1031
+ "name": "Basketball Court",
1032
+ "small_image_url": "http://static.gowalla.com/categories/223-small-standard.png",
1033
+ "url": "/categories/223",
1034
+ "spot_categories": [],
1035
+ "description": ""
1036
+ },
1037
+ {
1038
+ "image_url": "http://static.gowalla.com/categories/99-standard.png",
1039
+ "name": "Beach",
1040
+ "small_image_url": "http://static.gowalla.com/categories/99-small-standard.png",
1041
+ "url": "/categories/99",
1042
+ "spot_categories": [],
1043
+ "description": ""
1044
+ },
1045
+ {
1046
+ "image_url": "http://static.gowalla.com/categories/113-standard.png",
1047
+ "name": "Big Blue Wet Thing",
1048
+ "small_image_url": "http://static.gowalla.com/categories/113-small-standard.png",
1049
+ "url": "/categories/113",
1050
+ "spot_categories": [],
1051
+ "description": ""
1052
+ },
1053
+ {
1054
+ "image_url": "http://static.gowalla.com/categories/111-standard.png",
1055
+ "name": "Campground",
1056
+ "small_image_url": "http://static.gowalla.com/categories/111-small-standard.png",
1057
+ "url": "/categories/111",
1058
+ "spot_categories": [],
1059
+ "description": ""
1060
+ },
1061
+ {
1062
+ "image_url": "http://static.gowalla.com/categories/176-standard.png",
1063
+ "name": "Canal / Waterway",
1064
+ "small_image_url": "http://static.gowalla.com/categories/176-small-standard.png",
1065
+ "url": "/categories/176",
1066
+ "spot_categories": [],
1067
+ "description": ""
1068
+ },
1069
+ {
1070
+ "image_url": "http://static.gowalla.com/categories/181-standard.png",
1071
+ "name": "Cave",
1072
+ "small_image_url": "http://static.gowalla.com/categories/181-small-standard.png",
1073
+ "url": "/categories/181",
1074
+ "spot_categories": [],
1075
+ "description": ""
1076
+ },
1077
+ {
1078
+ "image_url": "http://static.gowalla.com/categories/162-standard.png",
1079
+ "name": "Cemetery",
1080
+ "small_image_url": "http://static.gowalla.com/categories/162-small-standard.png",
1081
+ "url": "/categories/162",
1082
+ "spot_categories": [],
1083
+ "description": ""
1084
+ },
1085
+ {
1086
+ "image_url": "http://static.gowalla.com/categories/38-standard.png",
1087
+ "name": "City Park",
1088
+ "small_image_url": "http://static.gowalla.com/categories/38-small-standard.png",
1089
+ "url": "/categories/38",
1090
+ "spot_categories": [],
1091
+ "description": ""
1092
+ },
1093
+ {
1094
+ "image_url": "http://static.gowalla.com/categories/209-standard.png",
1095
+ "name": "Farm",
1096
+ "small_image_url": "http://static.gowalla.com/categories/209-small-standard.png",
1097
+ "url": "/categories/209",
1098
+ "spot_categories": [],
1099
+ "description": ""
1100
+ },
1101
+ {
1102
+ "image_url": "http://static.gowalla.com/categories/214-standard.png",
1103
+ "name": "Garden",
1104
+ "small_image_url": "http://static.gowalla.com/categories/214-small-standard.png",
1105
+ "url": "/categories/214",
1106
+ "spot_categories": [],
1107
+ "description": ""
1108
+ },
1109
+ {
1110
+ "image_url": "http://static.gowalla.com/categories/42-standard.png",
1111
+ "name": "Golf Course",
1112
+ "small_image_url": "http://static.gowalla.com/categories/42-small-standard.png",
1113
+ "url": "/categories/42",
1114
+ "spot_categories": [],
1115
+ "description": ""
1116
+ },
1117
+ {
1118
+ "image_url": "http://static.gowalla.com/categories/166-standard.png",
1119
+ "name": "Historic Landmark",
1120
+ "small_image_url": "http://static.gowalla.com/categories/166-small-standard.png",
1121
+ "url": "/categories/166",
1122
+ "spot_categories": [],
1123
+ "description": ""
1124
+ },
1125
+ {
1126
+ "image_url": "http://static.gowalla.com/categories/114-standard.png",
1127
+ "name": "Lake & Pond",
1128
+ "small_image_url": "http://static.gowalla.com/categories/114-small-standard.png",
1129
+ "url": "/categories/114",
1130
+ "spot_categories": [],
1131
+ "description": ""
1132
+ },
1133
+ {
1134
+ "image_url": "http://static.gowalla.com/categories/216-standard.png",
1135
+ "name": "Lighthouse",
1136
+ "small_image_url": "http://static.gowalla.com/categories/216-small-standard.png",
1137
+ "url": "/categories/216",
1138
+ "spot_categories": [],
1139
+ "description": ""
1140
+ },
1141
+ {
1142
+ "image_url": "http://static.gowalla.com/categories/63-standard.png",
1143
+ "name": "Monument",
1144
+ "small_image_url": "http://static.gowalla.com/categories/63-small-standard.png",
1145
+ "url": "/categories/63",
1146
+ "spot_categories": [],
1147
+ "description": ""
1148
+ },
1149
+ {
1150
+ "image_url": "http://static.gowalla.com/categories/41-standard.png",
1151
+ "name": "National Park",
1152
+ "small_image_url": "http://static.gowalla.com/categories/41-small-standard.png",
1153
+ "url": "/categories/41",
1154
+ "spot_categories": [],
1155
+ "description": ""
1156
+ },
1157
+ {
1158
+ "image_url": "http://static.gowalla.com/categories/40-standard.png",
1159
+ "name": "Nature Preserve",
1160
+ "small_image_url": "http://static.gowalla.com/categories/40-small-standard.png",
1161
+ "url": "/categories/40",
1162
+ "spot_categories": [],
1163
+ "description": ""
1164
+ },
1165
+ {
1166
+ "image_url": "http://static.gowalla.com/categories/55-standard.png",
1167
+ "name": "Other - Parks ",
1168
+ "small_image_url": "http://static.gowalla.com/categories/55-small-standard.png",
1169
+ "url": "/categories/55",
1170
+ "spot_categories": [],
1171
+ "description": ""
1172
+ },
1173
+ {
1174
+ "image_url": "http://static.gowalla.com/categories/116-standard.png",
1175
+ "name": "Pavilion",
1176
+ "small_image_url": "http://static.gowalla.com/categories/116-small-standard.png",
1177
+ "url": "/categories/116",
1178
+ "spot_categories": [],
1179
+ "description": ""
1180
+ },
1181
+ {
1182
+ "image_url": "http://static.gowalla.com/categories/37-standard.png",
1183
+ "name": "Playground",
1184
+ "small_image_url": "http://static.gowalla.com/categories/37-small-standard.png",
1185
+ "url": "/categories/37",
1186
+ "spot_categories": [],
1187
+ "description": ""
1188
+ },
1189
+ {
1190
+ "image_url": "http://static.gowalla.com/categories/165-standard.png",
1191
+ "name": "Plaza / Square",
1192
+ "small_image_url": "http://static.gowalla.com/categories/165-small-standard.png",
1193
+ "url": "/categories/165",
1194
+ "spot_categories": [],
1195
+ "description": ""
1196
+ },
1197
+ {
1198
+ "image_url": "http://static.gowalla.com/categories/39-standard.png",
1199
+ "name": "Regional / State Park",
1200
+ "small_image_url": "http://static.gowalla.com/categories/39-small-standard.png",
1201
+ "url": "/categories/39",
1202
+ "spot_categories": [],
1203
+ "description": ""
1204
+ },
1205
+ {
1206
+ "image_url": "http://static.gowalla.com/categories/115-standard.png",
1207
+ "name": "River & Stream",
1208
+ "small_image_url": "http://static.gowalla.com/categories/115-small-standard.png",
1209
+ "url": "/categories/115",
1210
+ "spot_categories": [],
1211
+ "description": ""
1212
+ },
1213
+ {
1214
+ "image_url": "http://static.gowalla.com/categories/105-standard.png",
1215
+ "name": "Scenic Lookout",
1216
+ "small_image_url": "http://static.gowalla.com/categories/105-small-standard.png",
1217
+ "url": "/categories/105",
1218
+ "spot_categories": [],
1219
+ "description": ""
1220
+ },
1221
+ {
1222
+ "image_url": "http://static.gowalla.com/categories/51-standard.png",
1223
+ "name": "Sculpture",
1224
+ "small_image_url": "http://static.gowalla.com/categories/51-small-standard.png",
1225
+ "url": "/categories/51",
1226
+ "spot_categories": [],
1227
+ "description": ""
1228
+ },
1229
+ {
1230
+ "image_url": "http://static.gowalla.com/categories/211-standard.png",
1231
+ "name": "Skatepark",
1232
+ "small_image_url": "http://static.gowalla.com/categories/211-small-standard.png",
1233
+ "url": "/categories/211",
1234
+ "spot_categories": [],
1235
+ "description": ""
1236
+ },
1237
+ {
1238
+ "image_url": "http://static.gowalla.com/categories/131-standard.png",
1239
+ "name": "Ski & Snowboard Area",
1240
+ "small_image_url": "http://static.gowalla.com/categories/131-small-standard.png",
1241
+ "url": "/categories/131",
1242
+ "spot_categories": [
1243
+ {
1244
+ "image_url": "http://static.gowalla.com/categories/197-standard.png",
1245
+ "name": "Chalet",
1246
+ "small_image_url": "http://static.gowalla.com/categories/197-small-standard.png",
1247
+ "url": "/categories/197",
1248
+ "description": ""
1249
+ },
1250
+ {
1251
+ "image_url": "http://static.gowalla.com/categories/194-standard.png",
1252
+ "name": "Glade",
1253
+ "small_image_url": "http://static.gowalla.com/categories/194-small-standard.png",
1254
+ "url": "/categories/194",
1255
+ "description": ""
1256
+ },
1257
+ {
1258
+ "image_url": "http://static.gowalla.com/categories/219-standard.png",
1259
+ "name": "Gondola",
1260
+ "small_image_url": "http://static.gowalla.com/categories/219-small-standard.png",
1261
+ "url": "/categories/219",
1262
+ "description": ""
1263
+ },
1264
+ {
1265
+ "image_url": "http://static.gowalla.com/categories/198-standard.png",
1266
+ "name": "Halfpipe",
1267
+ "small_image_url": "http://static.gowalla.com/categories/198-small-standard.png",
1268
+ "url": "/categories/198",
1269
+ "description": ""
1270
+ },
1271
+ {
1272
+ "image_url": "http://static.gowalla.com/categories/196-standard.png",
1273
+ "name": "Lifthouse",
1274
+ "small_image_url": "http://static.gowalla.com/categories/196-small-standard.png",
1275
+ "url": "/categories/196",
1276
+ "description": ""
1277
+ },
1278
+ {
1279
+ "image_url": "http://static.gowalla.com/categories/220-standard.png",
1280
+ "name": "Summit",
1281
+ "small_image_url": "http://static.gowalla.com/categories/220-small-standard.png",
1282
+ "url": "/categories/220",
1283
+ "description": ""
1284
+ },
1285
+ {
1286
+ "image_url": "http://static.gowalla.com/categories/195-standard.png",
1287
+ "name": "Terrain Park",
1288
+ "small_image_url": "http://static.gowalla.com/categories/195-small-standard.png",
1289
+ "url": "/categories/195",
1290
+ "description": ""
1291
+ }
1292
+ ],
1293
+ "description": ""
1294
+ },
1295
+ {
1296
+ "image_url": "http://static.gowalla.com/categories/157-standard.png",
1297
+ "name": "Vineyard",
1298
+ "small_image_url": "http://static.gowalla.com/categories/157-small-standard.png",
1299
+ "url": "/categories/157",
1300
+ "spot_categories": [],
1301
+ "description": ""
1302
+ }
1303
+ ],
1304
+ "description": "Beach, Cemetery, Golf Course, Playground"
1305
+ },
1306
+ {
1307
+ "image_url": "http://static.gowalla.com/categories/6-standard.png",
1308
+ "name": "Shopping & Services",
1309
+ "small_image_url": "http://static.gowalla.com/categories/6-small-standard.png",
1310
+ "url": "/categories/6",
1311
+ "spot_categories": [
1312
+ {
1313
+ "image_url": "http://static.gowalla.com/categories/91-standard.png",
1314
+ "name": "Antiques",
1315
+ "small_image_url": "http://static.gowalla.com/categories/91-small-standard.png",
1316
+ "url": "/categories/91",
1317
+ "spot_categories": [],
1318
+ "description": ""
1319
+ },
1320
+ {
1321
+ "image_url": "http://static.gowalla.com/categories/35-standard.png",
1322
+ "name": "Apparel",
1323
+ "small_image_url": "http://static.gowalla.com/categories/35-small-standard.png",
1324
+ "url": "/categories/35",
1325
+ "spot_categories": [
1326
+ {
1327
+ "image_url": "http://static.gowalla.com/categories/239-standard.png",
1328
+ "name": "Accessories",
1329
+ "small_image_url": "http://static.gowalla.com/categories/239-small-standard.png",
1330
+ "url": "/categories/239",
1331
+ "description": ""
1332
+ },
1333
+ {
1334
+ "image_url": "http://static.gowalla.com/categories/238-standard.png",
1335
+ "name": "Children's Apparel",
1336
+ "small_image_url": "http://static.gowalla.com/categories/238-small-standard.png",
1337
+ "url": "/categories/238",
1338
+ "description": ""
1339
+ },
1340
+ {
1341
+ "image_url": "http://static.gowalla.com/categories/221-standard.png",
1342
+ "name": "Men's Apparel",
1343
+ "small_image_url": "http://static.gowalla.com/categories/221-small-standard.png",
1344
+ "url": "/categories/221",
1345
+ "description": ""
1346
+ },
1347
+ {
1348
+ "image_url": "http://static.gowalla.com/categories/240-standard.png",
1349
+ "name": "Shoes",
1350
+ "small_image_url": "http://static.gowalla.com/categories/240-small-standard.png",
1351
+ "url": "/categories/240",
1352
+ "description": ""
1353
+ },
1354
+ {
1355
+ "image_url": "http://static.gowalla.com/categories/222-standard.png",
1356
+ "name": "Women's Apparel",
1357
+ "small_image_url": "http://static.gowalla.com/categories/222-small-standard.png",
1358
+ "url": "/categories/222",
1359
+ "description": ""
1360
+ }
1361
+ ],
1362
+ "description": ""
1363
+ },
1364
+ {
1365
+ "image_url": "http://static.gowalla.com/categories/186-standard.png",
1366
+ "name": "Bank & Financial",
1367
+ "small_image_url": "http://static.gowalla.com/categories/186-small-standard.png",
1368
+ "url": "/categories/186",
1369
+ "spot_categories": [],
1370
+ "description": ""
1371
+ },
1372
+ {
1373
+ "image_url": "http://static.gowalla.com/categories/96-standard.png",
1374
+ "name": "Bookstore",
1375
+ "small_image_url": "http://static.gowalla.com/categories/96-small-standard.png",
1376
+ "url": "/categories/96",
1377
+ "spot_categories": [],
1378
+ "description": ""
1379
+ },
1380
+ {
1381
+ "image_url": "http://static.gowalla.com/categories/180-standard.png",
1382
+ "name": "Candy Store",
1383
+ "small_image_url": "http://static.gowalla.com/categories/180-small-standard.png",
1384
+ "url": "/categories/180",
1385
+ "spot_categories": [],
1386
+ "description": ""
1387
+ },
1388
+ {
1389
+ "image_url": "http://static.gowalla.com/categories/202-standard.png",
1390
+ "name": "Discount Store",
1391
+ "small_image_url": "http://static.gowalla.com/categories/202-small-standard.png",
1392
+ "url": "/categories/202",
1393
+ "spot_categories": [],
1394
+ "description": ""
1395
+ },
1396
+ {
1397
+ "image_url": "http://static.gowalla.com/categories/201-standard.png",
1398
+ "name": "Drugstore & Pharmacy",
1399
+ "small_image_url": "http://static.gowalla.com/categories/201-small-standard.png",
1400
+ "url": "/categories/201",
1401
+ "spot_categories": [],
1402
+ "description": ""
1403
+ },
1404
+ {
1405
+ "image_url": "http://static.gowalla.com/categories/229-standard.png",
1406
+ "name": "Flower Shop",
1407
+ "small_image_url": "http://static.gowalla.com/categories/229-small-standard.png",
1408
+ "url": "/categories/229",
1409
+ "spot_categories": [],
1410
+ "description": ""
1411
+ },
1412
+ {
1413
+ "image_url": "http://static.gowalla.com/categories/106-standard.png",
1414
+ "name": "Food & Foodies",
1415
+ "small_image_url": "http://static.gowalla.com/categories/106-small-standard.png",
1416
+ "url": "/categories/106",
1417
+ "spot_categories": [],
1418
+ "description": ""
1419
+ },
1420
+ {
1421
+ "image_url": "http://static.gowalla.com/categories/53-standard.png",
1422
+ "name": "Furniture",
1423
+ "small_image_url": "http://static.gowalla.com/categories/53-small-standard.png",
1424
+ "url": "/categories/53",
1425
+ "spot_categories": [],
1426
+ "description": ""
1427
+ },
1428
+ {
1429
+ "image_url": "http://static.gowalla.com/categories/119-standard.png",
1430
+ "name": "Gas & Automotive",
1431
+ "small_image_url": "http://static.gowalla.com/categories/119-small-standard.png",
1432
+ "url": "/categories/119",
1433
+ "spot_categories": [],
1434
+ "description": ""
1435
+ },
1436
+ {
1437
+ "image_url": "http://static.gowalla.com/categories/218-standard.png",
1438
+ "name": "Government",
1439
+ "small_image_url": "http://static.gowalla.com/categories/218-small-standard.png",
1440
+ "url": "/categories/218",
1441
+ "spot_categories": [
1442
+ {
1443
+ "image_url": "http://static.gowalla.com/categories/125-standard.png",
1444
+ "name": "City Hall",
1445
+ "small_image_url": "http://static.gowalla.com/categories/125-small-standard.png",
1446
+ "url": "/categories/125",
1447
+ "description": ""
1448
+ },
1449
+ {
1450
+ "image_url": "http://static.gowalla.com/categories/126-standard.png",
1451
+ "name": "Courthouse",
1452
+ "small_image_url": "http://static.gowalla.com/categories/126-small-standard.png",
1453
+ "url": "/categories/126",
1454
+ "description": ""
1455
+ },
1456
+ {
1457
+ "image_url": "http://static.gowalla.com/categories/182-standard.png",
1458
+ "name": "Fire Station",
1459
+ "small_image_url": "http://static.gowalla.com/categories/182-small-standard.png",
1460
+ "url": "/categories/182",
1461
+ "description": ""
1462
+ },
1463
+ {
1464
+ "image_url": "http://static.gowalla.com/categories/183-standard.png",
1465
+ "name": "Police Station",
1466
+ "small_image_url": "http://static.gowalla.com/categories/183-small-standard.png",
1467
+ "url": "/categories/183",
1468
+ "description": ""
1469
+ },
1470
+ {
1471
+ "image_url": "http://static.gowalla.com/categories/235-standard.png",
1472
+ "name": "Post Office",
1473
+ "small_image_url": "http://static.gowalla.com/categories/235-small-standard.png",
1474
+ "url": "/categories/235",
1475
+ "description": ""
1476
+ }
1477
+ ],
1478
+ "description": ""
1479
+ },
1480
+ {
1481
+ "image_url": "http://static.gowalla.com/categories/200-standard.png",
1482
+ "name": "Hardware Store",
1483
+ "small_image_url": "http://static.gowalla.com/categories/200-small-standard.png",
1484
+ "url": "/categories/200",
1485
+ "spot_categories": [],
1486
+ "description": ""
1487
+ },
1488
+ {
1489
+ "image_url": "http://static.gowalla.com/categories/118-standard.png",
1490
+ "name": "Health & Fitness",
1491
+ "small_image_url": "http://static.gowalla.com/categories/118-small-standard.png",
1492
+ "url": "/categories/118",
1493
+ "spot_categories": [],
1494
+ "description": ""
1495
+ },
1496
+ {
1497
+ "image_url": "http://static.gowalla.com/categories/11-standard.png",
1498
+ "name": "Mall",
1499
+ "small_image_url": "http://static.gowalla.com/categories/11-small-standard.png",
1500
+ "url": "/categories/11",
1501
+ "spot_categories": [],
1502
+ "description": ""
1503
+ },
1504
+ {
1505
+ "image_url": "http://static.gowalla.com/categories/191-standard.png",
1506
+ "name": "Medical",
1507
+ "small_image_url": "http://static.gowalla.com/categories/191-small-standard.png",
1508
+ "url": "/categories/191",
1509
+ "spot_categories": [
1510
+ {
1511
+ "image_url": "http://static.gowalla.com/categories/190-standard.png",
1512
+ "name": "Dentist",
1513
+ "small_image_url": "http://static.gowalla.com/categories/190-small-standard.png",
1514
+ "url": "/categories/190",
1515
+ "description": ""
1516
+ },
1517
+ {
1518
+ "image_url": "http://static.gowalla.com/categories/192-standard.png",
1519
+ "name": "Doctor's Office",
1520
+ "small_image_url": "http://static.gowalla.com/categories/192-small-standard.png",
1521
+ "url": "/categories/192",
1522
+ "description": ""
1523
+ },
1524
+ {
1525
+ "image_url": "http://static.gowalla.com/categories/201-standard.png",
1526
+ "name": "Drugstore & Pharmacy",
1527
+ "small_image_url": "http://static.gowalla.com/categories/201-small-standard.png",
1528
+ "url": "/categories/201",
1529
+ "description": ""
1530
+ },
1531
+ {
1532
+ "image_url": "http://static.gowalla.com/categories/132-standard.png",
1533
+ "name": "Hospital",
1534
+ "small_image_url": "http://static.gowalla.com/categories/132-small-standard.png",
1535
+ "url": "/categories/132",
1536
+ "description": ""
1537
+ },
1538
+ {
1539
+ "image_url": "http://static.gowalla.com/categories/210-standard.png",
1540
+ "name": "Other - Medical",
1541
+ "small_image_url": "http://static.gowalla.com/categories/210-small-standard.png",
1542
+ "url": "/categories/210",
1543
+ "description": ""
1544
+ }
1545
+ ],
1546
+ "description": ""
1547
+ },
1548
+ {
1549
+ "image_url": "http://static.gowalla.com/categories/242-standard.png",
1550
+ "name": "Movie Rental",
1551
+ "small_image_url": "http://static.gowalla.com/categories/242-small-standard.png",
1552
+ "url": "/categories/242",
1553
+ "spot_categories": [],
1554
+ "description": ""
1555
+ },
1556
+ {
1557
+ "image_url": "http://static.gowalla.com/categories/112-standard.png",
1558
+ "name": "Music",
1559
+ "small_image_url": "http://static.gowalla.com/categories/112-small-standard.png",
1560
+ "url": "/categories/112",
1561
+ "spot_categories": [],
1562
+ "description": ""
1563
+ },
1564
+ {
1565
+ "image_url": "http://static.gowalla.com/categories/217-standard.png",
1566
+ "name": "Other - Services",
1567
+ "small_image_url": "http://static.gowalla.com/categories/217-small-standard.png",
1568
+ "url": "/categories/217",
1569
+ "spot_categories": [],
1570
+ "description": ""
1571
+ },
1572
+ {
1573
+ "image_url": "http://static.gowalla.com/categories/54-standard.png",
1574
+ "name": "Other - Shopping",
1575
+ "small_image_url": "http://static.gowalla.com/categories/54-small-standard.png",
1576
+ "url": "/categories/54",
1577
+ "spot_categories": [],
1578
+ "description": ""
1579
+ },
1580
+ {
1581
+ "image_url": "http://static.gowalla.com/categories/163-standard.png",
1582
+ "name": "Paper Goods",
1583
+ "small_image_url": "http://static.gowalla.com/categories/163-small-standard.png",
1584
+ "url": "/categories/163",
1585
+ "spot_categories": [],
1586
+ "description": ""
1587
+ },
1588
+ {
1589
+ "image_url": "http://static.gowalla.com/categories/173-standard.png",
1590
+ "name": "Pet Store",
1591
+ "small_image_url": "http://static.gowalla.com/categories/173-small-standard.png",
1592
+ "url": "/categories/173",
1593
+ "spot_categories": [],
1594
+ "description": ""
1595
+ },
1596
+ {
1597
+ "image_url": "http://static.gowalla.com/categories/193-standard.png",
1598
+ "name": "Record Store",
1599
+ "small_image_url": "http://static.gowalla.com/categories/193-small-standard.png",
1600
+ "url": "/categories/193",
1601
+ "spot_categories": [],
1602
+ "description": ""
1603
+ },
1604
+ {
1605
+ "image_url": "http://static.gowalla.com/categories/227-standard.png",
1606
+ "name": "Rental Car",
1607
+ "small_image_url": "http://static.gowalla.com/categories/227-small-standard.png",
1608
+ "url": "/categories/227",
1609
+ "spot_categories": [],
1610
+ "description": ""
1611
+ },
1612
+ {
1613
+ "image_url": "http://static.gowalla.com/categories/117-standard.png",
1614
+ "name": "Salon & Barbershop",
1615
+ "small_image_url": "http://static.gowalla.com/categories/117-small-standard.png",
1616
+ "url": "/categories/117",
1617
+ "spot_categories": [],
1618
+ "description": ""
1619
+ },
1620
+ {
1621
+ "image_url": "http://static.gowalla.com/categories/61-standard.png",
1622
+ "name": "Sports & Outdoors",
1623
+ "small_image_url": "http://static.gowalla.com/categories/61-small-standard.png",
1624
+ "url": "/categories/61",
1625
+ "spot_categories": [],
1626
+ "description": ""
1627
+ },
1628
+ {
1629
+ "image_url": "http://static.gowalla.com/categories/36-standard.png",
1630
+ "name": "Technology",
1631
+ "small_image_url": "http://static.gowalla.com/categories/36-small-standard.png",
1632
+ "url": "/categories/36",
1633
+ "spot_categories": [],
1634
+ "description": ""
1635
+ },
1636
+ {
1637
+ "image_url": "http://static.gowalla.com/categories/34-standard.png",
1638
+ "name": "Thrift Store",
1639
+ "small_image_url": "http://static.gowalla.com/categories/34-small-standard.png",
1640
+ "url": "/categories/34",
1641
+ "spot_categories": [],
1642
+ "description": ""
1643
+ },
1644
+ {
1645
+ "image_url": "http://static.gowalla.com/categories/109-standard.png",
1646
+ "name": "Tobacco & Cigars",
1647
+ "small_image_url": "http://static.gowalla.com/categories/109-small-standard.png",
1648
+ "url": "/categories/109",
1649
+ "spot_categories": [],
1650
+ "description": ""
1651
+ },
1652
+ {
1653
+ "image_url": "http://static.gowalla.com/categories/62-standard.png",
1654
+ "name": "Toys & Games",
1655
+ "small_image_url": "http://static.gowalla.com/categories/62-small-standard.png",
1656
+ "url": "/categories/62",
1657
+ "spot_categories": [],
1658
+ "description": ""
1659
+ }
1660
+ ],
1661
+ "description": "Antiques, Foodies, Clothes, Toys"
1662
+ },
1663
+ {
1664
+ "image_url": "http://static.gowalla.com/categories/3-standard.png",
1665
+ "name": "Travel & Lodging",
1666
+ "small_image_url": "http://static.gowalla.com/categories/3-small-standard.png",
1667
+ "url": "/categories/3",
1668
+ "spot_categories": [
1669
+ {
1670
+ "image_url": "http://static.gowalla.com/categories/45-standard.png",
1671
+ "name": "Airport",
1672
+ "small_image_url": "http://static.gowalla.com/categories/45-small-standard.png",
1673
+ "url": "/categories/45",
1674
+ "spot_categories": [
1675
+ {
1676
+ "image_url": "http://static.gowalla.com/categories/225-standard.png",
1677
+ "name": "Gate",
1678
+ "small_image_url": "http://static.gowalla.com/categories/225-small-standard.png",
1679
+ "url": "/categories/225",
1680
+ "description": ""
1681
+ },
1682
+ {
1683
+ "image_url": "http://static.gowalla.com/categories/228-standard.png",
1684
+ "name": "Other - Airport",
1685
+ "small_image_url": "http://static.gowalla.com/categories/228-small-standard.png",
1686
+ "url": "/categories/228",
1687
+ "description": ""
1688
+ },
1689
+ {
1690
+ "image_url": "http://static.gowalla.com/categories/227-standard.png",
1691
+ "name": "Rental Car",
1692
+ "small_image_url": "http://static.gowalla.com/categories/227-small-standard.png",
1693
+ "url": "/categories/227",
1694
+ "description": ""
1695
+ },
1696
+ {
1697
+ "image_url": "http://static.gowalla.com/categories/224-standard.png",
1698
+ "name": "Terminal",
1699
+ "small_image_url": "http://static.gowalla.com/categories/224-small-standard.png",
1700
+ "url": "/categories/224",
1701
+ "description": ""
1702
+ },
1703
+ {
1704
+ "image_url": "http://static.gowalla.com/categories/226-standard.png",
1705
+ "name": "Tram",
1706
+ "small_image_url": "http://static.gowalla.com/categories/226-small-standard.png",
1707
+ "url": "/categories/226",
1708
+ "description": ""
1709
+ }
1710
+ ],
1711
+ "description": ""
1712
+ },
1713
+ {
1714
+ "image_url": "http://static.gowalla.com/categories/92-standard.png",
1715
+ "name": "Bed & Breakfast",
1716
+ "small_image_url": "http://static.gowalla.com/categories/92-small-standard.png",
1717
+ "url": "/categories/92",
1718
+ "spot_categories": [],
1719
+ "description": ""
1720
+ },
1721
+ {
1722
+ "image_url": "http://static.gowalla.com/categories/46-standard.png",
1723
+ "name": "Bus Station",
1724
+ "small_image_url": "http://static.gowalla.com/categories/46-small-standard.png",
1725
+ "url": "/categories/46",
1726
+ "spot_categories": [],
1727
+ "description": ""
1728
+ },
1729
+ {
1730
+ "image_url": "http://static.gowalla.com/categories/172-standard.png",
1731
+ "name": "Ferry",
1732
+ "small_image_url": "http://static.gowalla.com/categories/172-small-standard.png",
1733
+ "url": "/categories/172",
1734
+ "spot_categories": [],
1735
+ "description": ""
1736
+ },
1737
+ {
1738
+ "image_url": "http://static.gowalla.com/categories/93-standard.png",
1739
+ "name": "Hostel",
1740
+ "small_image_url": "http://static.gowalla.com/categories/93-small-standard.png",
1741
+ "url": "/categories/93",
1742
+ "spot_categories": [],
1743
+ "description": ""
1744
+ },
1745
+ {
1746
+ "image_url": "http://static.gowalla.com/categories/199-standard.png",
1747
+ "name": "Hotels & Motels",
1748
+ "small_image_url": "http://static.gowalla.com/categories/199-small-standard.png",
1749
+ "url": "/categories/199",
1750
+ "spot_categories": [
1751
+ {
1752
+ "image_url": "http://static.gowalla.com/categories/43-standard.png",
1753
+ "name": "Antique Hotel",
1754
+ "small_image_url": "http://static.gowalla.com/categories/43-small-standard.png",
1755
+ "url": "/categories/43",
1756
+ "description": ""
1757
+ },
1758
+ {
1759
+ "image_url": "http://static.gowalla.com/categories/49-standard.png",
1760
+ "name": "Luxury Hotel",
1761
+ "small_image_url": "http://static.gowalla.com/categories/49-small-standard.png",
1762
+ "url": "/categories/49",
1763
+ "description": ""
1764
+ },
1765
+ {
1766
+ "image_url": "http://static.gowalla.com/categories/47-standard.png",
1767
+ "name": "Modern Hotel",
1768
+ "small_image_url": "http://static.gowalla.com/categories/47-small-standard.png",
1769
+ "url": "/categories/47",
1770
+ "description": ""
1771
+ },
1772
+ {
1773
+ "image_url": "http://static.gowalla.com/categories/44-standard.png",
1774
+ "name": "Motel",
1775
+ "small_image_url": "http://static.gowalla.com/categories/44-small-standard.png",
1776
+ "url": "/categories/44",
1777
+ "description": ""
1778
+ }
1779
+ ],
1780
+ "description": ""
1781
+ },
1782
+ {
1783
+ "image_url": "http://static.gowalla.com/categories/94-standard.png",
1784
+ "name": "Light Rail",
1785
+ "small_image_url": "http://static.gowalla.com/categories/94-small-standard.png",
1786
+ "url": "/categories/94",
1787
+ "spot_categories": [],
1788
+ "description": ""
1789
+ },
1790
+ {
1791
+ "image_url": "http://static.gowalla.com/categories/57-standard.png",
1792
+ "name": "Other - Travel & Lodging",
1793
+ "small_image_url": "http://static.gowalla.com/categories/57-small-standard.png",
1794
+ "url": "/categories/57",
1795
+ "spot_categories": [],
1796
+ "description": ""
1797
+ },
1798
+ {
1799
+ "image_url": "http://static.gowalla.com/categories/48-standard.png",
1800
+ "name": "Resort",
1801
+ "small_image_url": "http://static.gowalla.com/categories/48-small-standard.png",
1802
+ "url": "/categories/48",
1803
+ "spot_categories": [],
1804
+ "description": ""
1805
+ },
1806
+ {
1807
+ "image_url": "http://static.gowalla.com/categories/164-standard.png",
1808
+ "name": "Subway",
1809
+ "small_image_url": "http://static.gowalla.com/categories/164-small-standard.png",
1810
+ "url": "/categories/164",
1811
+ "spot_categories": [],
1812
+ "description": ""
1813
+ },
1814
+ {
1815
+ "image_url": "http://static.gowalla.com/categories/95-standard.png",
1816
+ "name": "Train Station",
1817
+ "small_image_url": "http://static.gowalla.com/categories/95-small-standard.png",
1818
+ "url": "/categories/95",
1819
+ "spot_categories": [],
1820
+ "description": ""
1821
+ }
1822
+ ],
1823
+ "description": "Airport, Hotel, Train Station, Subway"
1824
+ }
1825
+ ]
1826
+ }