gowalla 0.0.1 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -1,23 +1,36 @@
1
1
  # Gowalla
2
2
 
3
- Ruby wrapper for (most) of the (unreleased) Gowalla API.
3
+ Ruby wrapper for the [Gowalla API](http://gowalla.com/api/docs).
4
4
 
5
- *Note: The Gowalla API is unannounced. This wrapper consumes what I've been able to sniff out using [Charles Proxy](http://www.charlesproxy.com/) and my iPhone.*
6
5
 
7
6
  ## Installation
8
7
 
9
8
  sudo gem install gowalla
10
9
 
10
+ ## Get your API key
11
+
12
+ Be sure and get your API key: [http://gowalla.com/api/keys](http://gowalla.com/api/keys)
13
+
11
14
  ## Usage
12
15
 
13
- ### Public requests
16
+ ### Instantiate a client
14
17
 
15
- >> Gowalla.user('pengwynn')
16
- => <#Hashie::Mash accept_url="/friendships/accept?user_id=1707" activity_url="/users/1707/events" bio="Web designer and Ruby developer." events_url="/users/1707/events" fb_id=605681706 first_name="Wynn" friends_count=27 friends_only=false friends_url="/users/1707/friends" hometown="Aubrey, TX" image_url="http://s3.amazonaws.com/static.gowalla.com/users/1707-standard.jpg?1262011383" is_friend=false items_count=5 items_url="/users/1707/items" last_name="Netherland" last_visit=<#Hashie::Mash comment="Closing every account I have " created_at="2010/01/26 15:31:46 +0000" spot=<#Hashie::Mash image_url="http://static.gowalla.com/categories/186-standard.png" name="Bank Of America" small_image_url="http://static.gowalla.com/categories/186-small-standard.png" url="/spots/164052">> name="Wynn Netherland" pins_count=3 pins_url="/users/1707/pins" reject_url="/friendships/reject?user_id=1707" request_url="/friendships/request?user_id=1707" stamps_count=15 stamps_url="/users/1707/stamps" top_spots_url="/users/1707/top_spots" twitter_username="pengwynn" url="/users/1707" username="pengwynn" vaulted_kinds_count=0 visited_spots_count=15 website="http://wynnnetherland.com">
18
+ >> gowalla = Gowalla::Client.new(:username => 'pengwynn', :password => 'somepassword', :api_key => 'your_api_key')
19
+
20
+ ### or configure once
21
+
22
+ >> Gowalla.configure do |config|
23
+ >> config.api_key = 'your_api_key'
24
+ >> config.api_key = 'pengwynn'
25
+ >> config.api_key = 'somepassword'
26
+ >> end
27
+ >> gowalla = Gowalla::Client.new
17
28
 
18
- ### Authenticated requests
29
+ #### Examples
19
30
 
20
- >> gowalla = Gowalla::Client.new('pengwynn', 'somepassword')
31
+ >> gowalla.user('pengwynn')
32
+ => <#Hashie::Mash accept_url="/friendships/accept?user_id=1707" activity_url="/users/1707/events" bio="Web designer and Ruby developer." events_url="/users/1707/events" fb_id=605681706 first_name="Wynn" friends_count=27 friends_only=false friends_url="/users/1707/friends" hometown="Aubrey, TX" image_url="http://s3.amazonaws.com/static.gowalla.com/users/1707-standard.jpg?1262011383" is_friend=false items_count=5 items_url="/users/1707/items" last_name="Netherland" last_visit=<#Hashie::Mash comment="Closing every account I have " created_at="2010/01/26 15:31:46 +0000" spot=<#Hashie::Mash image_url="http://static.gowalla.com/categories/186-standard.png" name="Bank Of America" small_image_url="http://static.gowalla.com/categories/186-small-standard.png" url="/spots/164052">> name="Wynn Netherland" pins_count=3 pins_url="/users/1707/pins" reject_url="/friendships/reject?user_id=1707" request_url="/friendships/request?user_id=1707" stamps_count=15 stamps_url="/users/1707/stamps" top_spots_url="/users/1707/top_spots" twitter_username="pengwynn" url="/users/1707" username="pengwynn" vaulted_kinds_count=0 visited_spots_count=15 website="http://wynnnetherland.com">
33
+
21
34
 
22
35
  #### Details for the current user
23
36
 
@@ -28,13 +41,7 @@ Ruby wrapper for (most) of the (unreleased) Gowalla API.
28
41
  >> gowalla.user('bradleyjoyce')
29
42
  >> gowalla.user(1707)
30
43
 
31
- Docs to come once the API is released. For now check out the source.
32
-
33
- TODO:
34
44
 
35
- * Create spots
36
- * Accept/reject friendship
37
- * Drop/pickup items
38
45
 
39
46
  ## Note on Patches/Pull Requests
40
47
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.1
1
+ 0.1.0
data/changelog.md CHANGED
@@ -1,4 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.0 February 8, 2010
4
+
5
+ * Updates for released API
6
+
3
7
  ## 0.0.1 January 28, 2010
4
8
  * Initial version
data/gowalla.gemspec ADDED
@@ -0,0 +1,95 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{gowalla}
8
+ s.version = "0.1.0"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Wynn Netherland"]
12
+ s.date = %q{2010-02-09}
13
+ s.description = %q{Ruby wrapper for the Gowalla API}
14
+ s.email = %q{wynn.netherland@gmail.com}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE",
17
+ "README.md"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ ".gitignore",
22
+ "LICENSE",
23
+ "README.md",
24
+ "Rakefile",
25
+ "VERSION",
26
+ "changelog.md",
27
+ "gowalla.gemspec",
28
+ "lib/gowalla.rb",
29
+ "lib/gowalla/client.rb",
30
+ "test/fixtures/categories.json",
31
+ "test/fixtures/category.json",
32
+ "test/fixtures/challenges.json",
33
+ "test/fixtures/events.json",
34
+ "test/fixtures/find_spots.json",
35
+ "test/fixtures/find_trips.json",
36
+ "test/fixtures/friend_requests.json",
37
+ "test/fixtures/friends.json",
38
+ "test/fixtures/friends_recent.json",
39
+ "test/fixtures/item.json",
40
+ "test/fixtures/items.json",
41
+ "test/fixtures/me.json",
42
+ "test/fixtures/new_spot.json",
43
+ "test/fixtures/pins.json",
44
+ "test/fixtures/potential_twitter_friends.json",
45
+ "test/fixtures/spot.json",
46
+ "test/fixtures/spots.json",
47
+ "test/fixtures/spots_by_category.json",
48
+ "test/fixtures/stamps.json",
49
+ "test/fixtures/top_spots.json",
50
+ "test/fixtures/trip.json",
51
+ "test/fixtures/trips.json",
52
+ "test/fixtures/user.json",
53
+ "test/fixtures/visited_spots.json",
54
+ "test/helper.rb",
55
+ "test/test_gowalla.rb"
56
+ ]
57
+ s.homepage = %q{http://github.com/pengwynn/gowalla}
58
+ s.rdoc_options = ["--charset=UTF-8"]
59
+ s.require_paths = ["lib"]
60
+ s.rubygems_version = %q{1.3.5}
61
+ s.summary = %q{Ruby wrapper for the Gowalla API}
62
+ s.test_files = [
63
+ "test/helper.rb",
64
+ "test/test_gowalla.rb"
65
+ ]
66
+
67
+ if s.respond_to? :specification_version then
68
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
69
+ s.specification_version = 3
70
+
71
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
72
+ s.add_runtime_dependency(%q<hashie>, [">= 0.1.3"])
73
+ s.add_runtime_dependency(%q<httparty>, [">= 0.5.0"])
74
+ s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 2.10.1"])
75
+ s.add_development_dependency(%q<jnunemaker-matchy>, ["= 0.4.0"])
76
+ s.add_development_dependency(%q<fakeweb>, [">= 1.2.5"])
77
+ s.add_development_dependency(%q<yard>, [">= 0"])
78
+ else
79
+ s.add_dependency(%q<hashie>, [">= 0.1.3"])
80
+ s.add_dependency(%q<httparty>, [">= 0.5.0"])
81
+ s.add_dependency(%q<thoughtbot-shoulda>, [">= 2.10.1"])
82
+ s.add_dependency(%q<jnunemaker-matchy>, ["= 0.4.0"])
83
+ s.add_dependency(%q<fakeweb>, [">= 1.2.5"])
84
+ s.add_dependency(%q<yard>, [">= 0"])
85
+ end
86
+ else
87
+ s.add_dependency(%q<hashie>, [">= 0.1.3"])
88
+ s.add_dependency(%q<httparty>, [">= 0.5.0"])
89
+ s.add_dependency(%q<thoughtbot-shoulda>, [">= 2.10.1"])
90
+ s.add_dependency(%q<jnunemaker-matchy>, ["= 0.4.0"])
91
+ s.add_dependency(%q<fakeweb>, [">= 1.2.5"])
92
+ s.add_dependency(%q<yard>, [">= 0"])
93
+ end
94
+ end
95
+
data/lib/gowalla.rb CHANGED
@@ -12,26 +12,51 @@ Hash.send :include, Hashie::HashExtensions
12
12
 
13
13
  module Gowalla
14
14
 
15
- def self.user(user_id)
16
- Gowalla::Client.new.user(user_id)
15
+ # config/initializers/gowalla.rb (for instance)
16
+ #
17
+ # Gowalla.configure do |config|
18
+ # config.api_key = 'api_key'
19
+ # config.username = 'username'
20
+ # config.password = 'password'
21
+ # end
22
+ #
23
+ # elsewhere
24
+ #
25
+ # client = Gowalla::Client.new
26
+ def self.configure
27
+ yield self
28
+
29
+ Gowalla.api_key = api_key
30
+ Gowalla.username = username
31
+ Gowalla.password = password
32
+ true
17
33
  end
18
34
 
19
- def self.events(user_id)
20
- Gowalla::Client.new.events(user_id)
35
+ def self.api_key
36
+ @api_key
21
37
  end
22
38
 
23
- def self.trip(trip_id)
24
- Gowalla::Client.new.trip(trip_id)
39
+ def self.api_key=(value)
40
+ @api_key = value
25
41
  end
26
42
 
27
- def self.spot(spot_id)
28
- Gowalla::Client.new.spot(spot_id)
43
+ def self.username
44
+ @username
29
45
  end
30
46
 
31
- def self.spot_events(spot_id)
32
- Gowalla::Client.new.spot_events(spot_id)
47
+ def self.username=(value)
48
+ @username = value
33
49
  end
34
50
 
51
+ def self.password
52
+ @password
53
+ end
54
+
55
+ def self.password=(value)
56
+ @password = value
57
+ end
58
+
59
+
35
60
  end
36
61
 
37
62
  require File.join(directory, 'gowalla', 'client')
@@ -8,12 +8,15 @@ module Gowalla
8
8
 
9
9
  attr_reader :username
10
10
 
11
- def initialize(username=nil, password=nil)
12
- @username = username
11
+ def initialize(options={})
12
+ api_key = options[:api_key] || Gowalla.api_key
13
+ @username = options[:username] || Gowalla.username
14
+ password = options[:password] || Gowalla.password
13
15
  self.class.basic_auth(@username, password) unless @username.nil?
16
+ self.class.headers({'X-Gowalla-API-Key' => api_key })
14
17
  end
15
18
 
16
- def user(user_id="me")
19
+ def user(user_id=self.username)
17
20
  mashup(self.class.get("/users/#{user_id}"))
18
21
  end
19
22
 
@@ -34,15 +37,19 @@ module Gowalla
34
37
  end
35
38
 
36
39
  def items(user_id=self.username)
37
- mashup(self.class.get("/users/#{user_id}/items"))
40
+ mashup(self.class.get("/users/#{user_id}/items")).items
41
+ end
42
+
43
+ def item(id)
44
+ mashup(self.class.get("/items/#{id}"))
38
45
  end
39
46
 
40
47
  def pins(user_id=self.username)
41
48
  mashup(self.class.get("/users/#{user_id}/pins"))
42
49
  end
43
50
 
44
- def stamps(user_id=self.username)
45
- mashup(self.class.get("/users/#{user_id}/stamps"))
51
+ def stamps(user_id=self.username, limit=20)
52
+ mashup(self.class.get("/users/#{user_id}/stamps", :query => {:limit => limit}))
46
53
  end
47
54
 
48
55
  def top_spots(user_id=self.username)
@@ -65,8 +72,55 @@ module Gowalla
65
72
  mashup(self.class.get("/spots/#{spot_id}/events")).events
66
73
  end
67
74
 
75
+ def spot_items(spot_id)
76
+ mashup(self.class.get("/spots/#{spot_id}/items")).items
77
+ end
78
+
79
+ def list_spots(options={})
80
+ query = format_geo_options(options)
81
+ mashup(self.class.get("/spots", :query => query)).spots
82
+ end
83
+
84
+ def featured_spots(options={})
85
+ list_spots(options.merge(:featured => 1))
86
+ end
87
+
88
+ def bookmarked_spots(options={})
89
+ list_spots(options.merge(:bookmarked => 1))
90
+ end
91
+
92
+ def trips(options={})
93
+ if user_id = options.delete(:user_id)
94
+ options[:user_url] = "/users/#{user_id}"
95
+ end
96
+ query = format_geo_options(options)
97
+ mashup(self.class.get("/trips", :query => query))
98
+ end
99
+
100
+ def featured_trips(options={})
101
+ trips(options.merge(:context => 'featured'))
102
+ end
103
+
104
+ def friends_trips(options={})
105
+ trips(options.merge(:context => 'friends'))
106
+ end
107
+
108
+ def categories
109
+ mashup(self.class.get("/categories"))
110
+ end
111
+
112
+ def category(id)
113
+ mashup(self.class.get("/categories/#{id}"))
114
+ end
115
+
68
116
  private
69
117
 
118
+ def format_geo_options(options={})
119
+ options[:lat] = "+#{options[:lat]}" if options[:lat].to_i > 0
120
+ options[:lng] = "+#{options[:lng]}" if options[:lng].to_i > 0
121
+ options
122
+ end
123
+
70
124
  def mashup(response)
71
125
  case response.code
72
126
  when 200
@@ -0,0 +1,2056 @@
1
+ [
2
+ {
3
+ "categories": [
4
+ {
5
+ "categories": [],
6
+ "description": "",
7
+ "id": 128,
8
+ "image_url": "http://static.gowalla.com/categories/128-standard.png",
9
+ "name": "Bridge",
10
+ "small_image_url": "http://static.gowalla.com/categories/128-small-standard.png",
11
+ "url": "/categories/128"
12
+ },
13
+ {
14
+ "categories": [],
15
+ "description": "",
16
+ "id": 185,
17
+ "image_url": "http://static.gowalla.com/categories/185-standard.png",
18
+ "name": "Castle",
19
+ "small_image_url": "http://static.gowalla.com/categories/185-small-standard.png",
20
+ "url": "/categories/185"
21
+ },
22
+ {
23
+ "categories": [],
24
+ "description": "",
25
+ "id": 121,
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
+ },
31
+ {
32
+ "categories": [],
33
+ "description": "",
34
+ "id": 126,
35
+ "image_url": "http://static.gowalla.com/categories/126-standard.png",
36
+ "name": "Courthouse",
37
+ "small_image_url": "http://static.gowalla.com/categories/126-small-standard.png",
38
+ "url": "/categories/126"
39
+ },
40
+ {
41
+ "categories": [],
42
+ "description": "",
43
+ "id": 150,
44
+ "image_url": "http://static.gowalla.com/categories/150-standard.png",
45
+ "name": "Fountain",
46
+ "small_image_url": "http://static.gowalla.com/categories/150-small-standard.png",
47
+ "url": "/categories/150"
48
+ },
49
+ {
50
+ "categories": [],
51
+ "description": "",
52
+ "id": 166,
53
+ "image_url": "http://static.gowalla.com/categories/166-standard.png",
54
+ "name": "Historic Landmark",
55
+ "small_image_url": "http://static.gowalla.com/categories/166-small-standard.png",
56
+ "url": "/categories/166"
57
+ },
58
+ {
59
+ "categories": [
60
+ {
61
+ "description": "",
62
+ "id": 20,
63
+ "image_url": "http://static.gowalla.com/categories/20-standard.png",
64
+ "name": "Apartment",
65
+ "small_image_url": "http://static.gowalla.com/categories/20-small-standard.png",
66
+ "url": "/categories/20"
67
+ },
68
+ {
69
+ "description": "",
70
+ "id": 29,
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
+ },
76
+ {
77
+ "description": "",
78
+ "id": 89,
79
+ "image_url": "http://static.gowalla.com/categories/89-standard.png",
80
+ "name": "Craftsman",
81
+ "small_image_url": "http://static.gowalla.com/categories/89-small-standard.png",
82
+ "url": "/categories/89"
83
+ },
84
+ {
85
+ "description": "",
86
+ "id": 87,
87
+ "image_url": "http://static.gowalla.com/categories/87-standard.png",
88
+ "name": "Duplex",
89
+ "small_image_url": "http://static.gowalla.com/categories/87-small-standard.png",
90
+ "url": "/categories/87"
91
+ },
92
+ {
93
+ "description": "",
94
+ "id": 90,
95
+ "image_url": "http://static.gowalla.com/categories/90-standard.png",
96
+ "name": "Modern",
97
+ "small_image_url": "http://static.gowalla.com/categories/90-small-standard.png",
98
+ "url": "/categories/90"
99
+ },
100
+ {
101
+ "description": "",
102
+ "id": 88,
103
+ "image_url": "http://static.gowalla.com/categories/88-standard.png",
104
+ "name": "Victorian",
105
+ "small_image_url": "http://static.gowalla.com/categories/88-small-standard.png",
106
+ "url": "/categories/88"
107
+ }
108
+ ],
109
+ "description": "",
110
+ "id": 21,
111
+ "image_url": "http://static.gowalla.com/categories/21-standard.png",
112
+ "name": "Home",
113
+ "small_image_url": "http://static.gowalla.com/categories/21-small-standard.png",
114
+ "url": "/categories/21"
115
+ },
116
+ {
117
+ "categories": [],
118
+ "description": "",
119
+ "id": 216,
120
+ "image_url": "http://static.gowalla.com/categories/216-standard.png",
121
+ "name": "Lighthouse",
122
+ "small_image_url": "http://static.gowalla.com/categories/216-small-standard.png",
123
+ "url": "/categories/216"
124
+ },
125
+ {
126
+ "categories": [],
127
+ "description": "",
128
+ "id": 69,
129
+ "image_url": "http://static.gowalla.com/categories/69-standard.png",
130
+ "name": "Mission",
131
+ "small_image_url": "http://static.gowalla.com/categories/69-small-standard.png",
132
+ "url": "/categories/69"
133
+ },
134
+ {
135
+ "categories": [],
136
+ "description": "",
137
+ "id": 60,
138
+ "image_url": "http://static.gowalla.com/categories/60-standard.png",
139
+ "name": "Other - Architecture",
140
+ "small_image_url": "http://static.gowalla.com/categories/60-small-standard.png",
141
+ "url": "/categories/60"
142
+ },
143
+ {
144
+ "categories": [
145
+ {
146
+ "description": "",
147
+ "id": 65,
148
+ "image_url": "http://static.gowalla.com/categories/65-standard.png",
149
+ "name": "Church",
150
+ "small_image_url": "http://static.gowalla.com/categories/65-small-standard.png",
151
+ "url": "/categories/65"
152
+ },
153
+ {
154
+ "description": "",
155
+ "id": 68,
156
+ "image_url": "http://static.gowalla.com/categories/68-standard.png",
157
+ "name": "Contemporary Church",
158
+ "small_image_url": "http://static.gowalla.com/categories/68-small-standard.png",
159
+ "url": "/categories/68"
160
+ },
161
+ {
162
+ "description": "",
163
+ "id": 22,
164
+ "image_url": "http://static.gowalla.com/categories/22-standard.png",
165
+ "name": "Historic Church",
166
+ "small_image_url": "http://static.gowalla.com/categories/22-small-standard.png",
167
+ "url": "/categories/22"
168
+ },
169
+ {
170
+ "description": "",
171
+ "id": 70,
172
+ "image_url": "http://static.gowalla.com/categories/70-standard.png",
173
+ "name": "Mosque",
174
+ "small_image_url": "http://static.gowalla.com/categories/70-small-standard.png",
175
+ "url": "/categories/70"
176
+ },
177
+ {
178
+ "description": "",
179
+ "id": 208,
180
+ "image_url": "http://static.gowalla.com/categories/208-standard.png",
181
+ "name": "Other - Place of Worship",
182
+ "small_image_url": "http://static.gowalla.com/categories/208-small-standard.png",
183
+ "url": "/categories/208"
184
+ },
185
+ {
186
+ "description": "",
187
+ "id": 71,
188
+ "image_url": "http://static.gowalla.com/categories/71-standard.png",
189
+ "name": "Synagogue",
190
+ "small_image_url": "http://static.gowalla.com/categories/71-small-standard.png",
191
+ "url": "/categories/71"
192
+ },
193
+ {
194
+ "description": "",
195
+ "id": 184,
196
+ "image_url": "http://static.gowalla.com/categories/184-standard.png",
197
+ "name": "Temple",
198
+ "small_image_url": "http://static.gowalla.com/categories/184-small-standard.png",
199
+ "url": "/categories/184"
200
+ }
201
+ ],
202
+ "description": "",
203
+ "id": 205,
204
+ "image_url": "http://static.gowalla.com/categories/205-standard.png",
205
+ "name": "Place of Worship",
206
+ "small_image_url": "http://static.gowalla.com/categories/205-small-standard.png",
207
+ "url": "/categories/205"
208
+ },
209
+ {
210
+ "categories": [],
211
+ "description": "",
212
+ "id": 165,
213
+ "image_url": "http://static.gowalla.com/categories/165-standard.png",
214
+ "name": "Plaza / Square",
215
+ "small_image_url": "http://static.gowalla.com/categories/165-small-standard.png",
216
+ "url": "/categories/165"
217
+ },
218
+ {
219
+ "categories": [],
220
+ "description": "",
221
+ "id": 23,
222
+ "image_url": "http://static.gowalla.com/categories/23-standard.png",
223
+ "name": "Skyscraper",
224
+ "small_image_url": "http://static.gowalla.com/categories/23-small-standard.png",
225
+ "url": "/categories/23"
226
+ },
227
+ {
228
+ "categories": [],
229
+ "description": "",
230
+ "id": 146,
231
+ "image_url": "http://static.gowalla.com/categories/146-standard.png",
232
+ "name": "Tower",
233
+ "small_image_url": "http://static.gowalla.com/categories/146-small-standard.png",
234
+ "url": "/categories/146"
235
+ },
236
+ {
237
+ "categories": [],
238
+ "description": "",
239
+ "id": 170,
240
+ "image_url": "http://static.gowalla.com/categories/170-standard.png",
241
+ "name": "Warehouse & Industrial",
242
+ "small_image_url": "http://static.gowalla.com/categories/170-small-standard.png",
243
+ "url": "/categories/170"
244
+ }
245
+ ],
246
+ "description": "Bridge, Corporate, Home, Church, etc.",
247
+ "id": 13,
248
+ "image_url": "http://static.gowalla.com/categories/13-standard.png",
249
+ "name": "Architecture & Buildings",
250
+ "small_image_url": "http://static.gowalla.com/categories/13-small-standard.png",
251
+ "url": "/categories/13"
252
+ },
253
+ {
254
+ "categories": [
255
+ {
256
+ "categories": [],
257
+ "description": "",
258
+ "id": 188,
259
+ "image_url": "http://static.gowalla.com/categories/188-standard.png",
260
+ "name": "Gallery",
261
+ "small_image_url": "http://static.gowalla.com/categories/188-small-standard.png",
262
+ "url": "/categories/188"
263
+ },
264
+ {
265
+ "categories": [],
266
+ "description": "",
267
+ "id": 102,
268
+ "image_url": "http://static.gowalla.com/categories/102-standard.png",
269
+ "name": "Library",
270
+ "small_image_url": "http://static.gowalla.com/categories/102-small-standard.png",
271
+ "url": "/categories/102"
272
+ },
273
+ {
274
+ "categories": [],
275
+ "description": "",
276
+ "id": 63,
277
+ "image_url": "http://static.gowalla.com/categories/63-standard.png",
278
+ "name": "Monument",
279
+ "small_image_url": "http://static.gowalla.com/categories/63-small-standard.png",
280
+ "url": "/categories/63"
281
+ },
282
+ {
283
+ "categories": [
284
+ {
285
+ "description": "",
286
+ "id": 72,
287
+ "image_url": "http://static.gowalla.com/categories/72-standard.png",
288
+ "name": "Asian Art Museum",
289
+ "small_image_url": "http://static.gowalla.com/categories/72-small-standard.png",
290
+ "url": "/categories/72"
291
+ },
292
+ {
293
+ "description": "",
294
+ "id": 73,
295
+ "image_url": "http://static.gowalla.com/categories/73-standard.png",
296
+ "name": "History Museum",
297
+ "small_image_url": "http://static.gowalla.com/categories/73-small-standard.png",
298
+ "url": "/categories/73"
299
+ },
300
+ {
301
+ "description": "",
302
+ "id": 52,
303
+ "image_url": "http://static.gowalla.com/categories/52-standard.png",
304
+ "name": "Modern Art Museum",
305
+ "small_image_url": "http://static.gowalla.com/categories/52-small-standard.png",
306
+ "url": "/categories/52"
307
+ },
308
+ {
309
+ "description": "",
310
+ "id": 212,
311
+ "image_url": "http://static.gowalla.com/categories/212-standard.png",
312
+ "name": "Science Museum",
313
+ "small_image_url": "http://static.gowalla.com/categories/212-small-standard.png",
314
+ "url": "/categories/212"
315
+ },
316
+ {
317
+ "description": "",
318
+ "id": 50,
319
+ "image_url": "http://static.gowalla.com/categories/50-standard.png",
320
+ "name": "Traditional Art Museum",
321
+ "small_image_url": "http://static.gowalla.com/categories/50-small-standard.png",
322
+ "url": "/categories/50"
323
+ }
324
+ ],
325
+ "description": "",
326
+ "id": 207,
327
+ "image_url": "http://static.gowalla.com/categories/207-standard.png",
328
+ "name": "Museum",
329
+ "small_image_url": "http://static.gowalla.com/categories/207-small-standard.png",
330
+ "url": "/categories/207"
331
+ },
332
+ {
333
+ "categories": [],
334
+ "description": "",
335
+ "id": 59,
336
+ "image_url": "http://static.gowalla.com/categories/59-standard.png",
337
+ "name": "Other - Art & Culture",
338
+ "small_image_url": "http://static.gowalla.com/categories/59-small-standard.png",
339
+ "url": "/categories/59"
340
+ },
341
+ {
342
+ "categories": [],
343
+ "description": "",
344
+ "id": 213,
345
+ "image_url": "http://static.gowalla.com/categories/213-standard.png",
346
+ "name": "Planetarium",
347
+ "small_image_url": "http://static.gowalla.com/categories/213-small-standard.png",
348
+ "url": "/categories/213"
349
+ },
350
+ {
351
+ "categories": [],
352
+ "description": "",
353
+ "id": 51,
354
+ "image_url": "http://static.gowalla.com/categories/51-standard.png",
355
+ "name": "Sculpture",
356
+ "small_image_url": "http://static.gowalla.com/categories/51-small-standard.png",
357
+ "url": "/categories/51"
358
+ }
359
+ ],
360
+ "description": "Library, Monument, Museum, Sculpture",
361
+ "id": 2,
362
+ "image_url": "http://static.gowalla.com/categories/2-standard.png",
363
+ "name": "Art & Culture",
364
+ "small_image_url": "http://static.gowalla.com/categories/2-small-standard.png",
365
+ "url": "/categories/2"
366
+ },
367
+ {
368
+ "categories": [
369
+ {
370
+ "categories": [],
371
+ "description": "",
372
+ "id": 135,
373
+ "image_url": "http://static.gowalla.com/categories/135-standard.png",
374
+ "name": "Administration",
375
+ "small_image_url": "http://static.gowalla.com/categories/135-small-standard.png",
376
+ "url": "/categories/135"
377
+ },
378
+ {
379
+ "categories": [],
380
+ "description": "",
381
+ "id": 137,
382
+ "image_url": "http://static.gowalla.com/categories/137-standard.png",
383
+ "name": "Aquatics",
384
+ "small_image_url": "http://static.gowalla.com/categories/137-small-standard.png",
385
+ "url": "/categories/137"
386
+ },
387
+ {
388
+ "categories": [],
389
+ "description": "",
390
+ "id": 136,
391
+ "image_url": "http://static.gowalla.com/categories/136-standard.png",
392
+ "name": "Arts",
393
+ "small_image_url": "http://static.gowalla.com/categories/136-small-standard.png",
394
+ "url": "/categories/136"
395
+ },
396
+ {
397
+ "categories": [],
398
+ "description": "",
399
+ "id": 96,
400
+ "image_url": "http://static.gowalla.com/categories/96-standard.png",
401
+ "name": "Bookstore",
402
+ "small_image_url": "http://static.gowalla.com/categories/96-small-standard.png",
403
+ "url": "/categories/96"
404
+ },
405
+ {
406
+ "categories": [],
407
+ "description": "",
408
+ "id": 138,
409
+ "image_url": "http://static.gowalla.com/categories/138-standard.png",
410
+ "name": "Campus Commons",
411
+ "small_image_url": "http://static.gowalla.com/categories/138-small-standard.png",
412
+ "url": "/categories/138"
413
+ },
414
+ {
415
+ "categories": [],
416
+ "description": "",
417
+ "id": 149,
418
+ "image_url": "http://static.gowalla.com/categories/149-standard.png",
419
+ "name": "County College",
420
+ "small_image_url": "http://static.gowalla.com/categories/149-small-standard.png",
421
+ "url": "/categories/149"
422
+ },
423
+ {
424
+ "categories": [],
425
+ "description": "",
426
+ "id": 139,
427
+ "image_url": "http://static.gowalla.com/categories/139-standard.png",
428
+ "name": "Dormitory",
429
+ "small_image_url": "http://static.gowalla.com/categories/139-small-standard.png",
430
+ "url": "/categories/139"
431
+ },
432
+ {
433
+ "categories": [],
434
+ "description": "",
435
+ "id": 150,
436
+ "image_url": "http://static.gowalla.com/categories/150-standard.png",
437
+ "name": "Fountain",
438
+ "small_image_url": "http://static.gowalla.com/categories/150-small-standard.png",
439
+ "url": "/categories/150"
440
+ },
441
+ {
442
+ "categories": [],
443
+ "description": "",
444
+ "id": 140,
445
+ "image_url": "http://static.gowalla.com/categories/140-standard.png",
446
+ "name": "Frat House",
447
+ "small_image_url": "http://static.gowalla.com/categories/140-small-standard.png",
448
+ "url": "/categories/140"
449
+ },
450
+ {
451
+ "categories": [],
452
+ "description": "",
453
+ "id": 141,
454
+ "image_url": "http://static.gowalla.com/categories/141-standard.png",
455
+ "name": "Hall",
456
+ "small_image_url": "http://static.gowalla.com/categories/141-small-standard.png",
457
+ "url": "/categories/141"
458
+ },
459
+ {
460
+ "categories": [],
461
+ "description": "",
462
+ "id": 152,
463
+ "image_url": "http://static.gowalla.com/categories/152-standard.png",
464
+ "name": "High School",
465
+ "small_image_url": "http://static.gowalla.com/categories/152-small-standard.png",
466
+ "url": "/categories/152"
467
+ },
468
+ {
469
+ "categories": [],
470
+ "description": "",
471
+ "id": 142,
472
+ "image_url": "http://static.gowalla.com/categories/142-standard.png",
473
+ "name": "Lab",
474
+ "small_image_url": "http://static.gowalla.com/categories/142-small-standard.png",
475
+ "url": "/categories/142"
476
+ },
477
+ {
478
+ "categories": [],
479
+ "description": "",
480
+ "id": 147,
481
+ "image_url": "http://static.gowalla.com/categories/147-standard.png",
482
+ "name": "Law School",
483
+ "small_image_url": "http://static.gowalla.com/categories/147-small-standard.png",
484
+ "url": "/categories/147"
485
+ },
486
+ {
487
+ "categories": [],
488
+ "description": "",
489
+ "id": 102,
490
+ "image_url": "http://static.gowalla.com/categories/102-standard.png",
491
+ "name": "Library",
492
+ "small_image_url": "http://static.gowalla.com/categories/102-small-standard.png",
493
+ "url": "/categories/102"
494
+ },
495
+ {
496
+ "categories": [],
497
+ "description": "",
498
+ "id": 148,
499
+ "image_url": "http://static.gowalla.com/categories/148-standard.png",
500
+ "name": "Medical School",
501
+ "small_image_url": "http://static.gowalla.com/categories/148-small-standard.png",
502
+ "url": "/categories/148"
503
+ },
504
+ {
505
+ "categories": [],
506
+ "description": "",
507
+ "id": 153,
508
+ "image_url": "http://static.gowalla.com/categories/153-standard.png",
509
+ "name": "Other - College & Education",
510
+ "small_image_url": "http://static.gowalla.com/categories/153-small-standard.png",
511
+ "url": "/categories/153"
512
+ },
513
+ {
514
+ "categories": [],
515
+ "description": "",
516
+ "id": 143,
517
+ "image_url": "http://static.gowalla.com/categories/143-standard.png",
518
+ "name": "Rec Center",
519
+ "small_image_url": "http://static.gowalla.com/categories/143-small-standard.png",
520
+ "url": "/categories/143"
521
+ },
522
+ {
523
+ "categories": [],
524
+ "description": "",
525
+ "id": 144,
526
+ "image_url": "http://static.gowalla.com/categories/144-standard.png",
527
+ "name": "Sorority House",
528
+ "small_image_url": "http://static.gowalla.com/categories/144-small-standard.png",
529
+ "url": "/categories/144"
530
+ },
531
+ {
532
+ "categories": [],
533
+ "description": "",
534
+ "id": 79,
535
+ "image_url": "http://static.gowalla.com/categories/79-standard.png",
536
+ "name": "Stadium",
537
+ "small_image_url": "http://static.gowalla.com/categories/79-small-standard.png",
538
+ "url": "/categories/79"
539
+ },
540
+ {
541
+ "categories": [],
542
+ "description": "",
543
+ "id": 145,
544
+ "image_url": "http://static.gowalla.com/categories/145-standard.png",
545
+ "name": "Student Center",
546
+ "small_image_url": "http://static.gowalla.com/categories/145-small-standard.png",
547
+ "url": "/categories/145"
548
+ },
549
+ {
550
+ "categories": [],
551
+ "description": "",
552
+ "id": 103,
553
+ "image_url": "http://static.gowalla.com/categories/103-standard.png",
554
+ "name": "Theatre",
555
+ "small_image_url": "http://static.gowalla.com/categories/103-small-standard.png",
556
+ "url": "/categories/103"
557
+ },
558
+ {
559
+ "categories": [],
560
+ "description": "",
561
+ "id": 146,
562
+ "image_url": "http://static.gowalla.com/categories/146-standard.png",
563
+ "name": "Tower",
564
+ "small_image_url": "http://static.gowalla.com/categories/146-small-standard.png",
565
+ "url": "/categories/146"
566
+ },
567
+ {
568
+ "categories": [],
569
+ "description": "",
570
+ "id": 151,
571
+ "image_url": "http://static.gowalla.com/categories/151-standard.png",
572
+ "name": "Trade/Tech School",
573
+ "small_image_url": "http://static.gowalla.com/categories/151-small-standard.png",
574
+ "url": "/categories/151"
575
+ }
576
+ ],
577
+ "description": "Dorm, Stadium, High School, Commons",
578
+ "id": 133,
579
+ "image_url": "http://static.gowalla.com/categories/133-standard.png",
580
+ "name": "College & Education",
581
+ "small_image_url": "http://static.gowalla.com/categories/133-small-standard.png",
582
+ "url": "/categories/133"
583
+ },
584
+ {
585
+ "categories": [
586
+ {
587
+ "categories": [],
588
+ "description": "",
589
+ "id": 76,
590
+ "image_url": "http://static.gowalla.com/categories/76-standard.png",
591
+ "name": "Aquarium",
592
+ "small_image_url": "http://static.gowalla.com/categories/76-small-standard.png",
593
+ "url": "/categories/76"
594
+ },
595
+ {
596
+ "categories": [],
597
+ "description": "",
598
+ "id": 74,
599
+ "image_url": "http://static.gowalla.com/categories/74-standard.png",
600
+ "name": "Arcade",
601
+ "small_image_url": "http://static.gowalla.com/categories/74-small-standard.png",
602
+ "url": "/categories/74"
603
+ },
604
+ {
605
+ "categories": [],
606
+ "description": "",
607
+ "id": 215,
608
+ "image_url": "http://static.gowalla.com/categories/215-standard.png",
609
+ "name": "Bowling",
610
+ "small_image_url": "http://static.gowalla.com/categories/215-small-standard.png",
611
+ "url": "/categories/215"
612
+ },
613
+ {
614
+ "categories": [],
615
+ "description": "",
616
+ "id": 77,
617
+ "image_url": "http://static.gowalla.com/categories/77-standard.png",
618
+ "name": "Casino",
619
+ "small_image_url": "http://static.gowalla.com/categories/77-small-standard.png",
620
+ "url": "/categories/77"
621
+ },
622
+ {
623
+ "categories": [],
624
+ "description": "",
625
+ "id": 30,
626
+ "image_url": "http://static.gowalla.com/categories/30-standard.png",
627
+ "name": "Cineplex",
628
+ "small_image_url": "http://static.gowalla.com/categories/30-small-standard.png",
629
+ "url": "/categories/30"
630
+ },
631
+ {
632
+ "categories": [],
633
+ "description": "",
634
+ "id": 32,
635
+ "image_url": "http://static.gowalla.com/categories/32-standard.png",
636
+ "name": "Live Music",
637
+ "small_image_url": "http://static.gowalla.com/categories/32-small-standard.png",
638
+ "url": "/categories/32"
639
+ },
640
+ {
641
+ "categories": [],
642
+ "description": "",
643
+ "id": 58,
644
+ "image_url": "http://static.gowalla.com/categories/58-standard.png",
645
+ "name": "Other - Entertainment",
646
+ "small_image_url": "http://static.gowalla.com/categories/58-small-standard.png",
647
+ "url": "/categories/58"
648
+ },
649
+ {
650
+ "categories": [],
651
+ "description": "",
652
+ "id": 31,
653
+ "image_url": "http://static.gowalla.com/categories/31-standard.png",
654
+ "name": "Performing Arts",
655
+ "small_image_url": "http://static.gowalla.com/categories/31-small-standard.png",
656
+ "url": "/categories/31"
657
+ },
658
+ {
659
+ "categories": [],
660
+ "description": "",
661
+ "id": 78,
662
+ "image_url": "http://static.gowalla.com/categories/78-standard.png",
663
+ "name": "Racetrack",
664
+ "small_image_url": "http://static.gowalla.com/categories/78-small-standard.png",
665
+ "url": "/categories/78"
666
+ },
667
+ {
668
+ "categories": [],
669
+ "description": "",
670
+ "id": 79,
671
+ "image_url": "http://static.gowalla.com/categories/79-standard.png",
672
+ "name": "Stadium",
673
+ "small_image_url": "http://static.gowalla.com/categories/79-small-standard.png",
674
+ "url": "/categories/79"
675
+ },
676
+ {
677
+ "categories": [],
678
+ "description": "",
679
+ "id": 103,
680
+ "image_url": "http://static.gowalla.com/categories/103-standard.png",
681
+ "name": "Theatre",
682
+ "small_image_url": "http://static.gowalla.com/categories/103-small-standard.png",
683
+ "url": "/categories/103"
684
+ },
685
+ {
686
+ "categories": [],
687
+ "description": "",
688
+ "id": 75,
689
+ "image_url": "http://static.gowalla.com/categories/75-standard.png",
690
+ "name": "Theme Park",
691
+ "small_image_url": "http://static.gowalla.com/categories/75-small-standard.png",
692
+ "url": "/categories/75"
693
+ },
694
+ {
695
+ "categories": [],
696
+ "description": "",
697
+ "id": 33,
698
+ "image_url": "http://static.gowalla.com/categories/33-standard.png",
699
+ "name": "Zoo",
700
+ "small_image_url": "http://static.gowalla.com/categories/33-small-standard.png",
701
+ "url": "/categories/33"
702
+ }
703
+ ],
704
+ "description": "Aquarium, Casino, Theatre, Zoo",
705
+ "id": 12,
706
+ "image_url": "http://static.gowalla.com/categories/12-standard.png",
707
+ "name": "Entertainment",
708
+ "small_image_url": "http://static.gowalla.com/categories/12-small-standard.png",
709
+ "url": "/categories/12"
710
+ },
711
+ {
712
+ "categories": [
713
+ {
714
+ "categories": [],
715
+ "description": "",
716
+ "id": 84,
717
+ "image_url": "http://static.gowalla.com/categories/84-standard.png",
718
+ "name": "African",
719
+ "small_image_url": "http://static.gowalla.com/categories/84-small-standard.png",
720
+ "url": "/categories/84"
721
+ },
722
+ {
723
+ "categories": [],
724
+ "description": "",
725
+ "id": 16,
726
+ "image_url": "http://static.gowalla.com/categories/16-standard.png",
727
+ "name": "American",
728
+ "small_image_url": "http://static.gowalla.com/categories/16-small-standard.png",
729
+ "url": "/categories/16"
730
+ },
731
+ {
732
+ "categories": [],
733
+ "description": "",
734
+ "id": 18,
735
+ "image_url": "http://static.gowalla.com/categories/18-standard.png",
736
+ "name": "Asian",
737
+ "small_image_url": "http://static.gowalla.com/categories/18-small-standard.png",
738
+ "url": "/categories/18"
739
+ },
740
+ {
741
+ "categories": [],
742
+ "description": "",
743
+ "id": 110,
744
+ "image_url": "http://static.gowalla.com/categories/110-standard.png",
745
+ "name": "Bakery",
746
+ "small_image_url": "http://static.gowalla.com/categories/110-small-standard.png",
747
+ "url": "/categories/110"
748
+ },
749
+ {
750
+ "categories": [],
751
+ "description": "",
752
+ "id": 17,
753
+ "image_url": "http://static.gowalla.com/categories/17-standard.png",
754
+ "name": "BBQ",
755
+ "small_image_url": "http://static.gowalla.com/categories/17-small-standard.png",
756
+ "url": "/categories/17"
757
+ },
758
+ {
759
+ "categories": [],
760
+ "description": "",
761
+ "id": 123,
762
+ "image_url": "http://static.gowalla.com/categories/123-standard.png",
763
+ "name": "Breakfast",
764
+ "small_image_url": "http://static.gowalla.com/categories/123-small-standard.png",
765
+ "url": "/categories/123"
766
+ },
767
+ {
768
+ "categories": [],
769
+ "description": "",
770
+ "id": 167,
771
+ "image_url": "http://static.gowalla.com/categories/167-standard.png",
772
+ "name": "Brewery / Microbrewery",
773
+ "small_image_url": "http://static.gowalla.com/categories/167-small-standard.png",
774
+ "url": "/categories/167"
775
+ },
776
+ {
777
+ "categories": [],
778
+ "description": "",
779
+ "id": 154,
780
+ "image_url": "http://static.gowalla.com/categories/154-standard.png",
781
+ "name": "Burgers",
782
+ "small_image_url": "http://static.gowalla.com/categories/154-small-standard.png",
783
+ "url": "/categories/154"
784
+ },
785
+ {
786
+ "categories": [],
787
+ "description": "",
788
+ "id": 1,
789
+ "image_url": "http://static.gowalla.com/categories/1-standard.png",
790
+ "name": "Coffee Shop",
791
+ "small_image_url": "http://static.gowalla.com/categories/1-small-standard.png",
792
+ "url": "/categories/1"
793
+ },
794
+ {
795
+ "categories": [],
796
+ "description": "",
797
+ "id": 80,
798
+ "image_url": "http://static.gowalla.com/categories/80-standard.png",
799
+ "name": "Dessert",
800
+ "small_image_url": "http://static.gowalla.com/categories/80-small-standard.png",
801
+ "url": "/categories/80"
802
+ },
803
+ {
804
+ "categories": [],
805
+ "description": "",
806
+ "id": 124,
807
+ "image_url": "http://static.gowalla.com/categories/124-standard.png",
808
+ "name": "Diner",
809
+ "small_image_url": "http://static.gowalla.com/categories/124-small-standard.png",
810
+ "url": "/categories/124"
811
+ },
812
+ {
813
+ "categories": [],
814
+ "description": "",
815
+ "id": 236,
816
+ "image_url": "http://static.gowalla.com/categories/236-standard.png",
817
+ "name": "Fine Dining",
818
+ "small_image_url": "http://static.gowalla.com/categories/236-small-standard.png",
819
+ "url": "/categories/236"
820
+ },
821
+ {
822
+ "categories": [],
823
+ "description": "",
824
+ "id": 82,
825
+ "image_url": "http://static.gowalla.com/categories/82-standard.png",
826
+ "name": "French",
827
+ "small_image_url": "http://static.gowalla.com/categories/82-small-standard.png",
828
+ "url": "/categories/82"
829
+ },
830
+ {
831
+ "categories": [],
832
+ "description": "",
833
+ "id": 160,
834
+ "image_url": "http://static.gowalla.com/categories/160-standard.png",
835
+ "name": "Indian",
836
+ "small_image_url": "http://static.gowalla.com/categories/160-small-standard.png",
837
+ "url": "/categories/160"
838
+ },
839
+ {
840
+ "categories": [],
841
+ "description": "",
842
+ "id": 19,
843
+ "image_url": "http://static.gowalla.com/categories/19-standard.png",
844
+ "name": "Italian",
845
+ "small_image_url": "http://static.gowalla.com/categories/19-small-standard.png",
846
+ "url": "/categories/19"
847
+ },
848
+ {
849
+ "categories": [],
850
+ "description": "",
851
+ "id": 98,
852
+ "image_url": "http://static.gowalla.com/categories/98-standard.png",
853
+ "name": "Mediterranean",
854
+ "small_image_url": "http://static.gowalla.com/categories/98-small-standard.png",
855
+ "url": "/categories/98"
856
+ },
857
+ {
858
+ "categories": [],
859
+ "description": "",
860
+ "id": 15,
861
+ "image_url": "http://static.gowalla.com/categories/15-standard.png",
862
+ "name": "Mexican",
863
+ "small_image_url": "http://static.gowalla.com/categories/15-small-standard.png",
864
+ "url": "/categories/15"
865
+ },
866
+ {
867
+ "categories": [],
868
+ "description": "",
869
+ "id": 83,
870
+ "image_url": "http://static.gowalla.com/categories/83-standard.png",
871
+ "name": "Middle Eastern",
872
+ "small_image_url": "http://static.gowalla.com/categories/83-small-standard.png",
873
+ "url": "/categories/83"
874
+ },
875
+ {
876
+ "categories": [],
877
+ "description": "",
878
+ "id": 64,
879
+ "image_url": "http://static.gowalla.com/categories/64-standard.png",
880
+ "name": "Other - Food ",
881
+ "small_image_url": "http://static.gowalla.com/categories/64-small-standard.png",
882
+ "url": "/categories/64"
883
+ },
884
+ {
885
+ "categories": [],
886
+ "description": "",
887
+ "id": 85,
888
+ "image_url": "http://static.gowalla.com/categories/85-standard.png",
889
+ "name": "Pan Pacific",
890
+ "small_image_url": "http://static.gowalla.com/categories/85-small-standard.png",
891
+ "url": "/categories/85"
892
+ },
893
+ {
894
+ "categories": [],
895
+ "description": "",
896
+ "id": 155,
897
+ "image_url": "http://static.gowalla.com/categories/155-standard.png",
898
+ "name": "Pizza",
899
+ "small_image_url": "http://static.gowalla.com/categories/155-small-standard.png",
900
+ "url": "/categories/155"
901
+ },
902
+ {
903
+ "categories": [],
904
+ "description": "",
905
+ "id": 101,
906
+ "image_url": "http://static.gowalla.com/categories/101-standard.png",
907
+ "name": "Sandwich Shop",
908
+ "small_image_url": "http://static.gowalla.com/categories/101-small-standard.png",
909
+ "url": "/categories/101"
910
+ },
911
+ {
912
+ "categories": [],
913
+ "description": "",
914
+ "id": 86,
915
+ "image_url": "http://static.gowalla.com/categories/86-standard.png",
916
+ "name": "Seafood",
917
+ "small_image_url": "http://static.gowalla.com/categories/86-small-standard.png",
918
+ "url": "/categories/86"
919
+ },
920
+ {
921
+ "categories": [],
922
+ "description": "",
923
+ "id": 237,
924
+ "image_url": "http://static.gowalla.com/categories/237-standard.png",
925
+ "name": "Soul Food",
926
+ "small_image_url": "http://static.gowalla.com/categories/237-small-standard.png",
927
+ "url": "/categories/237"
928
+ },
929
+ {
930
+ "categories": [],
931
+ "description": "",
932
+ "id": 81,
933
+ "image_url": "http://static.gowalla.com/categories/81-standard.png",
934
+ "name": "South American / Latin",
935
+ "small_image_url": "http://static.gowalla.com/categories/81-small-standard.png",
936
+ "url": "/categories/81"
937
+ },
938
+ {
939
+ "categories": [],
940
+ "description": "",
941
+ "id": 100,
942
+ "image_url": "http://static.gowalla.com/categories/100-standard.png",
943
+ "name": "Steakhouse",
944
+ "small_image_url": "http://static.gowalla.com/categories/100-small-standard.png",
945
+ "url": "/categories/100"
946
+ },
947
+ {
948
+ "categories": [
949
+ {
950
+ "description": "",
951
+ "id": 187,
952
+ "image_url": "http://static.gowalla.com/categories/187-standard.png",
953
+ "name": "Brat / Sausage Kiosk",
954
+ "small_image_url": "http://static.gowalla.com/categories/187-small-standard.png",
955
+ "url": "/categories/187"
956
+ },
957
+ {
958
+ "description": "",
959
+ "id": 206,
960
+ "image_url": "http://static.gowalla.com/categories/206-standard.png",
961
+ "name": "Donuts",
962
+ "small_image_url": "http://static.gowalla.com/categories/206-small-standard.png",
963
+ "url": "/categories/206"
964
+ },
965
+ {
966
+ "description": "",
967
+ "id": 204,
968
+ "image_url": "http://static.gowalla.com/categories/204-standard.png",
969
+ "name": "Other - Street Fare",
970
+ "small_image_url": "http://static.gowalla.com/categories/204-small-standard.png",
971
+ "url": "/categories/204"
972
+ },
973
+ {
974
+ "description": "",
975
+ "id": 189,
976
+ "image_url": "http://static.gowalla.com/categories/189-standard.png",
977
+ "name": "Tacos",
978
+ "small_image_url": "http://static.gowalla.com/categories/189-small-standard.png",
979
+ "url": "/categories/189"
980
+ }
981
+ ],
982
+ "description": "",
983
+ "id": 178,
984
+ "image_url": "http://static.gowalla.com/categories/178-standard.png",
985
+ "name": "Street Fare",
986
+ "small_image_url": "http://static.gowalla.com/categories/178-small-standard.png",
987
+ "url": "/categories/178"
988
+ },
989
+ {
990
+ "categories": [],
991
+ "description": "",
992
+ "id": 159,
993
+ "image_url": "http://static.gowalla.com/categories/159-standard.png",
994
+ "name": "Sushi",
995
+ "small_image_url": "http://static.gowalla.com/categories/159-small-standard.png",
996
+ "url": "/categories/159"
997
+ },
998
+ {
999
+ "categories": [],
1000
+ "description": "",
1001
+ "id": 171,
1002
+ "image_url": "http://static.gowalla.com/categories/171-standard.png",
1003
+ "name": "Tea Room",
1004
+ "small_image_url": "http://static.gowalla.com/categories/171-small-standard.png",
1005
+ "url": "/categories/171"
1006
+ },
1007
+ {
1008
+ "categories": [],
1009
+ "description": "",
1010
+ "id": 161,
1011
+ "image_url": "http://static.gowalla.com/categories/161-standard.png",
1012
+ "name": "Vegetarian / Vegan",
1013
+ "small_image_url": "http://static.gowalla.com/categories/161-small-standard.png",
1014
+ "url": "/categories/161"
1015
+ },
1016
+ {
1017
+ "categories": [],
1018
+ "description": "",
1019
+ "id": 157,
1020
+ "image_url": "http://static.gowalla.com/categories/157-standard.png",
1021
+ "name": "Vineyard",
1022
+ "small_image_url": "http://static.gowalla.com/categories/157-small-standard.png",
1023
+ "url": "/categories/157"
1024
+ },
1025
+ {
1026
+ "categories": [],
1027
+ "description": "",
1028
+ "id": 67,
1029
+ "image_url": "http://static.gowalla.com/categories/67-standard.png",
1030
+ "name": "Wings",
1031
+ "small_image_url": "http://static.gowalla.com/categories/67-small-standard.png",
1032
+ "url": "/categories/67"
1033
+ }
1034
+ ],
1035
+ "description": "Bakery, Coffeeshop, Dessert, Vineyard",
1036
+ "id": 7,
1037
+ "image_url": "http://static.gowalla.com/categories/7-standard.png",
1038
+ "name": "Food",
1039
+ "small_image_url": "http://static.gowalla.com/categories/7-small-standard.png",
1040
+ "url": "/categories/7"
1041
+ },
1042
+ {
1043
+ "categories": [
1044
+ {
1045
+ "categories": [],
1046
+ "description": "",
1047
+ "id": 241,
1048
+ "image_url": "http://static.gowalla.com/categories/241-standard.png",
1049
+ "name": "Bar",
1050
+ "small_image_url": "http://static.gowalla.com/categories/241-small-standard.png",
1051
+ "url": "/categories/241"
1052
+ },
1053
+ {
1054
+ "categories": [],
1055
+ "description": "",
1056
+ "id": 167,
1057
+ "image_url": "http://static.gowalla.com/categories/167-standard.png",
1058
+ "name": "Brewery / Microbrewery",
1059
+ "small_image_url": "http://static.gowalla.com/categories/167-small-standard.png",
1060
+ "url": "/categories/167"
1061
+ },
1062
+ {
1063
+ "categories": [],
1064
+ "description": "",
1065
+ "id": 25,
1066
+ "image_url": "http://static.gowalla.com/categories/25-standard.png",
1067
+ "name": "Dancefloor",
1068
+ "small_image_url": "http://static.gowalla.com/categories/25-small-standard.png",
1069
+ "url": "/categories/25"
1070
+ },
1071
+ {
1072
+ "categories": [],
1073
+ "description": "",
1074
+ "id": 28,
1075
+ "image_url": "http://static.gowalla.com/categories/28-standard.png",
1076
+ "name": "Dive Bar",
1077
+ "small_image_url": "http://static.gowalla.com/categories/28-small-standard.png",
1078
+ "url": "/categories/28"
1079
+ },
1080
+ {
1081
+ "categories": [],
1082
+ "description": "",
1083
+ "id": 177,
1084
+ "image_url": "http://static.gowalla.com/categories/177-standard.png",
1085
+ "name": "Karaoke",
1086
+ "small_image_url": "http://static.gowalla.com/categories/177-small-standard.png",
1087
+ "url": "/categories/177"
1088
+ },
1089
+ {
1090
+ "categories": [],
1091
+ "description": "",
1092
+ "id": 56,
1093
+ "image_url": "http://static.gowalla.com/categories/56-standard.png",
1094
+ "name": "Other - Nightlife ",
1095
+ "small_image_url": "http://static.gowalla.com/categories/56-small-standard.png",
1096
+ "url": "/categories/56"
1097
+ },
1098
+ {
1099
+ "categories": [],
1100
+ "description": "",
1101
+ "id": 24,
1102
+ "image_url": "http://static.gowalla.com/categories/24-standard.png",
1103
+ "name": "Pub",
1104
+ "small_image_url": "http://static.gowalla.com/categories/24-small-standard.png",
1105
+ "url": "/categories/24"
1106
+ },
1107
+ {
1108
+ "categories": [],
1109
+ "description": "",
1110
+ "id": 97,
1111
+ "image_url": "http://static.gowalla.com/categories/97-standard.png",
1112
+ "name": "Saloon",
1113
+ "small_image_url": "http://static.gowalla.com/categories/97-small-standard.png",
1114
+ "url": "/categories/97"
1115
+ },
1116
+ {
1117
+ "categories": [],
1118
+ "description": "",
1119
+ "id": 130,
1120
+ "image_url": "http://static.gowalla.com/categories/130-standard.png",
1121
+ "name": "Sports Bar",
1122
+ "small_image_url": "http://static.gowalla.com/categories/130-small-standard.png",
1123
+ "url": "/categories/130"
1124
+ },
1125
+ {
1126
+ "categories": [],
1127
+ "description": "",
1128
+ "id": 26,
1129
+ "image_url": "http://static.gowalla.com/categories/26-standard.png",
1130
+ "name": "Ultra-lounge",
1131
+ "small_image_url": "http://static.gowalla.com/categories/26-small-standard.png",
1132
+ "url": "/categories/26"
1133
+ },
1134
+ {
1135
+ "categories": [],
1136
+ "description": "",
1137
+ "id": 27,
1138
+ "image_url": "http://static.gowalla.com/categories/27-standard.png",
1139
+ "name": "Wine Bar",
1140
+ "small_image_url": "http://static.gowalla.com/categories/27-small-standard.png",
1141
+ "url": "/categories/27"
1142
+ }
1143
+ ],
1144
+ "description": "Pub, Dive Bar, Sports Bar, Ultra Lounge",
1145
+ "id": 4,
1146
+ "image_url": "http://static.gowalla.com/categories/4-standard.png",
1147
+ "name": "Nightlife",
1148
+ "small_image_url": "http://static.gowalla.com/categories/4-small-standard.png",
1149
+ "url": "/categories/4"
1150
+ },
1151
+ {
1152
+ "categories": [
1153
+ {
1154
+ "categories": [],
1155
+ "description": "",
1156
+ "id": 223,
1157
+ "image_url": "http://static.gowalla.com/categories/223-standard.png",
1158
+ "name": "Basketball Court",
1159
+ "small_image_url": "http://static.gowalla.com/categories/223-small-standard.png",
1160
+ "url": "/categories/223"
1161
+ },
1162
+ {
1163
+ "categories": [],
1164
+ "description": "",
1165
+ "id": 99,
1166
+ "image_url": "http://static.gowalla.com/categories/99-standard.png",
1167
+ "name": "Beach",
1168
+ "small_image_url": "http://static.gowalla.com/categories/99-small-standard.png",
1169
+ "url": "/categories/99"
1170
+ },
1171
+ {
1172
+ "categories": [],
1173
+ "description": "",
1174
+ "id": 113,
1175
+ "image_url": "http://static.gowalla.com/categories/113-standard.png",
1176
+ "name": "Big Blue Wet Thing",
1177
+ "small_image_url": "http://static.gowalla.com/categories/113-small-standard.png",
1178
+ "url": "/categories/113"
1179
+ },
1180
+ {
1181
+ "categories": [],
1182
+ "description": "",
1183
+ "id": 111,
1184
+ "image_url": "http://static.gowalla.com/categories/111-standard.png",
1185
+ "name": "Campground",
1186
+ "small_image_url": "http://static.gowalla.com/categories/111-small-standard.png",
1187
+ "url": "/categories/111"
1188
+ },
1189
+ {
1190
+ "categories": [],
1191
+ "description": "",
1192
+ "id": 176,
1193
+ "image_url": "http://static.gowalla.com/categories/176-standard.png",
1194
+ "name": "Canal / Waterway",
1195
+ "small_image_url": "http://static.gowalla.com/categories/176-small-standard.png",
1196
+ "url": "/categories/176"
1197
+ },
1198
+ {
1199
+ "categories": [],
1200
+ "description": "",
1201
+ "id": 181,
1202
+ "image_url": "http://static.gowalla.com/categories/181-standard.png",
1203
+ "name": "Cave",
1204
+ "small_image_url": "http://static.gowalla.com/categories/181-small-standard.png",
1205
+ "url": "/categories/181"
1206
+ },
1207
+ {
1208
+ "categories": [],
1209
+ "description": "",
1210
+ "id": 162,
1211
+ "image_url": "http://static.gowalla.com/categories/162-standard.png",
1212
+ "name": "Cemetery",
1213
+ "small_image_url": "http://static.gowalla.com/categories/162-small-standard.png",
1214
+ "url": "/categories/162"
1215
+ },
1216
+ {
1217
+ "categories": [],
1218
+ "description": "",
1219
+ "id": 38,
1220
+ "image_url": "http://static.gowalla.com/categories/38-standard.png",
1221
+ "name": "City Park",
1222
+ "small_image_url": "http://static.gowalla.com/categories/38-small-standard.png",
1223
+ "url": "/categories/38"
1224
+ },
1225
+ {
1226
+ "categories": [],
1227
+ "description": "",
1228
+ "id": 209,
1229
+ "image_url": "http://static.gowalla.com/categories/209-standard.png",
1230
+ "name": "Farm",
1231
+ "small_image_url": "http://static.gowalla.com/categories/209-small-standard.png",
1232
+ "url": "/categories/209"
1233
+ },
1234
+ {
1235
+ "categories": [],
1236
+ "description": "",
1237
+ "id": 214,
1238
+ "image_url": "http://static.gowalla.com/categories/214-standard.png",
1239
+ "name": "Garden",
1240
+ "small_image_url": "http://static.gowalla.com/categories/214-small-standard.png",
1241
+ "url": "/categories/214"
1242
+ },
1243
+ {
1244
+ "categories": [],
1245
+ "description": "",
1246
+ "id": 42,
1247
+ "image_url": "http://static.gowalla.com/categories/42-standard.png",
1248
+ "name": "Golf Course",
1249
+ "small_image_url": "http://static.gowalla.com/categories/42-small-standard.png",
1250
+ "url": "/categories/42"
1251
+ },
1252
+ {
1253
+ "categories": [],
1254
+ "description": "",
1255
+ "id": 166,
1256
+ "image_url": "http://static.gowalla.com/categories/166-standard.png",
1257
+ "name": "Historic Landmark",
1258
+ "small_image_url": "http://static.gowalla.com/categories/166-small-standard.png",
1259
+ "url": "/categories/166"
1260
+ },
1261
+ {
1262
+ "categories": [],
1263
+ "description": "",
1264
+ "id": 114,
1265
+ "image_url": "http://static.gowalla.com/categories/114-standard.png",
1266
+ "name": "Lake & Pond",
1267
+ "small_image_url": "http://static.gowalla.com/categories/114-small-standard.png",
1268
+ "url": "/categories/114"
1269
+ },
1270
+ {
1271
+ "categories": [],
1272
+ "description": "",
1273
+ "id": 216,
1274
+ "image_url": "http://static.gowalla.com/categories/216-standard.png",
1275
+ "name": "Lighthouse",
1276
+ "small_image_url": "http://static.gowalla.com/categories/216-small-standard.png",
1277
+ "url": "/categories/216"
1278
+ },
1279
+ {
1280
+ "categories": [],
1281
+ "description": "",
1282
+ "id": 63,
1283
+ "image_url": "http://static.gowalla.com/categories/63-standard.png",
1284
+ "name": "Monument",
1285
+ "small_image_url": "http://static.gowalla.com/categories/63-small-standard.png",
1286
+ "url": "/categories/63"
1287
+ },
1288
+ {
1289
+ "categories": [],
1290
+ "description": "",
1291
+ "id": 41,
1292
+ "image_url": "http://static.gowalla.com/categories/41-standard.png",
1293
+ "name": "National Park",
1294
+ "small_image_url": "http://static.gowalla.com/categories/41-small-standard.png",
1295
+ "url": "/categories/41"
1296
+ },
1297
+ {
1298
+ "categories": [],
1299
+ "description": "",
1300
+ "id": 40,
1301
+ "image_url": "http://static.gowalla.com/categories/40-standard.png",
1302
+ "name": "Nature Preserve",
1303
+ "small_image_url": "http://static.gowalla.com/categories/40-small-standard.png",
1304
+ "url": "/categories/40"
1305
+ },
1306
+ {
1307
+ "categories": [],
1308
+ "description": "",
1309
+ "id": 55,
1310
+ "image_url": "http://static.gowalla.com/categories/55-standard.png",
1311
+ "name": "Other - Parks ",
1312
+ "small_image_url": "http://static.gowalla.com/categories/55-small-standard.png",
1313
+ "url": "/categories/55"
1314
+ },
1315
+ {
1316
+ "categories": [],
1317
+ "description": "",
1318
+ "id": 116,
1319
+ "image_url": "http://static.gowalla.com/categories/116-standard.png",
1320
+ "name": "Pavilion",
1321
+ "small_image_url": "http://static.gowalla.com/categories/116-small-standard.png",
1322
+ "url": "/categories/116"
1323
+ },
1324
+ {
1325
+ "categories": [],
1326
+ "description": "",
1327
+ "id": 37,
1328
+ "image_url": "http://static.gowalla.com/categories/37-standard.png",
1329
+ "name": "Playground",
1330
+ "small_image_url": "http://static.gowalla.com/categories/37-small-standard.png",
1331
+ "url": "/categories/37"
1332
+ },
1333
+ {
1334
+ "categories": [],
1335
+ "description": "",
1336
+ "id": 165,
1337
+ "image_url": "http://static.gowalla.com/categories/165-standard.png",
1338
+ "name": "Plaza / Square",
1339
+ "small_image_url": "http://static.gowalla.com/categories/165-small-standard.png",
1340
+ "url": "/categories/165"
1341
+ },
1342
+ {
1343
+ "categories": [],
1344
+ "description": "",
1345
+ "id": 39,
1346
+ "image_url": "http://static.gowalla.com/categories/39-standard.png",
1347
+ "name": "Regional / State Park",
1348
+ "small_image_url": "http://static.gowalla.com/categories/39-small-standard.png",
1349
+ "url": "/categories/39"
1350
+ },
1351
+ {
1352
+ "categories": [],
1353
+ "description": "",
1354
+ "id": 115,
1355
+ "image_url": "http://static.gowalla.com/categories/115-standard.png",
1356
+ "name": "River & Stream",
1357
+ "small_image_url": "http://static.gowalla.com/categories/115-small-standard.png",
1358
+ "url": "/categories/115"
1359
+ },
1360
+ {
1361
+ "categories": [],
1362
+ "description": "",
1363
+ "id": 105,
1364
+ "image_url": "http://static.gowalla.com/categories/105-standard.png",
1365
+ "name": "Scenic Lookout",
1366
+ "small_image_url": "http://static.gowalla.com/categories/105-small-standard.png",
1367
+ "url": "/categories/105"
1368
+ },
1369
+ {
1370
+ "categories": [],
1371
+ "description": "",
1372
+ "id": 51,
1373
+ "image_url": "http://static.gowalla.com/categories/51-standard.png",
1374
+ "name": "Sculpture",
1375
+ "small_image_url": "http://static.gowalla.com/categories/51-small-standard.png",
1376
+ "url": "/categories/51"
1377
+ },
1378
+ {
1379
+ "categories": [],
1380
+ "description": "",
1381
+ "id": 211,
1382
+ "image_url": "http://static.gowalla.com/categories/211-standard.png",
1383
+ "name": "Skatepark",
1384
+ "small_image_url": "http://static.gowalla.com/categories/211-small-standard.png",
1385
+ "url": "/categories/211"
1386
+ },
1387
+ {
1388
+ "categories": [
1389
+ {
1390
+ "description": "",
1391
+ "id": 197,
1392
+ "image_url": "http://static.gowalla.com/categories/197-standard.png",
1393
+ "name": "Chalet",
1394
+ "small_image_url": "http://static.gowalla.com/categories/197-small-standard.png",
1395
+ "url": "/categories/197"
1396
+ },
1397
+ {
1398
+ "description": "",
1399
+ "id": 194,
1400
+ "image_url": "http://static.gowalla.com/categories/194-standard.png",
1401
+ "name": "Glade",
1402
+ "small_image_url": "http://static.gowalla.com/categories/194-small-standard.png",
1403
+ "url": "/categories/194"
1404
+ },
1405
+ {
1406
+ "description": "",
1407
+ "id": 219,
1408
+ "image_url": "http://static.gowalla.com/categories/219-standard.png",
1409
+ "name": "Gondola",
1410
+ "small_image_url": "http://static.gowalla.com/categories/219-small-standard.png",
1411
+ "url": "/categories/219"
1412
+ },
1413
+ {
1414
+ "description": "",
1415
+ "id": 198,
1416
+ "image_url": "http://static.gowalla.com/categories/198-standard.png",
1417
+ "name": "Halfpipe",
1418
+ "small_image_url": "http://static.gowalla.com/categories/198-small-standard.png",
1419
+ "url": "/categories/198"
1420
+ },
1421
+ {
1422
+ "description": "",
1423
+ "id": 196,
1424
+ "image_url": "http://static.gowalla.com/categories/196-standard.png",
1425
+ "name": "Lifthouse",
1426
+ "small_image_url": "http://static.gowalla.com/categories/196-small-standard.png",
1427
+ "url": "/categories/196"
1428
+ },
1429
+ {
1430
+ "description": "",
1431
+ "id": 220,
1432
+ "image_url": "http://static.gowalla.com/categories/220-standard.png",
1433
+ "name": "Summit",
1434
+ "small_image_url": "http://static.gowalla.com/categories/220-small-standard.png",
1435
+ "url": "/categories/220"
1436
+ },
1437
+ {
1438
+ "description": "",
1439
+ "id": 195,
1440
+ "image_url": "http://static.gowalla.com/categories/195-standard.png",
1441
+ "name": "Terrain Park",
1442
+ "small_image_url": "http://static.gowalla.com/categories/195-small-standard.png",
1443
+ "url": "/categories/195"
1444
+ }
1445
+ ],
1446
+ "description": "",
1447
+ "id": 131,
1448
+ "image_url": "http://static.gowalla.com/categories/131-standard.png",
1449
+ "name": "Ski & Snowboard Area",
1450
+ "small_image_url": "http://static.gowalla.com/categories/131-small-standard.png",
1451
+ "url": "/categories/131"
1452
+ },
1453
+ {
1454
+ "categories": [],
1455
+ "description": "",
1456
+ "id": 157,
1457
+ "image_url": "http://static.gowalla.com/categories/157-standard.png",
1458
+ "name": "Vineyard",
1459
+ "small_image_url": "http://static.gowalla.com/categories/157-small-standard.png",
1460
+ "url": "/categories/157"
1461
+ }
1462
+ ],
1463
+ "description": "Beach, Cemetery, Golf Course, Playground",
1464
+ "id": 5,
1465
+ "image_url": "http://static.gowalla.com/categories/5-standard.png",
1466
+ "name": "Parks, Nature & Recreation",
1467
+ "small_image_url": "http://static.gowalla.com/categories/5-small-standard.png",
1468
+ "url": "/categories/5"
1469
+ },
1470
+ {
1471
+ "categories": [
1472
+ {
1473
+ "categories": [],
1474
+ "description": "",
1475
+ "id": 91,
1476
+ "image_url": "http://static.gowalla.com/categories/91-standard.png",
1477
+ "name": "Antiques",
1478
+ "small_image_url": "http://static.gowalla.com/categories/91-small-standard.png",
1479
+ "url": "/categories/91"
1480
+ },
1481
+ {
1482
+ "categories": [
1483
+ {
1484
+ "description": "",
1485
+ "id": 239,
1486
+ "image_url": "http://static.gowalla.com/categories/239-standard.png",
1487
+ "name": "Accessories",
1488
+ "small_image_url": "http://static.gowalla.com/categories/239-small-standard.png",
1489
+ "url": "/categories/239"
1490
+ },
1491
+ {
1492
+ "description": "",
1493
+ "id": 238,
1494
+ "image_url": "http://static.gowalla.com/categories/238-standard.png",
1495
+ "name": "Children's Apparel",
1496
+ "small_image_url": "http://static.gowalla.com/categories/238-small-standard.png",
1497
+ "url": "/categories/238"
1498
+ },
1499
+ {
1500
+ "description": "",
1501
+ "id": 221,
1502
+ "image_url": "http://static.gowalla.com/categories/221-standard.png",
1503
+ "name": "Men's Apparel",
1504
+ "small_image_url": "http://static.gowalla.com/categories/221-small-standard.png",
1505
+ "url": "/categories/221"
1506
+ },
1507
+ {
1508
+ "description": "",
1509
+ "id": 240,
1510
+ "image_url": "http://static.gowalla.com/categories/240-standard.png",
1511
+ "name": "Shoes",
1512
+ "small_image_url": "http://static.gowalla.com/categories/240-small-standard.png",
1513
+ "url": "/categories/240"
1514
+ },
1515
+ {
1516
+ "description": "",
1517
+ "id": 222,
1518
+ "image_url": "http://static.gowalla.com/categories/222-standard.png",
1519
+ "name": "Women's Apparel",
1520
+ "small_image_url": "http://static.gowalla.com/categories/222-small-standard.png",
1521
+ "url": "/categories/222"
1522
+ }
1523
+ ],
1524
+ "description": "",
1525
+ "id": 35,
1526
+ "image_url": "http://static.gowalla.com/categories/35-standard.png",
1527
+ "name": "Apparel",
1528
+ "small_image_url": "http://static.gowalla.com/categories/35-small-standard.png",
1529
+ "url": "/categories/35"
1530
+ },
1531
+ {
1532
+ "categories": [],
1533
+ "description": "",
1534
+ "id": 186,
1535
+ "image_url": "http://static.gowalla.com/categories/186-standard.png",
1536
+ "name": "Bank & Financial",
1537
+ "small_image_url": "http://static.gowalla.com/categories/186-small-standard.png",
1538
+ "url": "/categories/186"
1539
+ },
1540
+ {
1541
+ "categories": [],
1542
+ "description": "",
1543
+ "id": 96,
1544
+ "image_url": "http://static.gowalla.com/categories/96-standard.png",
1545
+ "name": "Bookstore",
1546
+ "small_image_url": "http://static.gowalla.com/categories/96-small-standard.png",
1547
+ "url": "/categories/96"
1548
+ },
1549
+ {
1550
+ "categories": [],
1551
+ "description": "",
1552
+ "id": 180,
1553
+ "image_url": "http://static.gowalla.com/categories/180-standard.png",
1554
+ "name": "Candy Store",
1555
+ "small_image_url": "http://static.gowalla.com/categories/180-small-standard.png",
1556
+ "url": "/categories/180"
1557
+ },
1558
+ {
1559
+ "categories": [],
1560
+ "description": "",
1561
+ "id": 202,
1562
+ "image_url": "http://static.gowalla.com/categories/202-standard.png",
1563
+ "name": "Discount Store",
1564
+ "small_image_url": "http://static.gowalla.com/categories/202-small-standard.png",
1565
+ "url": "/categories/202"
1566
+ },
1567
+ {
1568
+ "categories": [],
1569
+ "description": "",
1570
+ "id": 201,
1571
+ "image_url": "http://static.gowalla.com/categories/201-standard.png",
1572
+ "name": "Drugstore & Pharmacy",
1573
+ "small_image_url": "http://static.gowalla.com/categories/201-small-standard.png",
1574
+ "url": "/categories/201"
1575
+ },
1576
+ {
1577
+ "categories": [],
1578
+ "description": "",
1579
+ "id": 229,
1580
+ "image_url": "http://static.gowalla.com/categories/229-standard.png",
1581
+ "name": "Flower Shop",
1582
+ "small_image_url": "http://static.gowalla.com/categories/229-small-standard.png",
1583
+ "url": "/categories/229"
1584
+ },
1585
+ {
1586
+ "categories": [],
1587
+ "description": "",
1588
+ "id": 106,
1589
+ "image_url": "http://static.gowalla.com/categories/106-standard.png",
1590
+ "name": "Food & Foodies",
1591
+ "small_image_url": "http://static.gowalla.com/categories/106-small-standard.png",
1592
+ "url": "/categories/106"
1593
+ },
1594
+ {
1595
+ "categories": [],
1596
+ "description": "",
1597
+ "id": 53,
1598
+ "image_url": "http://static.gowalla.com/categories/53-standard.png",
1599
+ "name": "Furniture",
1600
+ "small_image_url": "http://static.gowalla.com/categories/53-small-standard.png",
1601
+ "url": "/categories/53"
1602
+ },
1603
+ {
1604
+ "categories": [],
1605
+ "description": "",
1606
+ "id": 119,
1607
+ "image_url": "http://static.gowalla.com/categories/119-standard.png",
1608
+ "name": "Gas & Automotive",
1609
+ "small_image_url": "http://static.gowalla.com/categories/119-small-standard.png",
1610
+ "url": "/categories/119"
1611
+ },
1612
+ {
1613
+ "categories": [
1614
+ {
1615
+ "description": "",
1616
+ "id": 125,
1617
+ "image_url": "http://static.gowalla.com/categories/125-standard.png",
1618
+ "name": "City Hall",
1619
+ "small_image_url": "http://static.gowalla.com/categories/125-small-standard.png",
1620
+ "url": "/categories/125"
1621
+ },
1622
+ {
1623
+ "description": "",
1624
+ "id": 126,
1625
+ "image_url": "http://static.gowalla.com/categories/126-standard.png",
1626
+ "name": "Courthouse",
1627
+ "small_image_url": "http://static.gowalla.com/categories/126-small-standard.png",
1628
+ "url": "/categories/126"
1629
+ },
1630
+ {
1631
+ "description": "",
1632
+ "id": 182,
1633
+ "image_url": "http://static.gowalla.com/categories/182-standard.png",
1634
+ "name": "Fire Station",
1635
+ "small_image_url": "http://static.gowalla.com/categories/182-small-standard.png",
1636
+ "url": "/categories/182"
1637
+ },
1638
+ {
1639
+ "description": "",
1640
+ "id": 183,
1641
+ "image_url": "http://static.gowalla.com/categories/183-standard.png",
1642
+ "name": "Police Station",
1643
+ "small_image_url": "http://static.gowalla.com/categories/183-small-standard.png",
1644
+ "url": "/categories/183"
1645
+ },
1646
+ {
1647
+ "description": "",
1648
+ "id": 235,
1649
+ "image_url": "http://static.gowalla.com/categories/235-standard.png",
1650
+ "name": "Post Office",
1651
+ "small_image_url": "http://static.gowalla.com/categories/235-small-standard.png",
1652
+ "url": "/categories/235"
1653
+ }
1654
+ ],
1655
+ "description": "",
1656
+ "id": 218,
1657
+ "image_url": "http://static.gowalla.com/categories/218-standard.png",
1658
+ "name": "Government",
1659
+ "small_image_url": "http://static.gowalla.com/categories/218-small-standard.png",
1660
+ "url": "/categories/218"
1661
+ },
1662
+ {
1663
+ "categories": [],
1664
+ "description": "",
1665
+ "id": 200,
1666
+ "image_url": "http://static.gowalla.com/categories/200-standard.png",
1667
+ "name": "Hardware Store",
1668
+ "small_image_url": "http://static.gowalla.com/categories/200-small-standard.png",
1669
+ "url": "/categories/200"
1670
+ },
1671
+ {
1672
+ "categories": [],
1673
+ "description": "",
1674
+ "id": 118,
1675
+ "image_url": "http://static.gowalla.com/categories/118-standard.png",
1676
+ "name": "Health & Fitness",
1677
+ "small_image_url": "http://static.gowalla.com/categories/118-small-standard.png",
1678
+ "url": "/categories/118"
1679
+ },
1680
+ {
1681
+ "categories": [],
1682
+ "description": "",
1683
+ "id": 11,
1684
+ "image_url": "http://static.gowalla.com/categories/11-standard.png",
1685
+ "name": "Mall",
1686
+ "small_image_url": "http://static.gowalla.com/categories/11-small-standard.png",
1687
+ "url": "/categories/11"
1688
+ },
1689
+ {
1690
+ "categories": [
1691
+ {
1692
+ "description": "",
1693
+ "id": 190,
1694
+ "image_url": "http://static.gowalla.com/categories/190-standard.png",
1695
+ "name": "Dentist",
1696
+ "small_image_url": "http://static.gowalla.com/categories/190-small-standard.png",
1697
+ "url": "/categories/190"
1698
+ },
1699
+ {
1700
+ "description": "",
1701
+ "id": 192,
1702
+ "image_url": "http://static.gowalla.com/categories/192-standard.png",
1703
+ "name": "Doctor's Office",
1704
+ "small_image_url": "http://static.gowalla.com/categories/192-small-standard.png",
1705
+ "url": "/categories/192"
1706
+ },
1707
+ {
1708
+ "description": "",
1709
+ "id": 201,
1710
+ "image_url": "http://static.gowalla.com/categories/201-standard.png",
1711
+ "name": "Drugstore & Pharmacy",
1712
+ "small_image_url": "http://static.gowalla.com/categories/201-small-standard.png",
1713
+ "url": "/categories/201"
1714
+ },
1715
+ {
1716
+ "description": "",
1717
+ "id": 132,
1718
+ "image_url": "http://static.gowalla.com/categories/132-standard.png",
1719
+ "name": "Hospital",
1720
+ "small_image_url": "http://static.gowalla.com/categories/132-small-standard.png",
1721
+ "url": "/categories/132"
1722
+ },
1723
+ {
1724
+ "description": "",
1725
+ "id": 210,
1726
+ "image_url": "http://static.gowalla.com/categories/210-standard.png",
1727
+ "name": "Other - Medical",
1728
+ "small_image_url": "http://static.gowalla.com/categories/210-small-standard.png",
1729
+ "url": "/categories/210"
1730
+ }
1731
+ ],
1732
+ "description": "",
1733
+ "id": 191,
1734
+ "image_url": "http://static.gowalla.com/categories/191-standard.png",
1735
+ "name": "Medical",
1736
+ "small_image_url": "http://static.gowalla.com/categories/191-small-standard.png",
1737
+ "url": "/categories/191"
1738
+ },
1739
+ {
1740
+ "categories": [],
1741
+ "description": "",
1742
+ "id": 242,
1743
+ "image_url": "http://static.gowalla.com/categories/242-standard.png",
1744
+ "name": "Movie Rental",
1745
+ "small_image_url": "http://static.gowalla.com/categories/242-small-standard.png",
1746
+ "url": "/categories/242"
1747
+ },
1748
+ {
1749
+ "categories": [],
1750
+ "description": "",
1751
+ "id": 112,
1752
+ "image_url": "http://static.gowalla.com/categories/112-standard.png",
1753
+ "name": "Music",
1754
+ "small_image_url": "http://static.gowalla.com/categories/112-small-standard.png",
1755
+ "url": "/categories/112"
1756
+ },
1757
+ {
1758
+ "categories": [],
1759
+ "description": "",
1760
+ "id": 217,
1761
+ "image_url": "http://static.gowalla.com/categories/217-standard.png",
1762
+ "name": "Other - Services",
1763
+ "small_image_url": "http://static.gowalla.com/categories/217-small-standard.png",
1764
+ "url": "/categories/217"
1765
+ },
1766
+ {
1767
+ "categories": [],
1768
+ "description": "",
1769
+ "id": 54,
1770
+ "image_url": "http://static.gowalla.com/categories/54-standard.png",
1771
+ "name": "Other - Shopping",
1772
+ "small_image_url": "http://static.gowalla.com/categories/54-small-standard.png",
1773
+ "url": "/categories/54"
1774
+ },
1775
+ {
1776
+ "categories": [],
1777
+ "description": "",
1778
+ "id": 163,
1779
+ "image_url": "http://static.gowalla.com/categories/163-standard.png",
1780
+ "name": "Paper Goods",
1781
+ "small_image_url": "http://static.gowalla.com/categories/163-small-standard.png",
1782
+ "url": "/categories/163"
1783
+ },
1784
+ {
1785
+ "categories": [],
1786
+ "description": "",
1787
+ "id": 173,
1788
+ "image_url": "http://static.gowalla.com/categories/173-standard.png",
1789
+ "name": "Pet Store",
1790
+ "small_image_url": "http://static.gowalla.com/categories/173-small-standard.png",
1791
+ "url": "/categories/173"
1792
+ },
1793
+ {
1794
+ "categories": [],
1795
+ "description": "",
1796
+ "id": 193,
1797
+ "image_url": "http://static.gowalla.com/categories/193-standard.png",
1798
+ "name": "Record Store",
1799
+ "small_image_url": "http://static.gowalla.com/categories/193-small-standard.png",
1800
+ "url": "/categories/193"
1801
+ },
1802
+ {
1803
+ "categories": [],
1804
+ "description": "",
1805
+ "id": 227,
1806
+ "image_url": "http://static.gowalla.com/categories/227-standard.png",
1807
+ "name": "Rental Car",
1808
+ "small_image_url": "http://static.gowalla.com/categories/227-small-standard.png",
1809
+ "url": "/categories/227"
1810
+ },
1811
+ {
1812
+ "categories": [],
1813
+ "description": "",
1814
+ "id": 117,
1815
+ "image_url": "http://static.gowalla.com/categories/117-standard.png",
1816
+ "name": "Salon & Barbershop",
1817
+ "small_image_url": "http://static.gowalla.com/categories/117-small-standard.png",
1818
+ "url": "/categories/117"
1819
+ },
1820
+ {
1821
+ "categories": [],
1822
+ "description": "",
1823
+ "id": 61,
1824
+ "image_url": "http://static.gowalla.com/categories/61-standard.png",
1825
+ "name": "Sports & Outdoors",
1826
+ "small_image_url": "http://static.gowalla.com/categories/61-small-standard.png",
1827
+ "url": "/categories/61"
1828
+ },
1829
+ {
1830
+ "categories": [],
1831
+ "description": "",
1832
+ "id": 36,
1833
+ "image_url": "http://static.gowalla.com/categories/36-standard.png",
1834
+ "name": "Technology",
1835
+ "small_image_url": "http://static.gowalla.com/categories/36-small-standard.png",
1836
+ "url": "/categories/36"
1837
+ },
1838
+ {
1839
+ "categories": [],
1840
+ "description": "",
1841
+ "id": 34,
1842
+ "image_url": "http://static.gowalla.com/categories/34-standard.png",
1843
+ "name": "Thrift Store",
1844
+ "small_image_url": "http://static.gowalla.com/categories/34-small-standard.png",
1845
+ "url": "/categories/34"
1846
+ },
1847
+ {
1848
+ "categories": [],
1849
+ "description": "",
1850
+ "id": 109,
1851
+ "image_url": "http://static.gowalla.com/categories/109-standard.png",
1852
+ "name": "Tobacco & Cigars",
1853
+ "small_image_url": "http://static.gowalla.com/categories/109-small-standard.png",
1854
+ "url": "/categories/109"
1855
+ },
1856
+ {
1857
+ "categories": [],
1858
+ "description": "",
1859
+ "id": 62,
1860
+ "image_url": "http://static.gowalla.com/categories/62-standard.png",
1861
+ "name": "Toys & Games",
1862
+ "small_image_url": "http://static.gowalla.com/categories/62-small-standard.png",
1863
+ "url": "/categories/62"
1864
+ }
1865
+ ],
1866
+ "description": "Antiques, Foodies, Clothes, Toys",
1867
+ "id": 6,
1868
+ "image_url": "http://static.gowalla.com/categories/6-standard.png",
1869
+ "name": "Shopping & Services",
1870
+ "small_image_url": "http://static.gowalla.com/categories/6-small-standard.png",
1871
+ "url": "/categories/6"
1872
+ },
1873
+ {
1874
+ "categories": [
1875
+ {
1876
+ "categories": [
1877
+ {
1878
+ "description": "",
1879
+ "id": 225,
1880
+ "image_url": "http://static.gowalla.com/categories/225-standard.png",
1881
+ "name": "Gate",
1882
+ "small_image_url": "http://static.gowalla.com/categories/225-small-standard.png",
1883
+ "url": "/categories/225"
1884
+ },
1885
+ {
1886
+ "description": "",
1887
+ "id": 228,
1888
+ "image_url": "http://static.gowalla.com/categories/228-standard.png",
1889
+ "name": "Other - Airport",
1890
+ "small_image_url": "http://static.gowalla.com/categories/228-small-standard.png",
1891
+ "url": "/categories/228"
1892
+ },
1893
+ {
1894
+ "description": "",
1895
+ "id": 227,
1896
+ "image_url": "http://static.gowalla.com/categories/227-standard.png",
1897
+ "name": "Rental Car",
1898
+ "small_image_url": "http://static.gowalla.com/categories/227-small-standard.png",
1899
+ "url": "/categories/227"
1900
+ },
1901
+ {
1902
+ "description": "",
1903
+ "id": 224,
1904
+ "image_url": "http://static.gowalla.com/categories/224-standard.png",
1905
+ "name": "Terminal",
1906
+ "small_image_url": "http://static.gowalla.com/categories/224-small-standard.png",
1907
+ "url": "/categories/224"
1908
+ },
1909
+ {
1910
+ "description": "",
1911
+ "id": 226,
1912
+ "image_url": "http://static.gowalla.com/categories/226-standard.png",
1913
+ "name": "Tram",
1914
+ "small_image_url": "http://static.gowalla.com/categories/226-small-standard.png",
1915
+ "url": "/categories/226"
1916
+ }
1917
+ ],
1918
+ "description": "",
1919
+ "id": 45,
1920
+ "image_url": "http://static.gowalla.com/categories/45-standard.png",
1921
+ "name": "Airport",
1922
+ "small_image_url": "http://static.gowalla.com/categories/45-small-standard.png",
1923
+ "url": "/categories/45"
1924
+ },
1925
+ {
1926
+ "categories": [],
1927
+ "description": "",
1928
+ "id": 92,
1929
+ "image_url": "http://static.gowalla.com/categories/92-standard.png",
1930
+ "name": "Bed & Breakfast",
1931
+ "small_image_url": "http://static.gowalla.com/categories/92-small-standard.png",
1932
+ "url": "/categories/92"
1933
+ },
1934
+ {
1935
+ "categories": [],
1936
+ "description": "",
1937
+ "id": 46,
1938
+ "image_url": "http://static.gowalla.com/categories/46-standard.png",
1939
+ "name": "Bus Station",
1940
+ "small_image_url": "http://static.gowalla.com/categories/46-small-standard.png",
1941
+ "url": "/categories/46"
1942
+ },
1943
+ {
1944
+ "categories": [],
1945
+ "description": "",
1946
+ "id": 172,
1947
+ "image_url": "http://static.gowalla.com/categories/172-standard.png",
1948
+ "name": "Ferry",
1949
+ "small_image_url": "http://static.gowalla.com/categories/172-small-standard.png",
1950
+ "url": "/categories/172"
1951
+ },
1952
+ {
1953
+ "categories": [],
1954
+ "description": "",
1955
+ "id": 93,
1956
+ "image_url": "http://static.gowalla.com/categories/93-standard.png",
1957
+ "name": "Hostel",
1958
+ "small_image_url": "http://static.gowalla.com/categories/93-small-standard.png",
1959
+ "url": "/categories/93"
1960
+ },
1961
+ {
1962
+ "categories": [
1963
+ {
1964
+ "description": "",
1965
+ "id": 43,
1966
+ "image_url": "http://static.gowalla.com/categories/43-standard.png",
1967
+ "name": "Antique Hotel",
1968
+ "small_image_url": "http://static.gowalla.com/categories/43-small-standard.png",
1969
+ "url": "/categories/43"
1970
+ },
1971
+ {
1972
+ "description": "",
1973
+ "id": 49,
1974
+ "image_url": "http://static.gowalla.com/categories/49-standard.png",
1975
+ "name": "Luxury Hotel",
1976
+ "small_image_url": "http://static.gowalla.com/categories/49-small-standard.png",
1977
+ "url": "/categories/49"
1978
+ },
1979
+ {
1980
+ "description": "",
1981
+ "id": 47,
1982
+ "image_url": "http://static.gowalla.com/categories/47-standard.png",
1983
+ "name": "Modern Hotel",
1984
+ "small_image_url": "http://static.gowalla.com/categories/47-small-standard.png",
1985
+ "url": "/categories/47"
1986
+ },
1987
+ {
1988
+ "description": "",
1989
+ "id": 44,
1990
+ "image_url": "http://static.gowalla.com/categories/44-standard.png",
1991
+ "name": "Motel",
1992
+ "small_image_url": "http://static.gowalla.com/categories/44-small-standard.png",
1993
+ "url": "/categories/44"
1994
+ }
1995
+ ],
1996
+ "description": "",
1997
+ "id": 199,
1998
+ "image_url": "http://static.gowalla.com/categories/199-standard.png",
1999
+ "name": "Hotels & Motels",
2000
+ "small_image_url": "http://static.gowalla.com/categories/199-small-standard.png",
2001
+ "url": "/categories/199"
2002
+ },
2003
+ {
2004
+ "categories": [],
2005
+ "description": "",
2006
+ "id": 94,
2007
+ "image_url": "http://static.gowalla.com/categories/94-standard.png",
2008
+ "name": "Light Rail",
2009
+ "small_image_url": "http://static.gowalla.com/categories/94-small-standard.png",
2010
+ "url": "/categories/94"
2011
+ },
2012
+ {
2013
+ "categories": [],
2014
+ "description": "",
2015
+ "id": 57,
2016
+ "image_url": "http://static.gowalla.com/categories/57-standard.png",
2017
+ "name": "Other - Travel & Lodging",
2018
+ "small_image_url": "http://static.gowalla.com/categories/57-small-standard.png",
2019
+ "url": "/categories/57"
2020
+ },
2021
+ {
2022
+ "categories": [],
2023
+ "description": "",
2024
+ "id": 48,
2025
+ "image_url": "http://static.gowalla.com/categories/48-standard.png",
2026
+ "name": "Resort",
2027
+ "small_image_url": "http://static.gowalla.com/categories/48-small-standard.png",
2028
+ "url": "/categories/48"
2029
+ },
2030
+ {
2031
+ "categories": [],
2032
+ "description": "",
2033
+ "id": 164,
2034
+ "image_url": "http://static.gowalla.com/categories/164-standard.png",
2035
+ "name": "Subway",
2036
+ "small_image_url": "http://static.gowalla.com/categories/164-small-standard.png",
2037
+ "url": "/categories/164"
2038
+ },
2039
+ {
2040
+ "categories": [],
2041
+ "description": "",
2042
+ "id": 95,
2043
+ "image_url": "http://static.gowalla.com/categories/95-standard.png",
2044
+ "name": "Train Station",
2045
+ "small_image_url": "http://static.gowalla.com/categories/95-small-standard.png",
2046
+ "url": "/categories/95"
2047
+ }
2048
+ ],
2049
+ "description": "Airport, Hotel, Train Station, Subway",
2050
+ "id": 3,
2051
+ "image_url": "http://static.gowalla.com/categories/3-standard.png",
2052
+ "name": "Travel & Lodging",
2053
+ "small_image_url": "http://static.gowalla.com/categories/3-small-standard.png",
2054
+ "url": "/categories/3"
2055
+ }
2056
+ ]