diff --git a/.travis.yml b/.travis.yml index f0d0345..18fb75d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,4 +7,4 @@ sudo: false script: - gem install bundle - bundle - - rake preflight + - bundle exec rake preflight diff --git a/README.md b/README.md index 64998e3..fdd0f37 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,8 @@ **Master Circle-CI (Linux):** [![Circle CI](https://circleci.com/gh/tparnell8/Untappd.Net/tree/master.svg?style=svg)](https://circleci.com/gh/tparnell8/Untappd.Net/tree/master) +**Master CodeShip (Linux):**[ ![Codeship Status for tparnell8/Untappd.Net](https://codeship.com/projects/aa00c9e0-f94b-0132-799e-3a92bb520805/status?branch=master)](https://codeship.com/projects/86796) + **Release:**[![Build status](https://ci.appveyor.com/api/projects/status/e21297waldfrso3p/branch/Release?svg=true)](https://ci.appveyor.com/project/tparnell8/untappd-net/branch/Release) **Code Coverage:** [![Coverage Status](https://coveralls.io/repos/tparnell8/Untappd.Net/badge.svg?branch=master)](https://coveralls.io/r/tparnell8/Untappd.Net?branch=master) @@ -25,6 +27,10 @@ If you wish to build via command line install ruby, and ruby gems. Open up a con * `bundle` * `rake preflight` +### Linux Boxes + +If you are on a linux box, please make sure you have `mono` and `mono-devel` in your path. Easiest way to install on ubuntu is to run `sudo apt-get install mono-complete` + ## My PR is broken, it works in VS! if your pull request is broken either one of two things is happening. diff --git a/Rakefile b/Rakefile index 0792408..8953f54 100644 --- a/Rakefile +++ b/Rakefile @@ -1,4 +1,3 @@ -require 'bundler/setup' require 'rake/clean' require 'albacore' require 'open-uri' @@ -21,11 +20,23 @@ task :build => [:compile] desc 'Run the tests' task :test => [:nunit] +desc 'run Static analysis linters' +task :lint => [:build, :cs_lint] desc 'Retrieve, Build, Test' -task :preflight => [:retrieve, :build, :test, :cs_lint] +task :preflight => [:clean, :retrieve, :build, :test, :lint] +desc 'cleans up artifacts' +task :clean do + puts 'cleaning artifacts from directory' + FileUtils.rm_rf("output") + FileUtils.rm_rf("packages") + FileUtils.rm_rf("tools") + FileUtils.rm_rf(Dir.glob("src/**/*.dll")) + FileUtils.rm_rf(Dir.glob("src/**/*.pdb")) + FileUtils.rm_rf(Dir.glob("src/**/*.mdb")) +end build :compile => ['tools:nuget_fetch'] do |b| b.prop 'Configuration', Configuration diff --git a/assets/tools.rake b/assets/tools.rake index beca1da..7bb6a32 100644 --- a/assets/tools.rake +++ b/assets/tools.rake @@ -7,10 +7,17 @@ namespace :tools do if !FileTest.exist?("#{NUGET}/nuget.exe") puts 'Downloading nuget from nuget.org' + begin FileUtils.mkdir_p("#{NUGET}") File.open("#{NUGET}/nuget.exe", "wb") do |file| file.write open('https://nuget.org/nuget.exe').read end + rescue + FileUtils.rm_rf("#{NUGET}/nuget.exe") + File.open("#{NUGET}/nuget.exe", "wb") do |file| + file.write open('http://nuget.org/nuget.exe').read + end + end end end @@ -27,7 +34,7 @@ namespace :tools do end end - # Make sure we get solution-level deps + # Make sure we get solution-level deps sh "#{CMD_PREFIX} #{NUGET}/nuget.exe i .nuget/packages.config -o packages" FileList["src/**/packages.config"].each { |filepath| diff --git a/circle.yml b/circle.yml index 999d78d..c024421 100644 --- a/circle.yml +++ b/circle.yml @@ -3,4 +3,4 @@ dependencies: - sudo apt-get update; sudo apt-get install mono-devel test: override: - - rake preflight + - bundle exec rake preflight diff --git a/src/Untappd.Net.UnitTests/Exception/TestHttpErrorException.cs b/src/Untappd.Net.UnitTests/Exception/TestHttpErrorException.cs new file mode 100644 index 0000000..e4b59e2 --- /dev/null +++ b/src/Untappd.Net.UnitTests/Exception/TestHttpErrorException.cs @@ -0,0 +1,32 @@ +using System; +using NUnit.Framework; +using Untappd.Net.Exception; +using Moq; +using RestSharp; + + +namespace Untappd.Net.UnitTests.Exception +{ + [TestFixture] + public class TestHttpErrorException + { + [Test] + public void ConfirmNullExceptions() + { + var mockRequest = new Mock(); + var mockResponse = new Mock(); + + Assert.Throws(()=>{ + var t = new HttpErrorException(mockRequest.Object, null); + Console.WriteLine(t); + + }); + Assert.Throws(()=>{ + var t = new HttpErrorException(null, mockResponse.Object); + Console.WriteLine(t); + + }); + } + } +} + diff --git a/src/Untappd.Net.UnitTests/Request/TestRepository.cs b/src/Untappd.Net.UnitTests/Request/TestRepository.cs index 25ec1e3..890411f 100644 --- a/src/Untappd.Net.UnitTests/Request/TestRepository.cs +++ b/src/Untappd.Net.UnitTests/Request/TestRepository.cs @@ -9,6 +9,7 @@ using Untappd.Net.Authentication; using Untappd.Net.Request; using Untappd.Net.Responses.Actions; using Untappd.Net.Responses.BeerInfo; +using Untappd.Net.Exception; namespace Untappd.Net.UnitTests.Request { @@ -67,6 +68,14 @@ namespace Untappd.Net.UnitTests.Request {"access_token", "PostaccessToken"} })); var checkin = new CheckIn("-5", "EST", 1044097) { Shout = "Awesome Brew", Rating = 4 }; + repository.FailFast = true; + repository.OnExceptionThrown += (sender, e) => + { + Assert.IsNotNull(sender); + Assert.IsNotNull(e); + }; + Assert.Throws(()=>repository.Post(mockAuthCreds.Object, checkin)); + repository.FailFast = false; repository.Post(mockAuthCreds.Object, checkin); request.Verify(a => a.AddParameter("access_token", "PostaccessToken")); diff --git a/src/Untappd.Net.UnitTests/Responses/Json/UserBadges.json b/src/Untappd.Net.UnitTests/Responses/Json/UserBadges.json index 2eee25a..a10e1f3 100644 --- a/src/Untappd.Net.UnitTests/Responses/Json/UserBadges.json +++ b/src/Untappd.Net.UnitTests/Responses/Json/UserBadges.json @@ -2,7 +2,7 @@ "meta": { "code": 200, "response_time": { - "time": 0.066, + "time": 0.291, "measure": "seconds" }, "init_time": { @@ -21,382 +21,492 @@ } }, "response": { - "type": "earned", + "type": "all", "sort": "all", - "count": 50, + "count": 438, "items": [ { - "user_badge_id": 54686732, - "badge_id": 3458, - "checkin_id": 173954362, - "badge_name": "Dubbel, Tripel and Quad Oh My!", - "badge_description": "Dubbel, Tripel, or Quad, you can’t go wrong with these amazing feats of Belgian style brewing. Whether you’re looking for something light and golden or dark and boozy, one of these will do the trick! That's 5 different beers with the style of Dubbel, Tripel or Quad! Try 5 more for Level 2!", - "badge_hint": "Check-in 5 different beers with the style of Belgian Dubbel, Tripel or Quad.", + "is_have": true, + "user_badge_id": 11364326, + "badge_id": 1, + "checkin_id": 59324215, + "badge_name": "Newbie", + "badge_description": "So, you're new around here? Congrats on your first brew! This one's for you.", + "badge_hint": "Try out Untappd - you'll get this one!", "badge_active_status": 1, "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_DubTripQuad_sm.jpg", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_DubTripQuad_md.jpg", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_DubTripQuad_lg.jpg" + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_newbie_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_newbie_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_newbie_lg.jpg" }, - "created_at": "Sat, 18 Apr 2015 17:48:42 +0000", - "is_level": true, + "created_at": "Sat, 21 Dec 2013 21:05:39 +0000", + "local_created_at": "Sat, 21 Dec 2013 19:05:39 +0000", + "is_level": false, + "has_badge": true, "category_id": 1, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 11734565, + "badge_id": 2, + "checkin_id": 60458325, + "badge_name": "Apprentice", + "badge_description": "Looks like you're getting around. You've enjoyed at least 25 different beers!", + "badge_hint": "Try lots of different brews!", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_check25_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_check25_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_check25_lg.jpg" + }, + "created_at": "Fri, 27 Dec 2013 15:39:05 +0000", + "local_created_at": "Fri, 27 Dec 2013 13:39:05 +0000", + "is_level": false, + "has_badge": true, + "category_id": 1, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 12955972, + "badge_id": 3, + "checkin_id": 65518704, + "badge_name": "Journeyman", + "badge_description": "You're getting the hang of it, but there’s much more to try. That’s over 50 unique brews!", + "badge_hint": "Try lots of different brews!", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_check50_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_check50_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_check50_lg.jpg" + }, + "created_at": "Sat, 25 Jan 2014 20:10:32 +0000", + "local_created_at": "Sat, 25 Jan 2014 18:10:32 +0000", + "is_level": false, + "has_badge": true, + "category_id": 1, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 15335488, + "badge_id": 4, + "checkin_id": 75277071, + "badge_name": "Artisan", + "badge_description": "Nice job exploring the world of beer. You've sampled over 100 different brews!", + "badge_hint": "Try lots of different brews!", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_check100_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_check100_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_check100_lg.jpg" + }, + "created_at": "Sat, 22 Mar 2014 13:27:06 +0000", + "local_created_at": "Sat, 22 Mar 2014 10:27:06 +0000", + "is_level": false, + "has_badge": true, + "category_id": 1, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 17427516, + "badge_id": 5, + "checkin_id": 84778967, + "badge_name": "Master", + "badge_description": "Total Beer Domination. We’re not worthy. That's over 200 different brews!", + "badge_hint": "Try lots of different brews!", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_check200_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_check200_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_check200_lg.jpg" + }, + "created_at": "Fri, 09 May 2014 15:47:03 +0000", + "local_created_at": "Fri, 09 May 2014 12:47:03 +0000", + "is_level": false, + "has_badge": true, + "category_id": 1, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 29056952, + "badge_id": 42, + "checkin_id": 130071455, + "badge_name": "Legendary", + "badge_description": "Your beer tastes are legendary. That’s over 500 different brews!", + "badge_hint": "Check-in to 500 different beers. It's that simple.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_legendary_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_legendary_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_legendary_lg.jpg" + }, + "created_at": "Sun, 16 Nov 2014 05:44:48 +0000", + "local_created_at": "Sat, 15 Nov 2014 22:44:48 +0000", + "is_level": false, + "has_badge": true, + "category_id": 1, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 141, + "checkin_id": 0, + "badge_name": "Extraordinary", + "badge_description": "Whoa, your love of different beers is extraordinary! That's at least 1,000 distinct brews!", + "badge_hint": "Check into 1,000 distinct beers.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 1, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 142, + "checkin_id": 0, + "badge_name": "Elite", + "badge_description": "You're in a league of your own! That's 2,500 distinct beers on Untappd!", + "badge_hint": "Check in to 2,500 distinct beers on Untappd", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 1, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 781, + "checkin_id": 0, + "badge_name": "Epic", + "badge_description": "You’ve checked into 5,000 different beers, which is just epic!", + "badge_hint": "Check-in to 5,000 unique beers on Untappd.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 1, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 782, + "checkin_id": 0, + "badge_name": "Uber", + "badge_description": "Uber isn't just for rides, it's the crazy amount of different beers you’ve checked in to! That's 10,000 unique beers!", + "badge_hint": "Check-in to 10,000 different beers on Untappd.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 1, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 15339738, + "badge_id": 6, + "checkin_id": 75298146, + "badge_name": "Take It Easy", + "badge_description": "Either you must be sampling or really like beer! That's 12 beers in 1 day.", + "badge_hint": "12 beers in one day? Time to head to a beer festival to sample your way to this badge!", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_takeItEasy_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_takeItEasy_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_takeItEasy_lg.jpg" + }, + "created_at": "Sat, 22 Mar 2014 14:15:24 +0000", + "local_created_at": "Sat, 22 Mar 2014 11:15:24 +0000", + "is_level": false, + "has_badge": true, + "category_id": 1, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 39216736, + "badge_id": 8, + "checkin_id": 136628608, + "badge_name": "Lite Weight", + "badge_description": "Watching your figure? You certainly like your light beer. That's at least 3 of the most popular American Light Beers.", + "badge_hint": "Drink the top 3 American Light beers. Come on - you see them on the commercials all the time.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_liteWeight_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_liteWeight_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_liteWeight_lg.jpg" + }, + "created_at": "Fri, 12 Dec 2014 02:09:55 +0000", + "local_created_at": "Thu, 11 Dec 2014 19:09:55 +0000", + "is_level": false, + "has_badge": true, + "category_id": 1, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 39216737, + "badge_id": 9, + "checkin_id": 136628608, + "badge_name": "All American", + "badge_description": "America, f**k yeah! It feels good to be an American! Now what channel’s got NASCAR?", + "badge_hint": "Tough one here - drink the popular American beers (Coors, Bud, Miller) - plus a special Platinum beer from Bud...", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_allAmerican_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_allAmerican_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_allAmerican_lg.jpg" + }, + "created_at": "Fri, 12 Dec 2014 02:09:55 +0000", + "local_created_at": "Thu, 11 Dec 2014 19:09:55 +0000", + "is_level": false, + "has_badge": true, + "category_id": 1, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 7, + "checkin_id": 0, + "badge_name": "Frat Party", + "badge_description": "Where's the party at bro? That's at least three cheap beers that college kids love and can afford.", + "badge_hint": "Try some cheap beers at a College. We recommend PBR, Natural Ice and something you use to open a door.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 2, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 10, + "checkin_id": 0, + "badge_name": "Cerveza Matador", + "badge_description": "¡Te gustan las cervezas (cervezas de Mexico! Baxter, you know I don't speak Spanish. In English, please.\r\n\r\nThat's 5 different beers from Mexico! Try 5 more for Level 2!", + "badge_hint": "Hola! Bebe cinco cervezas de Mexico. This badge can be leveled to 10. (Each level is 5 distinct beers).", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": true, + "badge_type": "country_badge", + "category_id": 1, + "has_badge": false, + "levels": [ + ], + "badge_pack": false + }, + { + "user_badge_id": 39135370, + "badge_id": 11, + "checkin_id": 136443955, + "badge_name": "Heffenista (Level 4)", + "badge_description": " It may not be cloudy outside, but your brew definitely is! That’s at least 20 different hefeweizens. Try 5 more to unlock Level 5.", + "badge_hint": "Our favorite - try at least 5 different hefeweizen beers. This badge can level up to 10.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heffenista_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heffenista_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heffenista_lg.jpg" + }, + "created_at": "Wed, 25 Dec 2013 17:35:42 +0000", + "local_created_at": "Wed, 25 Dec 2013 15:35:42 +0000", + "is_level": true, + "has_badge": true, + "category_id": 1, + "badge_type": "type_pack", + "next_badge_id": 271, "levels": { - "count": 1, + "count": 4, "items": [ { - "actual_badge_id": 3458, - "badge_id": 54686732, - "checkin_id": 173954362, - "badge_name": "Dubbel, Tripel and Quad Oh My!", - "badge_description": "Dubbel, Tripel, or Quad, you can’t go wrong with these amazing feats of Belgian style brewing. Whether you’re looking for something light and golden or dark and boozy, one of these will do the trick! That's 5 different beers with the style of Dubbel, Tripel or Quad! Try 5 more for Level 2!", + "actual_badge_id": 270, + "badge_id": 39135370, + "checkin_id": 136443955, + "badge_name": "Heffenista (Level 4)", + "badge_description": " It may not be cloudy outside, but your brew definitely is! That’s at least 20 different hefeweizens. Try 5 more to unlock Level 5.", "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_DubTripQuad_sm.jpg", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_DubTripQuad_md.jpg", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_DubTripQuad_lg.jpg" + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heffenista_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heffenista_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heffenista_lg.jpg" }, - "created_at": "Sat, 18 Apr 2015 17:48:42 +0000" + "created_at": "Thu, 11 Dec 2014 02:58:12 +0000" + }, + { + "actual_badge_id": 269, + "badge_id": 15794427, + "checkin_id": 77452443, + "badge_name": "Heffenista (Level 3)", + "badge_description": " It may not be cloudy outside, but your brew definitely is! That’s at least 15 different hefeweizens. Try 5 more to unlock Level 4.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heffenista_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heffenista_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heffenista_lg.jpg" + }, + "created_at": "Thu, 03 Apr 2014 14:40:22 +0000" + }, + { + "actual_badge_id": 268, + "badge_id": 14634216, + "checkin_id": 72369642, + "badge_name": "Heffenista (Level 2)", + "badge_description": " It may not be cloudy outside, but your brew definitely is! That’s at least 10 different hefeweizens. Try 5 more to unlock Level 3.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heffenista_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heffenista_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heffenista_lg.jpg" + }, + "created_at": "Fri, 07 Mar 2014 17:36:05 +0000" + }, + { + "actual_badge_id": 11, + "badge_id": 11561029, + "checkin_id": 60072095, + "badge_name": "Heffenista", + "badge_description": " It may not be cloudy outside, but your brew definitely is! That’s at least 5 different hefeweizens. Try 5 more to unlock Level 2.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heffenista_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heffenista_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heffenista_lg.jpg" + }, + "created_at": "Wed, 25 Dec 2013 17:35:42 +0000" } ] }, - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } - }, - { - "user_badge_id": 54601634, - "badge_id": 3408, - "checkin_id": 173722187, - "badge_name": "Better Together", - "badge_description": "What happens when you take two or more amazing breweries, throw them into the tank and let them ferment together? An amazing collaboration beer, that’s what! Cheers to working together to create the perfect flavor. That's 5 different beers that been brewed as a collboration. Try 5 more for Level 2!", - "badge_hint": "Check-in 5 different beers that been brewed by 2 more more breweries (collaboration).", - "badge_active_status": 1, - "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BetterTogether_sm.jpg", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BetterTogether_md.jpg", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BetterTogether_lg.jpg" - }, - "created_at": "Sat, 18 Apr 2015 01:19:37 +0000", - "is_level": true, - "category_id": 1, - "levels": { - "count": 1, - "items": [ - { - "actual_badge_id": 3408, - "badge_id": 54601634, - "checkin_id": 173722187, - "badge_name": "Better Together", - "badge_description": "What happens when you take two or more amazing breweries, throw them into the tank and let them ferment together? An amazing collaboration beer, that’s what! Cheers to working together to create the perfect flavor. That's 5 different beers that been brewed as a collboration. Try 5 more for Level 2!", - "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BetterTogether_sm.jpg", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BetterTogether_md.jpg", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BetterTogether_lg.jpg" - }, - "created_at": "Sat, 18 Apr 2015 01:19:37 +0000" - } - ] - }, - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } - }, - { - "user_badge_id": 53799464, - "badge_id": 837, - "checkin_id": 171555760, - "badge_name": "Keep Your Wits About You", - "badge_description": "Hazy and white like a winter storm, but best enjoyed on a warm sunny day. This specific style of wheat beer brings with it a subtle mix of spices and hops, giving it a distinct flavor with little bitterness. That's 5 different beers categorized as a Witbier. Try 5 more for Level 2!", - "badge_hint": "Check-in to 5 different beers that are categorized as a Witbier.", - "badge_active_status": 1, - "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_witbier_sm.jpg", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_witbier_md.jpg", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_witbier_lg.jpg" - }, - "created_at": "Sat, 11 Apr 2015 01:51:33 +0000", - "is_level": true, - "category_id": 1, - "levels": { - "count": 1, - "items": [ - { - "actual_badge_id": 837, - "badge_id": 53799464, - "checkin_id": 171555760, - "badge_name": "Keep Your Wits About You", - "badge_description": "Hazy and white like a winter storm, but best enjoyed on a warm sunny day. This specific style of wheat beer brings with it a subtle mix of spices and hops, giving it a distinct flavor with little bitterness. That's 5 different beers categorized as a Witbier. Try 5 more for Level 2!", - "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_witbier_sm.jpg", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_witbier_md.jpg", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_witbier_lg.jpg" - }, - "created_at": "Sat, 11 Apr 2015 01:51:33 +0000" - } - ] - }, - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } - }, - { - "badge_id": 3560, - "user_badge_id": 53431470, - "checkin_id": 170682984, - "badge_name": "National Beer Day (2015)", - "badge_description": "It's time to celebrate water, barley, yeast, and hops. On this National Beer Day, let's raise a toast to our favorite beverage... beer, duh!", - "badge_hint": "Check-in any beer on April 7th, 2015 in your Local Timezone.", - "badge_active_status": 0, - "media": { - "badge_image_sm": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_NationalBeerDay2015_sm.jpg", - "badge_image_md": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_NationalBeerDay2015_md.jpg", - "badge_image_lg": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_NationalBeerDay2015_lg.jpg" - }, - "created_at": "Wed, 08 Apr 2015 01:32:58 +0000", - "is_level": false, - "category_id": 3, - "levels": [ - ], - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } - }, - { - "badge_id": 3522, - "user_badge_id": 53168665, - "checkin_id": 170252414, - "badge_name": "NC Beer Month - April (2015)", - "badge_description": "It’s April and that means one thing: NC Beer Month is back! An annual celebration of the unique flavors of North Carolina craft brews filled with events and beer-related travel deals throughout the month. Find out more at http:\/\/ncbeermonth.com<\/a>. Cheers!", - "badge_hint": "Check in to (1) one beer from a list of NC Breweries on our blog form 4\/1\/15 to 4\/30\/15. (This for the April list only!)", - "badge_active_status": 1, - "media": { - "badge_image_sm": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_NCBeerMonth2015April_sm.jpg", - "badge_image_md": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_NCBeerMonth2015April_md.jpg", - "badge_image_lg": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_NCBeerMonth2015April_lg.jpg" - }, - "created_at": "Mon, 06 Apr 2015 04:11:44 +0000", - "is_level": false, - "category_id": 3, - "levels": [ - ], - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } - }, - { - "badge_id": 3524, - "user_badge_id": 53168666, - "checkin_id": 170252414, - "badge_name": "Sierra Nevada: New Year, New Beers", - "badge_description": "Solid beer choice. Watch for Sierra Nevada’s three brand new beers: Hop Hunter IPA, Nooner Pilsner, and Beer Camp Hoppy Lager. Check into one of them to start collecting Alpha Ascent badges, you beer adventurer!", - "badge_hint": "Check­in to any Sierra Nevada beer between 3\/5\/15 - 4\/5\/15.", - "badge_active_status": 0, - "media": { - "badge_image_sm": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_SN2015Bonus_sm.jpg", - "badge_image_md": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_SN2015Bonus_md.jpg", - "badge_image_lg": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_SN2015Bonus_lg.jpg" - }, - "created_at": "Mon, 06 Apr 2015 04:11:44 +0000", - "is_level": false, - "category_id": 3, - "levels": [ - ], - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } - }, - { - "badge_id": 3525, - "user_badge_id": 53168667, - "checkin_id": 170252414, - "badge_name": "Alpha Ascent - The Trailhead", - "badge_description": "Cheers to kick­starting your ascent! Find your stride and look for the second of three milestones on the journey: Hop Hunter IPA, Nooner Pilsner, and Beer Camp Hoppy Lager.", - "badge_hint": "Check in to any one (1) of Sierra Nevada’s newest beers ­ Hop Hunter IPA, Nooner Pilsner, or Beer Camp Hoppy Lager ­ between 3\/5\/15 - 4\/5\/15.", - "badge_active_status": 0, - "media": { - "badge_image_sm": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_SN2015L1_sm.jpg", - "badge_image_md": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_SN2015L1_md.jpg", - "badge_image_lg": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_SN2015L1_lg.jpg" - }, - "created_at": "Mon, 06 Apr 2015 04:11:44 +0000", - "is_level": false, - "category_id": 3, - "levels": [ - ], - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } - }, - { - "badge_id": 38, - "user_badge_id": 52941809, - "checkin_id": 169651149, - "badge_name": "Risk Taker", - "badge_description": "You’ve never had it, but you’ll take our word for it. Try 10 different recommended brews in the last 60 days.", - "badge_hint": "Take your pick, select a recommended beer from our list!", - "badge_active_status": 1, - "media": { - "badge_image_sm": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_riskTaker_sm.jpg", - "badge_image_md": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_riskTaker_md.jpg", - "badge_image_lg": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_riskTaker_lg.jpg" - }, - "created_at": "Sat, 04 Apr 2015 21:56:54 +0000", - "is_level": false, - "category_id": 1, - "levels": [ - ], - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } - }, - { - "badge_id": 3528, - "user_badge_id": 52110924, - "checkin_id": 167549985, - "badge_name": "Magners Irish Cider St. Patrick’s Day (2015)", - "badge_description": "Celebrate St. Patrick’s Day with Magners Irish Cider! Made from 17 varieties of apples and aged for up to two years in oak vats, both our Original and Pear ciders are best served over ice, with friends. Now is a good time.", - "badge_hint": "Check­in 3 times to Magners Irish Ciders or Irish Pear Cider from 3\/13\/15 ­- 4\/13\/15.", - "badge_active_status": 0, - "media": { - "badge_image_sm": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_MagnersStPatricks2015_sm.jpg", - "badge_image_md": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_MagnersStPatricks2015_md.jpg", - "badge_image_lg": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_MagnersStPatricks2015_lg.jpg" - }, - "created_at": "Sun, 29 Mar 2015 00:30:14 +0000", - "is_level": false, - "category_id": 3, - "levels": [ - ], - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } - }, - { - "badge_id": 3530, - "user_badge_id": 50745056, - "checkin_id": 164104373, - "badge_name": "St. Patrick's Day (2015)", - "badge_description": "Cheers to the Luck of the Irish on this St. Patrick's Day! Whether you're enjoying a hefty Triple IPA or a green Pilsner, we hope you have a blast!", - "badge_hint": "Check-in with ANY beer on 3\/17\/15 in your Local Timezone. Cheers!", - "badge_active_status": 0, - "media": { - "badge_image_sm": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_StPatirkcs2015_sm.jpg?v=1", - "badge_image_md": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_StPatirkcs2015_md.jpg?v=1", - "badge_image_lg": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_StPatirkcs2015_lg.jpg?v=1" - }, - "created_at": "Wed, 18 Mar 2015 02:22:20 +0000", - "is_level": false, - "category_id": 3, - "levels": [ - ], - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } - }, - { - "badge_id": 3514, - "user_badge_id": 47513140, - "checkin_id": 155968588, - "badge_name": "Mardi Gras (2015)", - "badge_description": "Time to count up those beads, did you get more than last year? Here is to celebrating the end of Mardi Gras! Happy Fat Tuesday!", - "badge_hint": "Check-in any beer on Fat Tuesday (2\/17\/15).", - "badge_active_status": 0, - "media": { - "badge_image_sm": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_MardiGras2015_sm.jpg", - "badge_image_md": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_MardiGras2015_md.jpg", - "badge_image_lg": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_MardiGras2015_lg.jpg" - }, - "created_at": "Wed, 18 Feb 2015 03:29:05 +0000", - "is_level": false, - "category_id": 3, - "levels": [ - ], - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } - }, - { - "badge_id": 3512, - "user_badge_id": 47365760, - "checkin_id": 155785913, - "badge_name": "Beer City, USA", - "badge_description": "Congratulations! You have checked in two beers from Beer City USA, aka Grand Rapids, Michigan. Or, as USA Today prefers to call us, America’s Best Beer Town. This is where beer lovers come to enjoy more sensational suds per square mile, at 30+ close­by craft breweries.", - "badge_hint": "Check­in to two (2) beers by different Brewery from a list provided on our Blog from 2\/16\/15 to 3\/16\/2015", - "badge_active_status": 0, - "media": { - "badge_image_sm": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_BeerCityUSA_sm.jpg", - "badge_image_md": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_BeerCityUSA_md.jpg", - "badge_image_lg": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_BeerCityUSA_lg.jpg" - }, - "created_at": "Tue, 17 Feb 2015 05:36:54 +0000", - "is_level": false, - "category_id": 3, - "levels": [ - ], - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } - }, - { - "badge_id": 3258, - "user_badge_id": 47365761, - "checkin_id": 155785913, - "badge_name": "Founders Year-Around Arsenal", - "badge_description": "Beer doesn't have to be rare to be world-class. As long as you’re into bold, uncompromising, well-crafted beer, there’s something in Founders’ year-round arsenal for you.", - "badge_hint": "Check-in to two different year-round beers (Dirty Bastard, Centennial IPA, All Day IPA, Pale Ale, Porter, Red’s Rye IPA) from 2\/2\/15 to 3\/2\/15.", - "badge_active_status": 0, - "media": { - "badge_image_sm": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_YearRoundArsenal_sm.jpg", - "badge_image_md": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_YearRoundArsenal_md.jpg", - "badge_image_lg": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_YearRoundArsenal_lg.jpg" - }, - "created_at": "Tue, 17 Feb 2015 05:36:54 +0000", - "is_level": false, - "category_id": 3, - "levels": [ - ], - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } + "badge_pack": false }, { "user_badge_id": 46522347, @@ -412,8 +522,12 @@ "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_irish_lg.jpg" }, "created_at": "Sun, 08 Feb 2015 18:28:47 +0000", + "local_created_at": "Sun, 08 Feb 2015 11:28:47 +0000", "is_level": true, + "has_badge": true, "category_id": 1, + "badge_type": "country_badge", + "next_badge_id": 483, "levels": { "count": 1, "items": [ @@ -432,96 +546,27 @@ } ] }, - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } + "badge_pack": false }, { - "user_badge_id": 51688681, - "badge_id": 3358, - "checkin_id": 152758537, - "badge_name": "Hopped Up (Level 3)", - "badge_description": "Load up those hops, watch the IBU grow and drink it down! Now you’re all hopped up. The more bitter, the better. That's 15 different beers with an IBU of 65 or higher. Try 5 more for Level 4!", - "badge_hint": "Check-in 5 different beers with an IBU of 65 or higher.", + "is_have": true, + "user_badge_id": 12838510, + "badge_id": 13, + "checkin_id": 64985387, + "badge_name": "Beer Party", + "badge_description": "Drinking with friends is fun. Right? You've checked in with at least 4 other people within 2 hours.", + "badge_hint": "Drink socially and at a venue.", "badge_active_status": 1, "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_HoppedUp_sm.jpg", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_HoppedUp_md.jpg", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_HoppedUp_lg.jpg" + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beerParty_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beerParty_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beerParty_lg.jpg" }, - "created_at": "Sat, 07 Feb 2015 03:09:06 +0000", - "is_level": true, - "category_id": 1, - "levels": { - "count": 3, - "items": [ - { - "actual_badge_id": 3360, - "badge_id": 51688681, - "checkin_id": 166492534, - "badge_name": "Hopped Up (Level 3)", - "badge_description": "Load up those hops, watch the IBU grow and drink it down! Now you’re all hopped up. The more bitter, the better. That's 15 different beers with an IBU of 65 or higher. Try 5 more for Level 4!", - "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_HoppedUp_sm.jpg", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_HoppedUp_md.jpg", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_HoppedUp_lg.jpg" - }, - "created_at": "Thu, 26 Mar 2015 04:28:16 +0000" - }, - { - "actual_badge_id": 3359, - "badge_id": 48238375, - "checkin_id": 157896214, - "badge_name": "Hopped Up (Level 2)", - "badge_description": "Load up those hops, watch the IBU grow and drink it down! Now you’re all hopped up. The more bitter, the better. That's 10 different beers with an IBU of 65 or higher. Try 5 more for Level 3!", - "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_HoppedUp_sm.jpg", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_HoppedUp_md.jpg", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_HoppedUp_lg.jpg" - }, - "created_at": "Wed, 25 Feb 2015 02:55:52 +0000" - }, - { - "actual_badge_id": 3358, - "badge_id": 46299146, - "checkin_id": 152758537, - "badge_name": "Hopped Up", - "badge_description": "Load up those hops, watch the IBU grow and drink it down! Now you’re all hopped up. The more bitter, the better. That's 5 different beers with an IBU of 65 or higher. Try 5 more for Level 2!", - "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_HoppedUp_sm.jpg", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_HoppedUp_md.jpg", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_HoppedUp_lg.jpg" - }, - "created_at": "Sat, 07 Feb 2015 03:09:06 +0000" - } - ] - }, - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } - }, - { - "badge_id": 3256, - "user_badge_id": 45730132, - "checkin_id": 151495228, - "badge_name": "Brew Bowl XLIX", - "badge_description": "Time to knock back your favorite brew while watching the grid iron battle between the East and the West! ", - "badge_hint": "Check-in any beer on Super Bowl Sunday, 2015.", - "badge_active_status": 0, - "media": { - "badge_image_sm": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_BrewBowlXLIX_sm.jpg", - "badge_image_md": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_BrewBowlXLIX_md.jpg", - "badge_image_lg": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_BrewBowlXLIX_lg.jpg" - }, - "created_at": "Sun, 01 Feb 2015 21:51:10 +0000", + "created_at": "Thu, 23 Jan 2014 17:05:58 +0000", + "local_created_at": "Thu, 23 Jan 2014 15:05:58 +0000", "is_level": false, - "category_id": 3, + "has_badge": true, + "category_id": 2, "levels": [ ], "badge_pack": 0, @@ -532,39 +577,116 @@ } }, { - "user_badge_id": 45003938, - "badge_id": 827, - "checkin_id": 149803566, - "badge_name": "The Wine of Beers", - "badge_description": "Strong, bold flavors really suit you. The barleywine brings with it a long history dating all the way back to ancient Greece. That's 5 different Barleywine Beers! Try 5 more for Level 2!", - "badge_hint": "Check-in to 5 different beers that are categorized as a Barleywines.", + "user_badge_id": 47296895, + "badge_id": 14, + "checkin_id": 155594701, + "badge_name": "Beer Connoisseur (Level 5)", + "badge_description": "Travel much? You must be a \"brewsetter\". That's at least a beer from 25 different countries. Try 5 more for Level 6!", + "badge_hint": "Travel around the world to drink your beer - or just drink beers from many different countries from your couch. Drink a beer from 5 different countries. This badge can be leveled to 10.", "badge_active_status": 1, "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_barleywine_sm.jpg", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_barleywine_md.jpg", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_barleywine_lg.jpg" + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_connoiseur_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_connoiseur_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_connoiseur_lg.jpg" }, - "created_at": "Mon, 26 Jan 2015 05:16:51 +0000", + "created_at": "Mon, 30 Dec 2013 00:02:29 +0000", + "local_created_at": "Sun, 29 Dec 2013 22:02:29 +0000", "is_level": true, + "has_badge": true, "category_id": 1, + "badge_type": "country_count", + "next_badge_id": 647, "levels": { - "count": 1, + "count": 5, "items": [ { - "actual_badge_id": 827, - "badge_id": 45003938, - "checkin_id": 149803566, - "badge_name": "The Wine of Beers", - "badge_description": "Strong, bold flavors really suit you. The barleywine brings with it a long history dating all the way back to ancient Greece. That's 5 different Barleywine Beers! Try 5 more for Level 2!", + "actual_badge_id": 646, + "badge_id": 47296895, + "checkin_id": 155594701, + "badge_name": "Beer Connoisseur (Level 5)", + "badge_description": "Travel much? You must be a \"brewsetter\". That's at least a beer from 25 different countries. Try 5 more for Level 6!", "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_barleywine_sm.jpg", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_barleywine_md.jpg", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_barleywine_lg.jpg" + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_connoiseur_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_connoiseur_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_connoiseur_lg.jpg" }, - "created_at": "Mon, 26 Jan 2015 05:16:51 +0000" + "created_at": "Mon, 16 Feb 2015 08:16:09 +0000" + }, + { + "actual_badge_id": 645, + "badge_id": 26513171, + "checkin_id": 120796729, + "badge_name": "Beer Connoisseur (Level 4)", + "badge_description": "Travel much? You must be a \"brewsetter\". That's at least a beer from 20 different countries. Try 5 more for Level 5!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_connoiseur_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_connoiseur_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_connoiseur_lg.jpg" + }, + "created_at": "Fri, 10 Oct 2014 04:08:21 +0000" + }, + { + "actual_badge_id": 644, + "badge_id": 21820986, + "checkin_id": 102241782, + "badge_name": "Beer Connoisseur (Level 3)", + "badge_description": "Travel much? You must be a \"brewsetter\". That's at least a beer from 15 different countries. Try 5 more for Level 4!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_connoiseur_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_connoiseur_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_connoiseur_lg.jpg" + }, + "created_at": "Fri, 25 Jul 2014 19:03:38 +0000" + }, + { + "actual_badge_id": 643, + "badge_id": 18279950, + "checkin_id": 87758205, + "badge_name": "Beer Connoisseur (Level 2)", + "badge_description": "Travel much? You must be a \"brewsetter\". That's at least a beer from 10 different countries. Try 5 more for Level 3!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_connoiseur_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_connoiseur_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_connoiseur_lg.jpg" + }, + "created_at": "Fri, 23 May 2014 15:44:10 +0000" + }, + { + "actual_badge_id": 14, + "badge_id": 11871742, + "checkin_id": 61049683, + "badge_name": "Beer Connoisseur", + "badge_description": "Travel much? You must be a \"brewsetter\". That's at least 5 beers from 5 different countries.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_connoiseur_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_connoiseur_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_connoiseur_lg.jpg" + }, + "created_at": "Mon, 30 Dec 2013 00:02:29 +0000" } ] }, + "badge_pack": false + }, + { + "user_badge_id": 0, + "badge_id": 15, + "checkin_id": 0, + "badge_name": "The Usual", + "badge_description": "I think you need to change it up. You've had the same beer 15 times in the last 30 days. Boring.", + "badge_hint": "Once you dust off your newbie dust - this badge should be easy for you.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 1, + "has_badge": false, + "levels": [ + ], "badge_pack": 0, "badge_pack_name": false, "badge_pack_progress": { @@ -572,6 +694,485 @@ "total": 0 } }, + { + "is_have": true, + "user_badge_id": 12800489, + "badge_id": 16, + "checkin_id": 64820629, + "badge_name": "Power Month", + "badge_description": "A beer a day will keep the doctor away... or something like that. That’s 30 brews in a month!", + "badge_hint": "Once you dust off your newbie dust - you'll be getting this badge. ", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_powerMonth_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_powerMonth_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_powerMonth_lg.jpg" + }, + "created_at": "Wed, 22 Jan 2014 05:53:36 +0000", + "local_created_at": "Wed, 22 Jan 2014 03:53:36 +0000", + "is_level": false, + "has_badge": true, + "category_id": 1, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 16732357, + "badge_id": 17, + "checkin_id": 81501373, + "badge_name": "Happy Hour Hound", + "badge_description": "It’s been a long day. Time to get your drink on. You’ve had 10 beers from 5PM - 8PM on weekdays at a location in a calendar month.", + "badge_hint": "Hang with your co-workers and drink some brews after a long day at a location. Make sure the boss doesn't catch you. Have a beer from 5pm to 8pm during the week at a location, 10 times. Please note that at the time of the check-in, the app will only take the current timezone (i.e GMT Offset) into affect and other checkins in other timezones (including daylight savings time, if your location supports it) may not count toward the badge, depending on the time of that check-in. If you have questions or concerns - let us know at http:\/\/help.untappd.com.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hhh_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hhh_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hhh_lg.jpg" + }, + "created_at": "Wed, 23 Apr 2014 15:05:36 +0000", + "local_created_at": "Wed, 23 Apr 2014 12:05:36 +0000", + "is_level": false, + "has_badge": true, + "category_id": 2, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 18, + "checkin_id": 0, + "badge_name": "Top of the Mornin", + "badge_description": "Hair of the dog? You know how to start the day off right. Have at least 5 brews before noon.", + "badge_hint": "Like the morning? You must like Pancakes for dinner. Drink 5 beers in a Calendar Month, between the hours of 6am to 12pm (not including 12pm) in your local timezone. Please note that at the time of the check-in, the app will only take the current timezone (i.e GMT Offset) into affect and other checkins in other timezones (including daylight savings time, if your location supports it) may not count toward the badge, depending on the time of that check-in. If you have questions or concerns - let us know at http:\/\/help.untappd.com.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 1, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 13194371, + "badge_id": 19, + "checkin_id": 66622179, + "badge_name": "Last Call", + "badge_description": "Closing time, one last call... enjoy a little night cap. That's at least 3 brews after 1AM.", + "badge_hint": "Night owl? Stay up late and drink some brews to get this badge. (After 1am)\r\n\r\nThe badge is only valid on Friday and Saturday and at Nightlife Spot or Food venue.\n\nPlease note that at the time of the check-in, the app will only take the current timezone (i.e GMT Offset) into affect and other checkins in other timezones (including daylight savings time, if your location supports it) may not count toward the badge, depending on the time of that check-in. If you have questions or concerns - let us know at http:\/\/help.untappd.com.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_lastCall_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_lastCall_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_lastCall_lg.jpg" + }, + "created_at": "Sat, 01 Feb 2014 20:10:18 +0000", + "local_created_at": "Sat, 01 Feb 2014 18:10:18 +0000", + "is_level": false, + "has_badge": true, + "category_id": 2, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 12186631, + "badge_id": 23, + "checkin_id": 61933257, + "badge_name": "Night Out", + "badge_description": "Enjoying a nice Night Out on the town? Thanks for taking untappd along.", + "badge_hint": "Out with Untappd? Let us you know your location and we'll give you this badge! Check in with a location from 7pm to 4am in your local timezone.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_barCrawl_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_barCrawl_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_barCrawl_lg.jpg" + }, + "created_at": "Fri, 03 Jan 2014 22:58:03 +0000", + "local_created_at": "Fri, 03 Jan 2014 20:58:03 +0000", + "is_level": false, + "has_badge": true, + "category_id": 2, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 17189142, + "badge_id": 24, + "checkin_id": 83685537, + "badge_name": "Brew Crawl", + "badge_description": "Can't stay in the same place for 1 night? That's 3 bars in 1 night.", + "badge_hint": "You don't like to stand still. Attach your location with a venue that is a Bar and you'll be rewarded.\r\n\r\nCheckin to 3 different locations all within the same night, from 7pm to 4am in your local timezone.\r\n", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brewCrawl_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brewCrawl_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brewCrawl_lg.jpg" + }, + "created_at": "Sat, 03 May 2014 15:42:43 +0000", + "local_created_at": "Sat, 03 May 2014 12:42:43 +0000", + "is_level": false, + "has_badge": true, + "category_id": 2, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 52675014, + "badge_id": 25, + "checkin_id": 168974954, + "badge_name": "Heavy Weight (Level 22)", + "badge_description": "You like it thick and dark. Your beer! What did you think we were talking about? That’s 110 different dark beers. Try 5 more to unlock Level 23.", + "badge_hint": "Try some Stouts or Porters - 5 different ones of them to be exact. You can level this badge up to 10.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_lg.jpg" + }, + "created_at": "Thu, 20 Feb 2014 17:01:09 +0000", + "local_created_at": "Thu, 20 Feb 2014 14:01:09 +0000", + "is_level": true, + "has_badge": true, + "category_id": 1, + "badge_type": "type_pack", + "next_badge_id": 3009, + "levels": { + "count": 22, + "items": [ + { + "actual_badge_id": 3008, + "badge_id": 52675014, + "checkin_id": 168974954, + "badge_name": "Heavy Weight (Level 22)", + "badge_description": "You like it thick and dark. Your beer! What did you think we were talking about? That’s 110 different dark beers. Try 5 more to unlock Level 23.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_lg.jpg" + }, + "created_at": "Fri, 03 Apr 2015 06:41:12 +0000" + }, + { + "actual_badge_id": 3007, + "badge_id": 50115670, + "checkin_id": 162769502, + "badge_name": "Heavy Weight (Level 21)", + "badge_description": "You like it thick and dark. Your beer! What did you think we were talking about? That’s 105 different dark beers. Try 5 more to unlock Level 22.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_lg.jpg" + }, + "created_at": "Sat, 14 Mar 2015 04:44:06 +0000" + }, + { + "actual_badge_id": 3006, + "badge_id": 50036161, + "checkin_id": 162569671, + "badge_name": "Heavy Weight (Level 20)", + "badge_description": "You like it thick and dark. Your beer! What did you think we were talking about? That’s 100 different dark beers. Try 5 more to unlock Level 21.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_lg.jpg" + }, + "created_at": "Fri, 13 Mar 2015 23:26:10 +0000" + }, + { + "actual_badge_id": 3005, + "badge_id": 47284652, + "checkin_id": 155560011, + "badge_name": "Heavy Weight (Level 19)", + "badge_description": "You like it thick and dark. Your beer! What did you think we were talking about? That’s 95 different dark beers. Try 5 more to unlock Level 20.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_lg.jpg" + }, + "created_at": "Mon, 16 Feb 2015 03:34:54 +0000" + }, + { + "actual_badge_id": 3004, + "badge_id": 43387431, + "checkin_id": 146782080, + "badge_name": "Heavy Weight (Level 18)", + "badge_description": "You like it thick and dark. Your beer! What did you think we were talking about? That’s 90 different dark beers. Try 5 more to unlock Level 19.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_lg.jpg" + }, + "created_at": "Fri, 16 Jan 2015 04:56:01 +0000" + }, + { + "actual_badge_id": 3003, + "badge_id": 41613284, + "checkin_id": 142423301, + "badge_name": "Heavy Weight (Level 17)", + "badge_description": "You like it thick and dark. Your beer! What did you think we were talking about? That’s 85 different dark beers. Try 5 more to unlock Level 18.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_lg.jpg" + }, + "created_at": "Tue, 30 Dec 2014 23:39:12 +0000" + }, + { + "actual_badge_id": 3002, + "badge_id": 39147550, + "checkin_id": 136475149, + "badge_name": "Heavy Weight (Level 16)", + "badge_description": "You like it thick and dark. Your beer! What did you think we were talking about? That’s 80 different dark beers. Try 5 more to unlock Level 17.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_lg.jpg" + }, + "created_at": "Thu, 11 Dec 2014 05:09:46 +0000" + }, + { + "actual_badge_id": 3001, + "badge_id": 37603916, + "checkin_id": 133464583, + "badge_name": "Heavy Weight (Level 15)", + "badge_description": "You like it thick and dark. Your beer! What did you think we were talking about? That’s 75 different dark beers. Try 5 more to unlock Level 16.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_lg.jpg" + }, + "created_at": "Sat, 29 Nov 2014 02:07:18 +0000" + }, + { + "actual_badge_id": 3000, + "badge_id": 37302775, + "checkin_id": 133136694, + "badge_name": "Heavy Weight (Level 14)", + "badge_description": "You like it thick and dark. Your beer! What did you think we were talking about? That’s 70 different dark beers. Try 5 more to unlock Level 15.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_lg.jpg" + }, + "created_at": "Fri, 28 Nov 2014 04:19:40 +0000" + }, + { + "actual_badge_id": 2999, + "badge_id": 37302774, + "checkin_id": 133136694, + "badge_name": "Heavy Weight (Level 13)", + "badge_description": "You like it thick and dark. Your beer! What did you think we were talking about? That’s 65 different dark beers. Try 5 more to unlock Level 14.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_lg.jpg" + }, + "created_at": "Fri, 28 Nov 2014 04:19:40 +0000" + }, + { + "actual_badge_id": 2998, + "badge_id": 37302773, + "checkin_id": 133136694, + "badge_name": "Heavy Weight (Level 12)", + "badge_description": "You like it thick and dark. Your beer! What did you think we were talking about? That’s 60 different dark beers. Try 5 more to unlock Level 13.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_lg.jpg" + }, + "created_at": "Fri, 28 Nov 2014 04:19:40 +0000" + }, + { + "actual_badge_id": 2997, + "badge_id": 37302772, + "checkin_id": 133136694, + "badge_name": "Heavy Weight (Level 11)", + "badge_description": "You like it thick and dark. Your beer! What did you think we were talking about? That’s 55 different dark beers. Try 5 more to unlock Level 12.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_lg.jpg" + }, + "created_at": "Fri, 28 Nov 2014 04:19:40 +0000" + }, + { + "actual_badge_id": 267, + "badge_id": 25312534, + "checkin_id": 115179902, + "badge_name": "Heavy Weight (Level 10)", + "badge_description": "You like it thick and dark. Your beer! What did you think we were talking about? That's 50 different dark beers! Try 5 more for Level 11!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_lg.jpg" + }, + "created_at": "Tue, 16 Sep 2014 01:56:08 +0000" + }, + { + "actual_badge_id": 266, + "badge_id": 23865422, + "checkin_id": 108794402, + "badge_name": "Heavy Weight (Level 9)", + "badge_description": "You like it thick and dark. Your beer! What did you think we were talking about? That’s 45 different dark beers. Try 5 more to unlock Level 10.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_lg.jpg" + }, + "created_at": "Wed, 20 Aug 2014 19:11:04 +0000" + }, + { + "actual_badge_id": 265, + "badge_id": 21395825, + "checkin_id": 100167628, + "badge_name": "Heavy Weight (Level 8)", + "badge_description": "You like it thick and dark. Your beer! What did you think we were talking about? That’s 40 different dark beers. Try 5 more to unlock Level 9.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_lg.jpg" + }, + "created_at": "Thu, 17 Jul 2014 16:36:38 +0000" + }, + { + "actual_badge_id": 264, + "badge_id": 19587301, + "checkin_id": 93149347, + "badge_name": "Heavy Weight (Level 7)", + "badge_description": "You like it thick and dark. Your beer! What did you think we were talking about? That’s 35 different dark beers. Try 5 more to unlock Level 8.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_lg.jpg" + }, + "created_at": "Sun, 15 Jun 2014 17:03:50 +0000" + }, + { + "actual_badge_id": 263, + "badge_id": 17929106, + "checkin_id": 86448760, + "badge_name": "Heavy Weight (Level 6)", + "badge_description": "You like it thick and dark. Your beer! What did you think we were talking about? That’s 30 different dark beers. Try 5 more to unlock Level 7.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_lg.jpg" + }, + "created_at": "Sat, 17 May 2014 09:25:36 +0000" + }, + { + "actual_badge_id": 262, + "badge_id": 17093558, + "checkin_id": 83204730, + "badge_name": "Heavy Weight (Level 5)", + "badge_description": "You like it thick and dark. Your beer! What did you think we were talking about? That’s 25 different dark beers. Try 5 more to unlock Level 6.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_lg.jpg" + }, + "created_at": "Thu, 01 May 2014 20:08:43 +0000" + }, + { + "actual_badge_id": 261, + "badge_id": 16207714, + "checkin_id": 79012114, + "badge_name": "Heavy Weight (Level 4)", + "badge_description": "You like it thick and dark. Your beer! What did you think we were talking about? That’s 20 different dark beers. Try 5 more to unlock Level 5.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_lg.jpg" + }, + "created_at": "Fri, 11 Apr 2014 10:59:31 +0000" + }, + { + "actual_badge_id": 260, + "badge_id": 15653327, + "checkin_id": 76780925, + "badge_name": "Heavy Weight (Level 3)", + "badge_description": "You like it thick and dark. Your beer! What did you think we were talking about? That’s 15 different dark beers. Try 5 more to unlock Level 4.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_lg.jpg" + }, + "created_at": "Sat, 29 Mar 2014 19:33:48 +0000" + }, + { + "actual_badge_id": 258, + "badge_id": 15351260, + "checkin_id": 75355475, + "badge_name": "Heavy Weight (Level 2)", + "badge_description": "You like it thick and dark. Your beer! What did you think we were talking about? That’s 10 different dark beers. Try 5 more to unlock Level 3.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_lg.jpg" + }, + "created_at": "Sat, 22 Mar 2014 16:12:29 +0000" + }, + { + "actual_badge_id": 25, + "badge_id": 13950045, + "checkin_id": 69675284, + "badge_name": "Heavy Weight", + "badge_description": "You like it thick and dark. Your beer! What did you think we were talking about? That’s 5 different dark beers. Try 5 more to unlock Level 2.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_heavyWeight_lg.jpg" + }, + "created_at": "Thu, 20 Feb 2014 17:01:09 +0000" + } + ] + }, + "badge_pack": false + }, { "user_badge_id": 42927929, "badge_id": 29, @@ -586,8 +1187,12 @@ "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_appleseed_lg.jpg" }, "created_at": "Sat, 10 Jan 2015 06:15:30 +0000", + "local_created_at": "Fri, 09 Jan 2015 23:15:30 +0000", "is_level": true, + "has_badge": true, "category_id": 1, + "badge_type": "type_pack", + "next_badge_id": 296, "levels": { "count": 1, "items": [ @@ -606,176 +1211,48 @@ } ] }, - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } + "badge_pack": false }, { - "user_badge_id": 42853659, - "badge_id": 701, - "checkin_id": 145140643, - "badge_name": "Swedish Brews", - "badge_description": "Normally DIY furniture and meatballs are all that come to mind, but now you can add Swedish beer to that list! That's 5 different beers from a brewery from Sweden. Try 5 more Level 2.", - "badge_hint": "Check-in 5 different beers from a brewery from Sweden.", + "user_badge_id": 0, + "badge_id": 30, + "checkin_id": 0, + "badge_name": "Tailgater", + "badge_description": "Burgers on the grill, beer in your hand and friends by your side. You’re ready to cheer your heart out for your team.\r\n\r\nThat's a beer at at least 5 different arenas! Checkin at 5 different ones for Level 2!", + "badge_hint": "Check-in to a beer at 5 different locations categorized as an Sporting Area or Stadium.", "badge_active_status": 1, "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_Sweden_sm.jpg", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_Sweden_md.jpg", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_Sweden_lg.jpg" + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" }, - "created_at": "Fri, 09 Jan 2015 22:26:43 +0000", + "created_at": null, "is_level": true, - "category_id": 1, - "levels": { - "count": 1, - "items": [ - { - "actual_badge_id": 701, - "badge_id": 42853659, - "checkin_id": 145140643, - "badge_name": "Swedish Brews", - "badge_description": "Normally DIY furniture and meatballs are all that come to mind, but now you can add Swedish beer to that list! That's 5 different beers from a brewery from Sweden. Try 5 more Level 2.", - "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_Sweden_sm.jpg", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_Sweden_md.jpg", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_Sweden_lg.jpg" - }, - "created_at": "Fri, 09 Jan 2015 22:26:43 +0000" - } - ] - }, - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } - }, - { - "user_badge_id": 42600109, - "badge_id": 73, - "checkin_id": 144406892, - "badge_name": "Rising Sun", - "badge_description": "You have mastered the art of Japanese Beer. That's 5 different Beers from Japan. Try 5 more for Level 2.", - "badge_hint": "Drink 5 different beers from Japan. This badge can be leveled to 10 (5 Distinct Beer per Level)", - "badge_active_status": 1, - "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_risingSun_sm.jpg", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_risingSun_md.jpg", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_risingSun_lg.jpg" - }, - "created_at": "Mon, 05 Jan 2015 04:49:50 +0000", - "is_level": true, - "category_id": 1, - "levels": { - "count": 1, - "items": [ - { - "actual_badge_id": 73, - "badge_id": 42600109, - "checkin_id": 144406892, - "badge_name": "Rising Sun", - "badge_description": "You have mastered the art of Japanese Beer. That's 5 different Beers from Japan. Try 5 more for Level 2.", - "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_risingSun_sm.jpg", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_risingSun_md.jpg", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_risingSun_lg.jpg" - }, - "created_at": "Mon, 05 Jan 2015 04:49:50 +0000" - } - ] - }, - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } - }, - { - "user_badge_id": 42600110, - "badge_id": 711, - "checkin_id": 144406892, - "badge_name": "Fruits of Your Labor", - "badge_description": "It’s been a long day and now it’s time for a reward. Crisp, tasty and refreshing, enjoy that delicious fruit beer! That's 5 different beers Fruit Beers. Try 5 more for Level 2.", - "badge_hint": "Check-in 5 different beers with the style of Fruit Beer.", - "badge_active_status": 1, - "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_FruitsOfYourLabor_sm.jpg", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_FruitsOfYourLabor_md.jpg", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_FruitsOfYourLabor_lg.jpg" - }, - "created_at": "Mon, 05 Jan 2015 04:49:50 +0000", - "is_level": true, - "category_id": 1, - "levels": { - "count": 1, - "items": [ - { - "actual_badge_id": 711, - "badge_id": 42600110, - "checkin_id": 144406892, - "badge_name": "Fruits of Your Labor", - "badge_description": "It’s been a long day and now it’s time for a reward. Crisp, tasty and refreshing, enjoy that delicious fruit beer! That's 5 different beers Fruit Beers. Try 5 more for Level 2.", - "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_FruitsOfYourLabor_sm.jpg", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_FruitsOfYourLabor_md.jpg", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_FruitsOfYourLabor_lg.jpg" - }, - "created_at": "Mon, 05 Jan 2015 04:49:50 +0000" - } - ] - }, - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } - }, - { - "badge_id": 3201, - "user_badge_id": 41734944, - "checkin_id": 142660127, - "badge_name": "Happy Brew Year (2015)", - "badge_description": "Celebrate the start of a new year with your favorite beer. We wish you an amazing 2015 full of adventure and great brews. Cheers!", - "badge_hint": "Check-in any beer on 12\/31\/14 to 1\/4\/15. Happy New Year!", - "badge_active_status": 0, - "media": { - "badge_image_sm": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_NewYears2015_sm.jpg", - "badge_image_md": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_NewYears2015_md.jpg", - "badge_image_lg": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_NewYears2015_lg.jpg" - }, - "created_at": "Wed, 31 Dec 2014 19:40:56 +0000", - "is_level": false, - "category_id": 3, + "badge_type": "venue_match", + "category_id": 2, + "has_badge": false, "levels": [ ], - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } + "badge_pack": false }, { - "badge_id": 221, - "user_badge_id": 41613008, - "checkin_id": 142422465, - "badge_name": "Beer Gathering", - "badge_description": "Beer is often better with friends. Besides, drinking socially is what we're all about! You've checked in with at least 10 other people within 5 hours.", - "badge_hint": "Check-in to a location with at least 10 others within 5 hours.", + "is_have": true, + "user_badge_id": 16735713, + "badge_id": 31, + "checkin_id": 81517641, + "badge_name": "The Regular", + "badge_description": "They know what you want when you walk in the door. That’s right, you don’t have to wait for anyone here.", + "badge_hint": "Wow you like to go to the same place a lot. Like 15 times a lot in a calendar month.", "badge_active_status": 1, "media": { - "badge_image_sm": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_beerGathering_sm.jpg", - "badge_image_md": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_beerGathering_md.jpg", - "badge_image_lg": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_beerGathering_lg.jpg" + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_regular_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_regular_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_regular_lg.jpg" }, - "created_at": "Tue, 30 Dec 2014 23:37:26 +0000", + "created_at": "Wed, 23 Apr 2014 16:15:40 +0000", + "local_created_at": "Wed, 23 Apr 2014 13:15:40 +0000", "is_level": false, + "has_badge": true, "category_id": 2, "levels": [ ], @@ -787,111 +1264,119 @@ } }, { - "user_badge_id": 40962687, - "badge_id": 72, - "checkin_id": 140910084, - "badge_name": "Find the Source", - "badge_description": "Everyone loves fresh beer, but obviously not as much as you do. You went straight to the source. \r\n\r\nThat's a beer at 5 different venues categorized as a Brewery. Visit 5 more different ones for Level 2!", - "badge_hint": "Check-in a beer at 5 different venues categorized as a Brewery. This badge can be leveled to 10.", + "is_have": true, + "user_badge_id": 28093236, + "badge_id": 32, + "checkin_id": 126230487, + "badge_name": "Six Pack", + "badge_description": "It’s in the fridge, so why not drink it. Hope you don’t get bored. Drink 6 of the same beer, in a row, in 1 week.", + "badge_hint": "They say a title tells the story. This time - they are dead on. Drink 6 of the same beer, in a row, in 1 week. Don't have another a beer in-between!", "badge_active_status": 1, "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_findSource_sm.jpg", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_findSource_md.jpg", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_findSource_lg.jpg" + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_sixPack_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_sixPack_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_sixPack_lg.jpg" }, - "created_at": "Fri, 26 Dec 2014 19:15:59 +0000", + "created_at": "Sat, 01 Nov 2014 03:29:13 +0000", + "local_created_at": "Fri, 31 Oct 2014 21:29:13 +0000", + "is_level": false, + "has_badge": true, + "category_id": 1, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 30152987, + "badge_id": 35, + "checkin_id": 130431925, + "badge_name": "Birthday Brew", + "badge_description": "Happy birthday to you! Drinks are on us! Hopefully you’ll remember this tomorrow.", + "badge_hint": "Go out and celebrate your birthday with Untappd!", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_bdayBrew_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_bdayBrew_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_bdayBrew_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:01 +0000", + "local_created_at": "Mon, 17 Nov 2014 18:37:01 +0000", "is_level": true, - "category_id": 2, + "has_badge": true, + "category_id": 1, + "badge_type": "birthday_badge", + "next_badge_id": 146, "levels": { "count": 1, "items": [ { - "actual_badge_id": 72, - "badge_id": 40962687, - "checkin_id": 140910084, - "badge_name": "Find the Source", - "badge_description": "Everyone loves fresh beer, but obviously not as much as you do. You went straight to the source. \r\n\r\nThat's a beer at 5 different venues categorized as a Brewery. Visit 5 more different ones for Level 2!", + "actual_badge_id": 35, + "badge_id": 30152987, + "checkin_id": 130431925, + "badge_name": "Birthday Brew", + "badge_description": "Happy birthday to you! Drinks are on us! Hopefully you’ll remember this tomorrow.", "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_findSource_sm.jpg", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_findSource_md.jpg", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_findSource_lg.jpg" + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_bdayBrew_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_bdayBrew_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_bdayBrew_lg.jpg" }, - "created_at": "Fri, 26 Dec 2014 19:15:59 +0000" + "created_at": "Tue, 18 Nov 2014 01:37:01 +0000" } ] }, - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } + "badge_pack": false }, { - "badge_id": 3200, - "user_badge_id": 40724552, - "checkin_id": 140562810, - "badge_name": "Merry Brew-mas (2014)", - "badge_description": "’Tis the season of joy, cheer and of course, great beer. Wishing you a wonderful holiday season! Merry Brew-mas to all and to all a good pint. From all of us at Untappd, Happy Holidays!", - "badge_hint": "Check-in any beer from 12\/25\/14 to 12\/28\/14 in your local-time zone.", - "badge_active_status": 0, - "media": { - "badge_image_sm": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_Christmas2014_sm.jpg", - "badge_image_md": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_Christmas2014_md.jpg", - "badge_image_lg": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_Christmas2014_lg.jpg" - }, - "created_at": "Thu, 25 Dec 2014 20:02:02 +0000", - "is_level": false, - "category_id": 3, - "levels": [ - ], - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } - }, - { - "badge_id": 3199, - "user_badge_id": 40248482, - "checkin_id": 139410173, - "badge_name": "Shock Top Winter Collection (2014)", - "badge_description": "Aw yeah! You have officially unlocked Shock Top bragging rights and this sweet winter seasonal badge. Best. Day. Ever. Don’t forget to mix and match to create your own epic combos.", - "badge_hint": "Check in one beer from the 2014 Shock Top Winter sampler pack by 2\/15.", - "badge_active_status": 0, - "media": { - "badge_image_sm": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_ShockTopWinter_lg.jpg", - "badge_image_md": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_ShockTopWinter_lg.jpg", - "badge_image_lg": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_ShockTopWinter_lg.jpg" - }, - "created_at": "Sun, 21 Dec 2014 22:15:36 +0000", - "is_level": false, - "category_id": 3, - "levels": [ - ], - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } - }, - { - "badge_id": 8, - "user_badge_id": 39216736, - "checkin_id": 136628608, - "badge_name": "Lite Weight", - "badge_description": "Watching your figure? You certainly like your light beer. That's at least 3 of the most popular American Light Beers.", - "badge_hint": "Drink the top 3 American Light beers. Come on - you see them on the commercials all the time.", + "is_have": true, + "user_badge_id": 28907537, + "badge_id": 36, + "checkin_id": 129390330, + "badge_name": "Here Comes the Brew", + "badge_description": "Weddings are always so nice, especially with an open bar. Let everyone know you’re at a wedding in the comment!", + "badge_hint": "Let your friends know that you're at a wedding with your check-in (add the word \"Wedding\" to your check-in comment)!", "badge_active_status": 1, "media": { - "badge_image_sm": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_liteWeight_sm.jpg", - "badge_image_md": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_liteWeight_md.jpg", - "badge_image_lg": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_liteWeight_lg.jpg" + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hereComesBrew_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hereComesBrew_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hereComesBrew_lg.jpg" }, - "created_at": "Fri, 12 Dec 2014 02:09:55 +0000", + "created_at": "Fri, 14 Nov 2014 21:32:31 +0000", + "local_created_at": "Fri, 14 Nov 2014 14:32:31 +0000", "is_level": false, + "has_badge": true, + "category_id": 2, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 17520194, + "badge_id": 37, + "checkin_id": 85261982, + "badge_name": "Social Drinker", + "badge_description": "You’re very talkative. A couple of brews will do that to ya’. Comment on 10 different check-ins in a month.", + "badge_hint": "Tell your friends you enjoy their brew by leaving a comment. Do it! Make sure you check-in after you hit 10 comments, you can only earn the badge if check-in!", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_socialDrnkr_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_socialDrnkr_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_socialDrnkr_lg.jpg" + }, + "created_at": "Sat, 10 May 2014 20:11:52 +0000", + "local_created_at": "Sat, 10 May 2014 17:11:52 +0000", + "is_level": false, + "has_badge": true, "category_id": 1, "levels": [ ], @@ -903,20 +1388,23 @@ } }, { - "badge_id": 9, - "user_badge_id": 39216737, - "checkin_id": 136628608, - "badge_name": "All American", - "badge_description": "America, f**k yeah! It feels good to be an American! Now what channel’s got NASCAR?", - "badge_hint": "Tough one here - drink the popular American beers (Coors, Bud, Miller) - plus a special Platinum beer from Bud...", + "is_have": true, + "user_badge_id": 52941809, + "badge_id": 38, + "checkin_id": 169651149, + "badge_name": "Risk Taker", + "badge_description": "You’ve never had it, but you’ll take our word for it. Try 10 different recommended brews in the last 60 days.", + "badge_hint": "Take your pick, select a recommended beer from our list!", "badge_active_status": 1, "media": { - "badge_image_sm": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_allAmerican_sm.jpg", - "badge_image_md": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_allAmerican_md.jpg", - "badge_image_lg": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_allAmerican_lg.jpg" + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_riskTaker_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_riskTaker_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_riskTaker_lg.jpg" }, - "created_at": "Fri, 12 Dec 2014 02:09:55 +0000", + "created_at": "Sat, 04 Apr 2015 21:56:54 +0000", + "local_created_at": "Sat, 04 Apr 2015 15:56:54 +0000", "is_level": false, + "has_badge": true, "category_id": 1, "levels": [ ], @@ -928,21 +1416,251 @@ } }, { - "badge_id": 3198, - "user_badge_id": 37302771, - "checkin_id": 133136694, - "badge_name": "Beer-giving (2014)", - "badge_description": "Crack open your favorite brew and be thankful for all the craft beer community has given us while celebrating with friends and family! Cheers and happy Thanksgiving!", - "badge_hint": "Check-in any beer between 11\/27\/14 - 11\/30\/14 in your local-timezone. Happy Thanksgiving!", - "badge_active_status": 0, + "user_badge_id": 0, + "badge_id": 39, + "checkin_id": 0, + "badge_name": "Adventurer", + "badge_description": "That’s one way to get over your fear of roller coasters. Just hope you can keep it down on the loop!\r\n\r\nThat a beer at 5 more different Amusement Parks! Check-in at 5 more different ones to get to Level 2!", + "badge_hint": "Check-in to a beer at 5 different locations categorized as an Amusement Park", + "badge_active_status": 1, "media": { - "badge_image_sm": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_thanksgiving2014_sm.png", - "badge_image_md": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_thanksgiving2014_md.png", - "badge_image_lg": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_thanksgiving2014_lg.png" + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" }, - "created_at": "Fri, 28 Nov 2014 04:19:40 +0000", + "created_at": null, + "is_level": true, + "badge_type": "venue_match", + "category_id": 2, + "has_badge": false, + "levels": [ + ], + "badge_pack": false + }, + { + "is_have": true, + "user_badge_id": 11368266, + "badge_id": 40, + "checkin_id": 59340918, + "badge_name": "Taste Crazy", + "badge_description": "Are you crazy? Five different types of beer in one day? Hope you were just sampling.", + "badge_hint": "Wow, you love to try new things. Try at least 5 different brews in 1 day.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_tasteCrazy_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_tasteCrazy_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_tasteCrazy_lg.jpg" + }, + "created_at": "Sat, 21 Dec 2013 22:08:19 +0000", + "local_created_at": "Sat, 21 Dec 2013 20:08:19 +0000", "is_level": false, - "category_id": 3, + "has_badge": true, + "category_id": 1, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 11867601, + "badge_id": 41, + "checkin_id": 61030010, + "badge_name": "Toast King", + "badge_description": "You raise your glass so much you barely have time to drink it! Cheers! Toast to 15 check-ins in a month.", + "badge_hint": "Raise your glass! Toast your friend's check-in!", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_toastKing_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_toastKing_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_toastKing_lg.jpg" + }, + "created_at": "Sun, 29 Dec 2013 22:59:18 +0000", + "local_created_at": "Sun, 29 Dec 2013 20:59:18 +0000", + "is_level": false, + "has_badge": true, + "category_id": 1, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 43, + "checkin_id": 0, + "badge_name": "Ahoy Matey!", + "badge_description": "Is the ship swaying or did you just have one too many? Hope you don’t get sea sick!", + "badge_hint": "Take Untappd with you to the Booze Cruise!", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 2, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 45, + "checkin_id": 0, + "badge_name": "Layover", + "badge_description": "Bad weather? Strike? Flight delayed? Head over to the nearest bar and kill some time! \r\n\r\nThat's a beer at 5 different Airports! Try 5 more different ones for Level 2!", + "badge_hint": "Check-in a beer at 5 different locations categorized as an Airport.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": true, + "badge_type": "venue_match", + "category_id": 2, + "has_badge": false, + "levels": [ + ], + "badge_pack": false + }, + { + "user_badge_id": 0, + "badge_id": 46, + "checkin_id": 0, + "badge_name": "Beach Bum", + "badge_description": "Feet in the sand and a can in your hand while you watch the waves roll in.\r\n\r\nThat's a beer at 5 different venues categorized as a beach! Go to 5 more different ones to get Level 2!", + "badge_hint": "That's a beer at 5 different venues categorized as a beach! You can level this badge up to 10.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": true, + "badge_type": "venue_match", + "category_id": 2, + "has_badge": false, + "levels": [ + ], + "badge_pack": false + }, + { + "user_badge_id": 28379559, + "badge_id": 47, + "checkin_id": 127171447, + "badge_name": "Das Boot (Level 4)", + "badge_description": "Das sind mindestens 20 deutsche Biere! David Hasselhoff would be proud of you. Prost!\r\n\r\nThat's 20 different German Beers! Try 5 more for Level 5.", + "badge_hint": "Enjoy some German beers. 5 different ones to be exact. This badge can be leveled to 10 (5 Distinct Beers per Level).", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_dasBoot_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_dasBoot_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_dasBoot_lg.jpg" + }, + "created_at": "Mon, 23 Dec 2013 15:11:19 +0000", + "local_created_at": "Mon, 23 Dec 2013 13:11:19 +0000", + "is_level": true, + "has_badge": true, + "category_id": 1, + "badge_type": "country_badge", + "next_badge_id": 495, + "levels": { + "count": 4, + "items": [ + { + "actual_badge_id": 494, + "badge_id": 28379559, + "checkin_id": 127171447, + "badge_name": "Das Boot (Level 4)", + "badge_description": "Das sind mindestens 20 deutsche Biere! David Hasselhoff would be proud of you. Prost!\r\n\r\nThat's 20 different German Beers! Try 5 more for Level 5.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_dasBoot_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_dasBoot_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_dasBoot_lg.jpg" + }, + "created_at": "Wed, 05 Nov 2014 02:31:47 +0000" + }, + { + "actual_badge_id": 493, + "badge_id": 22213046, + "checkin_id": 104148370, + "badge_name": "Das Boot (Level 3)", + "badge_description": "Das sind mindestens 15 deutsche Biere! David Hasselhoff would be proud of you. Prost!\r\n\r\nThat's 15 different German Beers! Try 5 more for Level 4.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_dasBoot_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_dasBoot_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_dasBoot_lg.jpg" + }, + "created_at": "Sat, 02 Aug 2014 09:33:29 +0000" + }, + { + "actual_badge_id": 492, + "badge_id": 15344703, + "checkin_id": 75322861, + "badge_name": "Das Boot (Level 2)", + "badge_description": "Das sind mindestens 15 deutsche Biere! David Hasselhoff would be proud of you. Prost!\r\n\r\nThat's 10 different German Beers! Try 5 more for Level 3.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_dasBoot_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_dasBoot_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_dasBoot_lg.jpg" + }, + "created_at": "Sat, 22 Mar 2014 15:09:02 +0000" + }, + { + "actual_badge_id": 47, + "badge_id": 11450037, + "checkin_id": 59688720, + "badge_name": "Das Boot", + "badge_description": "Das sind mindestens 5 deutsche Biere! David Hasselhoff would be proud of you. Prost! Try 5 more for Level 2.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_dasBoot_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_dasBoot_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_dasBoot_lg.jpg" + }, + "created_at": "Mon, 23 Dec 2013 15:11:19 +0000" + } + ] + }, + "badge_pack": false + }, + { + "is_have": true, + "user_badge_id": 12837340, + "badge_id": 48, + "checkin_id": 64980548, + "badge_name": "Weekday Warrior", + "badge_description": "Planning on calling out tomorrow? If not, we’ll be sure to have some coffee ready for you! Drink 5 beers during the week after 10PM.", + "badge_hint": "Drink during the week after 10pm! That is what a warrior would do. This badge is only available Sunday - Thursday. Please note that at the time of the check-in, the app will only take the current timezone (i.e GMT Offset) into affect and other checkins in other timezones (including daylight savings time, if your location supports it) may not count toward the badge, depending on the time of that check-in. If you have questions or concerns - let us know at http:\/\/help.untappd.com.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_weekdayWarrior_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_weekdayWarrior_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_weekdayWarrior_lg.jpg" + }, + "created_at": "Thu, 23 Jan 2014 16:47:43 +0000", + "local_created_at": "Thu, 23 Jan 2014 14:47:43 +0000", + "is_level": false, + "has_badge": true, + "category_id": 1, "levels": [ ], "badge_pack": 0, @@ -955,7 +1673,7 @@ { "user_badge_id": 51428399, "badge_id": 49, - "checkin_id": 131032585, + "checkin_id": 165815130, "badge_name": "Winter Wonderland (Level 2)", "badge_description": "It's cold outside - warm up with Winter beers. That's at least 10 different Winter beers try 5 more for Level 3!", "badge_hint": "Check-in to 5 different beers with a Winter theme (meaning that they have Winter in the title or style).\r\n", @@ -966,8 +1684,12 @@ "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_wonderland_lg.jpg" }, "created_at": "Fri, 21 Nov 2014 03:27:16 +0000", + "local_created_at": "Thu, 20 Nov 2014 20:27:16 +0000", "is_level": true, + "has_badge": true, "category_id": 1, + "badge_type": "theme_badge", + "next_badge_id": 819, "levels": { "count": 2, "items": [ @@ -999,69 +1721,26 @@ } ] }, - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } + "badge_pack": false }, { - "user_badge_id": 30152987, - "badge_id": 35, - "checkin_id": 130431925, - "badge_name": "Birthday Brew", - "badge_description": "Happy birthday to you! Drinks are on us! Hopefully you’ll remember this tomorrow.", - "badge_hint": "Go out and celebrate your birthday with Untappd!", + "is_have": true, + "user_badge_id": 16840735, + "badge_id": 50, + "checkin_id": 81980281, + "badge_name": "Drinking Your Paycheck", + "badge_description": "It’s been a long week and you deserve a drink, or five. Besides, isn’t that what your check is for?", + "badge_hint": "It's Friday - you could blow your whole pay check on Booze or you could save it..", "badge_active_status": 1, "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_bdayBrew_sm.jpg", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_bdayBrew_md.jpg", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_bdayBrew_lg.jpg" + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_payCheck_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_payCheck_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_payCheck_lg.jpg" }, - "created_at": "Tue, 18 Nov 2014 01:37:01 +0000", - "is_level": true, - "category_id": 1, - "levels": { - "count": 1, - "items": [ - { - "actual_badge_id": 35, - "badge_id": 30152987, - "checkin_id": 130431925, - "badge_name": "Birthday Brew", - "badge_description": "Happy birthday to you! Drinks are on us! Hopefully you’ll remember this tomorrow.", - "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_bdayBrew_sm.jpg", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_bdayBrew_md.jpg", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_bdayBrew_lg.jpg" - }, - "created_at": "Tue, 18 Nov 2014 01:37:01 +0000" - } - ] - }, - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } - }, - { - "badge_id": 42, - "user_badge_id": 29056952, - "checkin_id": 130071455, - "badge_name": "Legendary", - "badge_description": "Your beer tastes are legendary. That’s over 500 different brews!", - "badge_hint": "Check-in to 500 different beers. It's that simple.", - "badge_active_status": 1, - "media": { - "badge_image_sm": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_legendary_sm.jpg", - "badge_image_md": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_legendary_md.jpg", - "badge_image_lg": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_legendary_lg.jpg" - }, - "created_at": "Sun, 16 Nov 2014 05:44:48 +0000", + "created_at": "Fri, 25 Apr 2014 19:19:07 +0000", + "local_created_at": "Fri, 25 Apr 2014 16:19:07 +0000", "is_level": false, + "has_badge": true, "category_id": 1, "levels": [ ], @@ -1073,39 +1752,46 @@ } }, { - "user_badge_id": 29035146, - "badge_id": 455, - "checkin_id": 129966008, - "badge_name": "Gourd to the Last Drop", - "badge_description": "Fall is in the air and the holidays are just around the corner, but pies and jack-o-lanterns aren't the only things pumpkins are good for. Pumpkin beers have grown in popularity, bringing with them a delicate balance of malt and spices. That's 5 different pumpkin beers! Try 5 more for Level 2!", - "badge_hint": "Check in to 5 different beers that have a style Pumpkin\/Yam. This badge can be leveled to 10. It is not retroactive, your counter started on 10\/11\/13.", + "user_badge_id": 0, + "badge_id": 51, + "checkin_id": 0, + "badge_name": "Hitting the Slopes", + "badge_description": "Just because it’s cold outside doesn’t mean you can’t enjoy a cold brew inside. Watch out for trees on your way down.\r\n\r\nThat's a beer at 5 different venues categorized as Ski Area! Visit 5 more different ones for Level 2!", + "badge_hint": "That's a beer at 5 different venues categorized as Ski Area! This badge can be leveled to 10.", "badge_active_status": 1, "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_pumpkinBeer_sm.jpg", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_pumpkinBeer_md.jpg", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_pumpkinBeer_lg.jpg" + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" }, - "created_at": "Sun, 16 Nov 2014 01:56:19 +0000", + "created_at": null, "is_level": true, - "category_id": 1, - "levels": { - "count": 1, - "items": [ - { - "actual_badge_id": 455, - "badge_id": 29035146, - "checkin_id": 129966008, - "badge_name": "Gourd to the Last Drop", - "badge_description": "Fall is in the air and the holidays are just around the corner, but pies and jack-o-lanterns aren't the only things pumpkins are good for. Pumpkin beers have grown in popularity, bringing with them a delicate balance of malt and spices. That's 5 different pumpkin beers! Try 5 more for Level 2!", - "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_pumpkinBeer_sm.jpg", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_pumpkinBeer_md.jpg", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_pumpkinBeer_lg.jpg" - }, - "created_at": "Sun, 16 Nov 2014 01:56:19 +0000" - } - ] + "badge_type": "venue_match", + "category_id": 2, + "has_badge": false, + "levels": [ + ], + "badge_pack": false + }, + { + "user_badge_id": 0, + "badge_id": 52, + "checkin_id": 0, + "badge_name": "Founder's Hangouts", + "badge_description": "Looking for the Untappd team? You’ll likely find us at our favorite places: West 4th \/ Jane in Santa Monica and The Pony Bar in NYC.", + "badge_hint": "Check-in to a beer at our favorite spots to get this badge!", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" }, + "created_at": null, + "is_level": false, + "category_id": 3, + "has_badge": false, + "levels": [ + ], "badge_pack": 0, "badge_pack_name": false, "badge_pack_progress": { @@ -1114,20 +1800,1283 @@ } }, { - "badge_id": 36, - "user_badge_id": 28907537, - "checkin_id": 129390330, - "badge_name": "Here Comes the Brew", - "badge_description": "Weddings are always so nice, especially with an open bar. Let everyone know you’re at a wedding in the comment!", - "badge_hint": "Let your friends know that you're at a wedding with your check-in (add the word \"Wedding\" to your check-in comment)!", + "user_badge_id": 53648798, + "badge_id": 55, + "checkin_id": 171159723, + "badge_name": "New Brew Thursday (Level 9)", + "badge_description": "It's New Brew Thursday! Drink a new beer on three Thursdays in a 30 day period! Find out how New Brew Thursday<\/a> was started, and catch up on old episodes.", + "badge_hint": "Try something new for 3 Thursdays in a 30 day period. You can only level up once per 30 days.", "badge_active_status": 1, "media": { - "badge_image_sm": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_hereComesBrew_sm.jpg", - "badge_image_md": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_hereComesBrew_md.jpg", - "badge_image_lg": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_hereComesBrew_lg.jpg" + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_nbt_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_nbt_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_nbt_lg.jpg" }, - "created_at": "Fri, 14 Nov 2014 21:32:31 +0000", + "created_at": "Thu, 23 Jan 2014 16:18:34 +0000", + "local_created_at": "Thu, 23 Jan 2014 14:18:34 +0000", + "is_level": true, + "has_badge": true, + "category_id": 3, + "badge_type": "new_brew_thursday", + "next_badge_id": 130, + "levels": { + "count": 9, + "items": [ + { + "actual_badge_id": 119, + "badge_id": 53648798, + "checkin_id": 171159723, + "badge_name": "New Brew Thursday (Level 9)", + "badge_description": "It's New Brew Thursday! Drink a new beer on three Thursdays in a 30 day period! Find out how New Brew Thursday<\/a> was started, and catch up on old episodes.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_nbt_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_nbt_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_nbt_lg.jpg" + }, + "created_at": "Fri, 10 Apr 2015 01:07:02 +0000" + }, + { + "actual_badge_id": 115, + "badge_id": 45293209, + "checkin_id": 150517726, + "badge_name": "New Brew Thursday (Level 8)", + "badge_description": "It's New Brew Thursday! Drink a new beer on three Thursdays in a 30 day period! Find out how New Brew Thursday<\/a> was started, and catch up on old episodes.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_nbt_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_nbt_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_nbt_lg.jpg" + }, + "created_at": "Fri, 30 Jan 2015 06:05:34 +0000" + }, + { + "actual_badge_id": 113, + "badge_id": 40724553, + "checkin_id": 140562810, + "badge_name": "New Brew Thursday (Level 7)", + "badge_description": "It's New Brew Thursday! Drink a new beer on three Thursdays in a 30 day period! Find out how New Brew Thursday<\/a> was started, and catch up on old episodes.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_nbt_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_nbt_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_nbt_lg.jpg" + }, + "created_at": "Thu, 25 Dec 2014 20:02:02 +0000" + }, + { + "actual_badge_id": 105, + "badge_id": 33569514, + "checkin_id": 130972922, + "badge_name": "New Brew Thursday (Level 6)", + "badge_description": "It's New Brew Thursday! Drink a new beer on three Thursdays in a 30 day period! Find out how New Brew Thursday<\/a> was started, and catch up on old episodes.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_nbt_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_nbt_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_nbt_lg.jpg" + }, + "created_at": "Fri, 21 Nov 2014 01:04:26 +0000" + }, + { + "actual_badge_id": 102, + "badge_id": 26836498, + "checkin_id": 122365523, + "badge_name": "New Brew Thursday (Level 5)", + "badge_description": "It's New Brew Thursday! Drink a new beer on three Thursdays in a 30 day period! Find out how New Brew Thursday<\/a> was started, and catch up on old episodes.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_nbt_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_nbt_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_nbt_lg.jpg" + }, + "created_at": "Thu, 16 Oct 2014 19:54:05 +0000" + }, + { + "actual_badge_id": 97, + "badge_id": 22825140, + "checkin_id": 105494744, + "badge_name": "New Brew Thursday (Level 4)", + "badge_description": "It's New Brew Thursday! Drink a new beer on three Thursdays in a 30 day period! Find out how New Brew Thursday<\/a> was started, and catch up on old episodes.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_nbt_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_nbt_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_nbt_lg.jpg" + }, + "created_at": "Thu, 07 Aug 2014 18:06:33 +0000" + }, + { + "actual_badge_id": 96, + "badge_id": 18185142, + "checkin_id": 87530194, + "badge_name": "New Brew Thursday (Level 3)", + "badge_description": "It's New Brew Thursday! Drink a new beer on three Thursdays in a 30 day period! Find out how New Brew Thursday<\/a> was started, and catch up on old episodes.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_nbt_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_nbt_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_nbt_lg.jpg" + }, + "created_at": "Thu, 22 May 2014 16:22:22 +0000" + }, + { + "actual_badge_id": 66, + "badge_id": 16468379, + "checkin_id": 80254132, + "badge_name": "New Brew Thursday (Level 2)", + "badge_description": "It's New Brew Thursday! Drink a new beer on three Thursdays in a 30 day period! Find out how New Brew Thursday<\/a> was started, and catch up on old episodes.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_nbt_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_nbt_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_nbt_lg.jpg" + }, + "created_at": "Thu, 17 Apr 2014 15:34:10 +0000" + }, + { + "actual_badge_id": 55, + "badge_id": 12835371, + "checkin_id": 64973183, + "badge_name": "New Brew Thursday", + "badge_description": "It's New Brew Thursday! Drink a new beer on three Thursdays in a 30 day period! Find out how New Brew Thursday<\/a> was started, and catch up on old episodes.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_nbt_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_nbt_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_nbt_lg.jpg" + }, + "created_at": "Thu, 23 Jan 2014 16:18:34 +0000" + } + ] + }, + "badge_pack": false + }, + { + "user_badge_id": 54939740, + "badge_id": 60, + "checkin_id": 174663105, + "badge_name": "I Believe in IPA! (Level 35)", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 175 different IPAs. Try 5 more for Level 36!", + "badge_hint": "Try 5 different IPA style beers. This badge can be leveled to 10. You can earn 1 level per 24 hours.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Thu, 23 Jan 2014 16:47:43 +0000", + "local_created_at": "Thu, 23 Jan 2014 14:47:43 +0000", + "is_level": true, + "has_badge": true, + "category_id": 1, + "badge_type": "type_pack", + "next_badge_id": 2622, + "levels": { + "count": 35, + "items": [ + { + "actual_badge_id": 2621, + "badge_id": 54939740, + "checkin_id": 174663105, + "badge_name": "I Believe in IPA! (Level 35)", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 175 different IPAs. Try 5 more for Level 36!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Sun, 19 Apr 2015 23:49:03 +0000" + }, + { + "actual_badge_id": 2620, + "badge_id": 53431473, + "checkin_id": 170682984, + "badge_name": "I Believe in IPA! (Level 34)", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 170 different IPAs. Try 5 more for Level 35!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Wed, 08 Apr 2015 01:32:58 +0000" + }, + { + "actual_badge_id": 2619, + "badge_id": 51688679, + "checkin_id": 166492534, + "badge_name": "I Believe in IPA! (Level 33)", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 165 different IPAs. Try 5 more for Level 34!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Thu, 26 Mar 2015 04:28:16 +0000" + }, + { + "actual_badge_id": 2618, + "badge_id": 49249001, + "checkin_id": 160587388, + "badge_name": "I Believe in IPA! (Level 32)", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 160 different IPAs. Try 5 more for Level 33!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Sat, 07 Mar 2015 02:16:13 +0000" + }, + { + "actual_badge_id": 2617, + "badge_id": 46259361, + "checkin_id": 152643210, + "badge_name": "I Believe in IPA! (Level 31)", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 155 different IPAs. Try 5 more for Level 32!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Sat, 07 Feb 2015 00:17:04 +0000" + }, + { + "actual_badge_id": 2616, + "badge_id": 46214103, + "checkin_id": 152519530, + "badge_name": "I Believe in IPA! (Level 30)", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 150 different IPAs. Try 5 more for Level 31!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Fri, 06 Feb 2015 18:42:47 +0000" + }, + { + "actual_badge_id": 2615, + "badge_id": 42592432, + "checkin_id": 144386695, + "badge_name": "I Believe in IPA! (Level 29)", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 145 different IPAs. Try 5 more for Level 30!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Mon, 05 Jan 2015 02:57:39 +0000" + }, + { + "actual_badge_id": 2614, + "badge_id": 41567660, + "checkin_id": 142292104, + "badge_name": "I Believe in IPA! (Level 28)", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 140 different IPAs. Try 5 more for Level 29!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Tue, 30 Dec 2014 06:21:38 +0000" + }, + { + "actual_badge_id": 2613, + "badge_id": 40465100, + "checkin_id": 140022446, + "badge_name": "I Believe in IPA! (Level 27)", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 135 different IPAs. Try 5 more for Level 28!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Wed, 24 Dec 2014 02:54:35 +0000" + }, + { + "actual_badge_id": 2612, + "badge_id": 37883242, + "checkin_id": 133840975, + "badge_name": "I Believe in IPA! (Level 26)", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 130 different IPAs. Try 5 more for Level 27!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Sun, 30 Nov 2014 00:31:27 +0000" + }, + { + "actual_badge_id": 2611, + "badge_id": 30153056, + "checkin_id": 130431925, + "badge_name": "I Believe in IPA! (Level 25)", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 125 different IPAs. Try 5 more for Level 26!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:01 +0000" + }, + { + "actual_badge_id": 2610, + "badge_id": 30153049, + "checkin_id": 130431925, + "badge_name": "I Believe in IPA! (Level 24)", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 120 different IPAs. Try 5 more for Level 25!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:01 +0000" + }, + { + "actual_badge_id": 2609, + "badge_id": 30153044, + "checkin_id": 130431925, + "badge_name": "I Believe in IPA! (Level 23)", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 115 different IPAs. Try 5 more for Level 24!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:01 +0000" + }, + { + "actual_badge_id": 2608, + "badge_id": 30153040, + "checkin_id": 130431925, + "badge_name": "I Believe in IPA! (Level 22)", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 110 different IPAs. Try 5 more for Level 23!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:01 +0000" + }, + { + "actual_badge_id": 2607, + "badge_id": 30153036, + "checkin_id": 130431925, + "badge_name": "I Believe in IPA! (Level 21)", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 105 different IPAs. Try 5 more for Level 22!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:01 +0000" + }, + { + "actual_badge_id": 2606, + "badge_id": 30153032, + "checkin_id": 130431925, + "badge_name": "I Believe in IPA! (Level 20)", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 100 different IPAs. Try 5 more for Level 21!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:01 +0000" + }, + { + "actual_badge_id": 2605, + "badge_id": 30153028, + "checkin_id": 130431925, + "badge_name": "I Believe in IPA! (Level 19)", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 95 different IPAs. Try 5 more for Level 20!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:01 +0000" + }, + { + "actual_badge_id": 2604, + "badge_id": 30153023, + "checkin_id": 130431925, + "badge_name": "I Believe in IPA! (Level 18)", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 90 different IPAs. Try 5 more for Level 19!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:01 +0000" + }, + { + "actual_badge_id": 2603, + "badge_id": 30153019, + "checkin_id": 130431925, + "badge_name": "I Believe in IPA! (Level 17)", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 85 different IPAs. Try 5 more for Level 18!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:01 +0000" + }, + { + "actual_badge_id": 2602, + "badge_id": 30153014, + "checkin_id": 130431925, + "badge_name": "I Believe in IPA! (Level 16)", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 80 different IPAs. Try 5 more for Level 17!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:01 +0000" + }, + { + "actual_badge_id": 2601, + "badge_id": 30153010, + "checkin_id": 130431925, + "badge_name": "I Believe in IPA! (Level 15)", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 75 different IPAs. Try 5 more for Level 16!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:01 +0000" + }, + { + "actual_badge_id": 2600, + "badge_id": 30153006, + "checkin_id": 130431925, + "badge_name": "I Believe in IPA! (Level 14)", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 70 different IPAs. Try 5 more for Level 15!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:01 +0000" + }, + { + "actual_badge_id": 2599, + "badge_id": 30153003, + "checkin_id": 130431925, + "badge_name": "I Believe in IPA! (Level 13)", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 65 different IPAs. Try 5 more for Level 14!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:01 +0000" + }, + { + "actual_badge_id": 2598, + "badge_id": 30153001, + "checkin_id": 130431925, + "badge_name": "I Believe in IPA! (Level 12)", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 60 different IPAs. Try 5 more for Level 13!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:01 +0000" + }, + { + "actual_badge_id": 2597, + "badge_id": 30152998, + "checkin_id": 130431925, + "badge_name": "I Believe in IPA! (Level 11)", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 55 different IPAs. Try 5 more for Level 12!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:01 +0000" + }, + { + "actual_badge_id": 127, + "badge_id": 18115203, + "checkin_id": 87206485, + "badge_name": "I Believe in IPA! (Level 10)", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 50 different IPAs. Try 5 more for Level 11!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Tue, 20 May 2014 16:06:21 +0000" + }, + { + "actual_badge_id": 118, + "badge_id": 17926090, + "checkin_id": 86437617, + "badge_name": "I Believe in IPA! (Level 9)", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 45 different IPAs. Try 5 more for Level 10!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Sat, 17 May 2014 08:06:07 +0000" + }, + { + "actual_badge_id": 114, + "badge_id": 17810237, + "checkin_id": 86071730, + "badge_name": "I Believe in IPA! (Level 8)", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 40 different IPAs. Try 5 more for Level 9.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Thu, 15 May 2014 18:23:59 +0000" + }, + { + "actual_badge_id": 111, + "badge_id": 17395049, + "checkin_id": 84622457, + "badge_name": "I Believe in IPA! (Level 7)", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 35 different IPAs. Try 5 more for Level 8.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Thu, 08 May 2014 18:12:31 +0000" + }, + { + "actual_badge_id": 104, + "badge_id": 17176199, + "checkin_id": 83618147, + "badge_name": "I Believe in IPA! (Level 6)", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 30 different IPAs. Try 5 more for Level 7.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Sat, 03 May 2014 13:16:47 +0000" + }, + { + "actual_badge_id": 99, + "badge_id": 17056248, + "checkin_id": 83043535, + "badge_name": "I Believe in IPA! (Level 5)", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 25 different IPAs. Try 5 more for Level 6.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Wed, 30 Apr 2014 21:29:18 +0000" + }, + { + "actual_badge_id": 92, + "badge_id": 16744248, + "checkin_id": 81560174, + "badge_name": "I Believe in IPA! (Level 4)", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 20 different IPAs. Try 5 more for Level 5.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Wed, 23 Apr 2014 18:35:13 +0000" + }, + { + "actual_badge_id": 86, + "badge_id": 16687388, + "checkin_id": 81284156, + "badge_name": "I Believe in IPA! (Level 3)", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 15 different IPAs. Try 5 more for Level 4.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Mon, 21 Apr 2014 18:03:08 +0000" + }, + { + "actual_badge_id": 63, + "badge_id": 15795204, + "checkin_id": 77455851, + "badge_name": "I Believe in IPA! (Level 2)", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 10 different IPAs. Try 5 more for Level 3.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Thu, 03 Apr 2014 14:57:56 +0000" + }, + { + "actual_badge_id": 60, + "badge_id": 12837341, + "checkin_id": 64980548, + "badge_name": "I Believe in IPA!", + "badge_description": "We believe in IPA and you should too. You certainly have a taste for the hops! That's 5 different IPAs. Try 5 more for Level 2", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_hoptopia_lg.jpg" + }, + "created_at": "Thu, 23 Jan 2014 16:47:43 +0000" + } + ] + }, + "badge_pack": false + }, + { + "user_badge_id": 47296896, + "badge_id": 71, + "checkin_id": 155594701, + "badge_name": "God Save the Queen (Level 8)", + "badge_description": "Had enough tea and biscuits? Head to the pub for a pint! That's at least 40 different beers from the UK. Try 5 more for Level 9!", + "badge_hint": "Drink 5 different beers from the United Kingdom or England. This badge can be leveled to 10 (5 Distinct Beer per Level).", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_godSaveTheQueen_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_godSaveTheQueen_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_godSaveTheQueen_lg.jpg" + }, + "created_at": "Sat, 29 Mar 2014 18:50:04 +0000", + "local_created_at": "Sat, 29 Mar 2014 15:50:04 +0000", + "is_level": true, + "has_badge": true, + "category_id": 1, + "badge_type": "country_badge", + "next_badge_id": 508, + "levels": { + "count": 8, + "items": [ + { + "actual_badge_id": 507, + "badge_id": 47296896, + "checkin_id": 155594701, + "badge_name": "God Save the Queen (Level 8)", + "badge_description": "Had enough tea and biscuits? Head to the pub for a pint! That's at least 40 different beers from the UK. Try 5 more for Level 9!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_godSaveTheQueen_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_godSaveTheQueen_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_godSaveTheQueen_lg.jpg" + }, + "created_at": "Mon, 16 Feb 2015 08:16:09 +0000" + }, + { + "actual_badge_id": 506, + "badge_id": 37302776, + "checkin_id": 133136694, + "badge_name": "God Save the Queen (Level 7)", + "badge_description": "Had enough tea and biscuits? Head to the pub for a pint! That's at least 35 different beers from the UK. Try 5 more for Level 8!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_godSaveTheQueen_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_godSaveTheQueen_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_godSaveTheQueen_lg.jpg" + }, + "created_at": "Fri, 28 Nov 2014 04:19:40 +0000" + }, + { + "actual_badge_id": 505, + "badge_id": 27829884, + "checkin_id": 125710432, + "badge_name": "God Save the Queen (Level 6)", + "badge_description": "Had enough tea and biscuits? Head to the pub for a pint! That's at least 30 different beers from the UK. Try 5 more for Level 7!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_godSaveTheQueen_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_godSaveTheQueen_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_godSaveTheQueen_lg.jpg" + }, + "created_at": "Thu, 30 Oct 2014 02:01:36 +0000" + }, + { + "actual_badge_id": 504, + "badge_id": 25549484, + "checkin_id": 116257421, + "badge_name": "God Save the Queen (Level 5)", + "badge_description": "Had enough tea and biscuits? Head to the pub for a pint! That's at least 25 different beers from the UK. Try 5 more for Level 6!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_godSaveTheQueen_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_godSaveTheQueen_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_godSaveTheQueen_lg.jpg" + }, + "created_at": "Sat, 20 Sep 2014 22:30:44 +0000" + }, + { + "actual_badge_id": 503, + "badge_id": 20404545, + "checkin_id": 96554384, + "badge_name": "God Save the Queen (Level 4)", + "badge_description": "Had enough tea and biscuits? Head to the pub for a pint! That's at least 20 different beers from the UK. Try 5 more for Level 5!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_godSaveTheQueen_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_godSaveTheQueen_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_godSaveTheQueen_lg.jpg" + }, + "created_at": "Tue, 01 Jul 2014 17:23:55 +0000" + }, + { + "actual_badge_id": 502, + "badge_id": 17385722, + "checkin_id": 84581613, + "badge_name": "God Save the Queen (Level 3)", + "badge_description": "Had enough tea and biscuits? Head to the pub for a pint! That's at least 15 different beers from the UK. Try 5 more for Level 3!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_godSaveTheQueen_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_godSaveTheQueen_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_godSaveTheQueen_lg.jpg" + }, + "created_at": "Thu, 08 May 2014 16:26:19 +0000" + }, + { + "actual_badge_id": 501, + "badge_id": 16743104, + "checkin_id": 81554448, + "badge_name": "God Save the Queen (Level 2)", + "badge_description": "Had enough tea and biscuits? Head to the pub for a pint! That's at least 10 different beers from the UK. Try 5 more for Level 2!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_godSaveTheQueen_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_godSaveTheQueen_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_godSaveTheQueen_lg.jpg" + }, + "created_at": "Wed, 23 Apr 2014 18:16:57 +0000" + }, + { + "actual_badge_id": 71, + "badge_id": 15648946, + "checkin_id": 76759518, + "badge_name": "God Save the Queen", + "badge_description": "Had enough tea and biscuits? Head to the pub for a pint! That's at least 5 Beers from the UK. Try 5 more for Level 2.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_godSaveTheQueen_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_godSaveTheQueen_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_godSaveTheQueen_lg.jpg" + }, + "created_at": "Sat, 29 Mar 2014 18:50:04 +0000" + } + ] + }, + "badge_pack": false + }, + { + "user_badge_id": 40962687, + "badge_id": 72, + "checkin_id": 140910084, + "badge_name": "Find the Source", + "badge_description": "Everyone loves fresh beer, but obviously not as much as you do. You went straight to the source. \r\n\r\nThat's a beer at 5 different venues categorized as a Brewery. Visit 5 more different ones for Level 2!", + "badge_hint": "Check-in a beer at 5 different venues categorized as a Brewery. This badge can be leveled to 10.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_findSource_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_findSource_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_findSource_lg.jpg" + }, + "created_at": "Fri, 26 Dec 2014 19:15:59 +0000", + "local_created_at": "Fri, 26 Dec 2014 14:15:59 +0000", + "is_level": true, + "has_badge": true, + "category_id": 2, + "badge_type": "venue_match", + "next_badge_id": 356, + "levels": { + "count": 1, + "items": [ + { + "actual_badge_id": 72, + "badge_id": 40962687, + "checkin_id": 140910084, + "badge_name": "Find the Source", + "badge_description": "Everyone loves fresh beer, but obviously not as much as you do. You went straight to the source. \r\n\r\nThat's a beer at 5 different venues categorized as a Brewery. Visit 5 more different ones for Level 2!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_findSource_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_findSource_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_findSource_lg.jpg" + }, + "created_at": "Fri, 26 Dec 2014 19:15:59 +0000" + } + ] + }, + "badge_pack": false + }, + { + "user_badge_id": 42600109, + "badge_id": 73, + "checkin_id": 144406892, + "badge_name": "Rising Sun", + "badge_description": "You have mastered the art of Japanese Beer. That's 5 different Beers from Japan. Try 5 more for Level 2.", + "badge_hint": "Drink 5 different beers from Japan. This badge can be leveled to 10 (5 Distinct Beer per Level)", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_risingSun_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_risingSun_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_risingSun_lg.jpg" + }, + "created_at": "Mon, 05 Jan 2015 04:49:50 +0000", + "local_created_at": "Sun, 04 Jan 2015 21:49:50 +0000", + "is_level": true, + "has_badge": true, + "category_id": 1, + "badge_type": "country_badge", + "next_badge_id": 510, + "levels": { + "count": 1, + "items": [ + { + "actual_badge_id": 73, + "badge_id": 42600109, + "checkin_id": 144406892, + "badge_name": "Rising Sun", + "badge_description": "You have mastered the art of Japanese Beer. That's 5 different Beers from Japan. Try 5 more for Level 2.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_risingSun_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_risingSun_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_risingSun_lg.jpg" + }, + "created_at": "Mon, 05 Jan 2015 04:49:50 +0000" + } + ] + }, + "badge_pack": false + }, + { + "user_badge_id": 0, + "badge_id": 74, + "checkin_id": 0, + "badge_name": "Bowl-A-Rama", + "badge_description": "Strike, Spare, Gutter-ball?!?! Who cares when you’ve a got a pitcher standing by! \r\n\r\nThat's a beer at 5 different venues categorized as a Bowling Alley! Visit 5 more different for Level 2!", + "badge_hint": "That's a beer at 5 different venues categorized as a Bowling Alley! This badge can be leveled to 10.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": true, + "badge_type": "venue_match", + "category_id": 2, + "has_badge": false, + "levels": [ + ], + "badge_pack": false + }, + { + "user_badge_id": 0, + "badge_id": 75, + "checkin_id": 0, + "badge_name": "Down Under", + "badge_description": "Do you come from the land down under, where beer does flow, and men chunder? That's at least 5 beers from Australia. Try 5 more for Level 2.", + "badge_hint": "Are you seeing Kangaroos? Have at least 5 different beers from Australia! This badge can be leveled to 10 (5 Distinct Beer per Level)", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": true, + "badge_type": "country_badge", + "category_id": 1, + "has_badge": false, + "levels": [ + ], + "badge_pack": false + }, + { + "user_badge_id": 0, + "badge_id": 76, + "checkin_id": 0, + "badge_name": "Brewery Loyalist", + "badge_description": "Some may call you picky, others narrow minded, but we call you loyal. Other breweries may try to tempt you, but you know what you like. Enjoy 10 beers from the same brewery in 30 days.", + "badge_hint": "You're loyal and that's a good thing. Have 10 beers from the same brewery in a 30 day period.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, "is_level": false, + "category_id": 1, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 24235914, + "badge_id": 77, + "checkin_id": 110309464, + "badge_name": "Trappist Travesty", + "badge_description": "Sounds like you’re considering joining the Trappist Monks. I thought Monks couldn't drink beer? Oh well. That's 5 Trappist Beers!", + "badge_hint": "Planning to be a monk? Try 5 different beers from Trappist Breweries! PS - Check Wikipedia.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_trappist_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_trappist_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_trappist_lg.jpg" + }, + "created_at": "Wed, 27 Aug 2014 02:21:36 +0000", + "local_created_at": "Tue, 26 Aug 2014 23:21:36 +0000", + "is_level": false, + "has_badge": true, + "category_id": 1, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 11409404, + "badge_id": 78, + "checkin_id": 59513926, + "badge_name": "Playing the Field", + "badge_description": "Does the word picking favorites mean anything to you? Obviously not. That's 10 different beers in a row.", + "badge_hint": "Be spontaneous - try 10 different beers in a row.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_playingTheField_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_playingTheField_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_playingTheField_lg.jpg" + }, + "created_at": "Sun, 22 Dec 2013 15:54:26 +0000", + "local_created_at": "Sun, 22 Dec 2013 13:54:26 +0000", + "is_level": false, + "has_badge": true, + "category_id": 1, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 40724555, + "badge_id": 79, + "checkin_id": 140562810, + "badge_name": "Brew Traveler (Level 2)", + "badge_description": "You're exploring this great country the best way possible, one delicious beer at a time! That's one beer while in at least 10 states or countries. Visit 5 more for Level 3!", + "badge_hint": "You like to get around. No - that's a good thing! Try a beer in 5 states or countries. This badge can be leveled to 10.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_traveller_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_traveller_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_traveller_lg.jpg" + }, + "created_at": "Thu, 17 Apr 2014 15:34:10 +0000", + "local_created_at": "Thu, 17 Apr 2014 12:34:10 +0000", + "is_level": true, + "has_badge": true, + "category_id": 2, + "badge_type": "traveller", + "next_badge_id": 614, + "levels": { + "count": 2, + "items": [ + { + "actual_badge_id": 613, + "badge_id": 40724555, + "checkin_id": 140562810, + "badge_name": "Brew Traveler (Level 2)", + "badge_description": "You're exploring this great country the best way possible, one delicious beer at a time! That's one beer while in at least 10 states or countries. Visit 5 more for Level 3!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_traveller_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_traveller_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_traveller_lg.jpg" + }, + "created_at": "Thu, 25 Dec 2014 20:02:03 +0000" + }, + { + "actual_badge_id": 79, + "badge_id": 16468380, + "checkin_id": 80254132, + "badge_name": "Brew Traveler", + "badge_description": "You're exploring this great country the best way possible, one delicious beer at a time! That's one beer while in at least 5 states or countries.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_traveller_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_traveller_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_traveller_lg.jpg" + }, + "created_at": "Thu, 17 Apr 2014 15:34:10 +0000" + } + ] + }, + "badge_pack": false + }, + { + "is_have": true, + "user_badge_id": 18466625, + "badge_id": 80, + "checkin_id": 88275398, + "badge_name": "Your Wish Came True", + "badge_description": "If you only had one wish, we bet it would be to enjoy at least 10 beers from your Wish List in a 60 day period.", + "badge_hint": "Have a 10 beers from your Wish List, once per day, in a 60 day period.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_wishList_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_wishList_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_wishList_lg.jpg" + }, + "created_at": "Sat, 24 May 2014 20:24:22 +0000", + "local_created_at": "Sat, 24 May 2014 17:24:22 +0000", + "is_level": false, + "has_badge": true, + "category_id": 1, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 19738504, + "badge_id": 84, + "checkin_id": 93740888, + "badge_name": "Untappd Groupie", + "badge_description": "Woah! You’ve had at least five beers that the Untappd founders have had. That’s tough since we like a wide variety of beers. Obviously you’re just trying to be cool like us!", + "badge_hint": "Have 5 beers that the Co-Founders of Untappd have had in the last 90 days.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_groupie_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_groupie_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_groupie_lg.jpg" + }, + "created_at": "Thu, 19 Jun 2014 14:38:57 +0000", + "local_created_at": "Thu, 19 Jun 2014 11:38:57 +0000", + "is_level": false, + "has_badge": true, + "category_id": 1, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 108, + "checkin_id": 0, + "badge_name": "Summer Fun", + "badge_description": "It's time for Summer! It's that time of year where you hit the beach and crack open your favorite Summer brew! That's at least 5 different Summer beers try 5 more for Level 2!", + "badge_hint": "Drink 5 different beers with the word 'Summer' in the beer's name. This badge can be leveled to 10.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": true, + "badge_type": "theme_badge", + "category_id": 1, + "has_badge": false, + "levels": [ + ], + "badge_pack": false + }, + { + "user_badge_id": 0, + "badge_id": 117, + "checkin_id": 0, + "badge_name": "Oktoberfest", + "badge_description": "The leaves are changing color, which means it's that magical time of year full of festivals, sausages, and of course, plenty of bubbly brews! Enjoy your Oktoberfest and don't forget your lederhosen.", + "badge_hint": "Check-in to 5 different beers that are categorized as Oktoberfest\/Marzen. This year around badge, so you might earn it off-season! This badge can be leveled to 10.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": true, + "badge_type": "type_pack", + "category_id": 1, + "has_badge": false, + "levels": [ + ], + "badge_pack": false + }, + { + "user_badge_id": 48027705, + "badge_id": 135, + "checkin_id": 157313900, + "badge_name": "Belgian Holiday (Level 9)", + "badge_description": "You obviously are a big fan of Belgian Beer, and rightfully so! Three cheers to the great Belgian beers and their uniquely crafted flavors!\r\n\r\nThat's 45 different beers from Belgium. Try 5 more for Level 10.", + "badge_hint": "Checkin to 5 different beers from Belgium. This badge can be leveled to 10 (5 Distinct Beer per Level)", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_belgianHoliday_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_belgianHoliday_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_belgianHoliday_lg.jpg" + }, + "created_at": "Wed, 25 Dec 2013 17:23:40 +0000", + "local_created_at": "Wed, 25 Dec 2013 15:23:40 +0000", + "is_level": true, + "has_badge": true, + "category_id": 1, + "badge_type": "country_badge", + "next_badge_id": 537, + "levels": { + "count": 9, + "items": [ + { + "actual_badge_id": 536, + "badge_id": 48027705, + "checkin_id": 157313900, + "badge_name": "Belgian Holiday (Level 9)", + "badge_description": "You obviously are a big fan of Belgian Beer, and rightfully so! Three cheers to the great Belgian beers and their uniquely crafted flavors!\r\n\r\nThat's 45 different beers from Belgium. Try 5 more for Level 10.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_belgianHoliday_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_belgianHoliday_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_belgianHoliday_lg.jpg" + }, + "created_at": "Sun, 22 Feb 2015 07:15:16 +0000" + }, + { + "actual_badge_id": 535, + "badge_id": 38998247, + "checkin_id": 136103452, + "badge_name": "Belgian Holiday (Level 8)", + "badge_description": "You obviously are a big fan of Belgian Beer, and rightfully so! Three cheers to the great Belgian beers and their uniquely crafted flavors!\r\n\r\nThat's 40 different beers from Belgium. Try 5 more for Level 9.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_belgianHoliday_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_belgianHoliday_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_belgianHoliday_lg.jpg" + }, + "created_at": "Tue, 09 Dec 2014 02:46:56 +0000" + }, + { + "actual_badge_id": 534, + "badge_id": 28563698, + "checkin_id": 127828814, + "badge_name": "Belgian Holiday (Level 7)", + "badge_description": "You obviously are a big fan of Belgian Beer, and rightfully so! Three cheers to the great Belgian beers and their uniquely crafted flavors!\r\n\r\nThat's 35 different beers from Belgium. Try 5 more for Level 8.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_belgianHoliday_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_belgianHoliday_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_belgianHoliday_lg.jpg" + }, + "created_at": "Sat, 08 Nov 2014 02:33:14 +0000" + }, + { + "actual_badge_id": 533, + "badge_id": 25539079, + "checkin_id": 116208029, + "badge_name": "Belgian Holiday (Level 6)", + "badge_description": "You obviously are a big fan of Belgian Beer, and rightfully so! Three cheers to the great Belgian beers and their uniquely crafted flavors!\r\n\r\nThat's 30 different beers from Belgium. Try 5 more for Level 7.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_belgianHoliday_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_belgianHoliday_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_belgianHoliday_lg.jpg" + }, + "created_at": "Sat, 20 Sep 2014 21:08:10 +0000" + }, + { + "actual_badge_id": 532, + "badge_id": 24235916, + "checkin_id": 110309464, + "badge_name": "Belgian Holiday (Level 5)", + "badge_description": "You obviously are a big fan of Belgian Beer, and rightfully so! Three cheers to the great Belgian beers and their uniquely crafted flavors!\r\n\r\nThat's 25 different beers from Belgium. Try 5 more for Level 6.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_belgianHoliday_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_belgianHoliday_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_belgianHoliday_lg.jpg" + }, + "created_at": "Wed, 27 Aug 2014 02:21:36 +0000" + }, + { + "actual_badge_id": 531, + "badge_id": 18466626, + "checkin_id": 88275398, + "badge_name": "Belgian Holiday (Level 4)", + "badge_description": "You obviously are a big fan of Belgian Beer, and rightfully so! Three cheers to the great Belgian beers and their uniquely crafted flavors!\r\n\r\nThat's 20 different beers from Belgium. Try 5 more for Level 5.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_belgianHoliday_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_belgianHoliday_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_belgianHoliday_lg.jpg" + }, + "created_at": "Sat, 24 May 2014 20:24:23 +0000" + }, + { + "actual_badge_id": 530, + "badge_id": 17431652, + "checkin_id": 84800462, + "badge_name": "Belgian Holiday (Level 3)", + "badge_description": "You obviously are a big fan of Belgian Beer, and rightfully so! Three cheers to the great Belgian beers and their uniquely crafted flavors!\r\n\r\nThat's 15 different beers from Belgium. Try 5 more for Level 4.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_belgianHoliday_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_belgianHoliday_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_belgianHoliday_lg.jpg" + }, + "created_at": "Fri, 09 May 2014 16:36:54 +0000" + }, + { + "actual_badge_id": 528, + "badge_id": 15646076, + "checkin_id": 76745497, + "badge_name": "Belgian Holiday (Level 2)", + "badge_description": "You obviously are a big fan of Belgian Beer, and rightfully so! Three cheers to the great Belgian beers and their uniquely crafted flavors!\r\n\r\nThat's 10 different beers from Belgium. Try 5 more for Level 3.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_belgianHoliday_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_belgianHoliday_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_belgianHoliday_lg.jpg" + }, + "created_at": "Sat, 29 Mar 2014 18:22:46 +0000" + }, + { + "actual_badge_id": 135, + "badge_id": 11559883, + "checkin_id": 60070662, + "badge_name": "Belgian Holiday", + "badge_description": "You obviously are a big fan of Belgian Beer, and rightfully so! Three cheers to the great Belgian beers and their uniquely crafted flavors! That's 5 different beers from Belgium! Try 5 more for Level 2!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_belgianHoliday_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_belgianHoliday_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_belgianHoliday_lg.jpg" + }, + "created_at": "Wed, 25 Dec 2013 17:23:40 +0000" + } + ] + }, + "badge_pack": false + }, + { + "is_have": true, + "user_badge_id": 13151098, + "badge_id": 140, + "checkin_id": 66427355, + "badge_name": "Bar Explorer", + "badge_description": "Your quest to quench your thirst leaves no stone unturned! That's at least 10 distinct venues!", + "badge_hint": "Check in to 10 different venues.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_goingPlaces_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_goingPlaces_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_goingPlaces_lg.jpg" + }, + "created_at": "Sat, 01 Feb 2014 11:37:07 +0000", + "local_created_at": "Sat, 01 Feb 2014 09:37:07 +0000", + "is_level": false, + "has_badge": true, "category_id": 2, "levels": [ ], @@ -1139,162 +3088,312 @@ } }, { - "badge_id": 814, - "user_badge_id": 28561884, - "checkin_id": 127819161, - "badge_name": "Coast to Coast Toast (2014)", - "badge_description": "What’s the Coast to Coast Toast? Learn more about the beers, nationwide Toast, events near you and more at http:\/\/www.coast-­2-­coast-­toast.com<\/a>. By obtaining this badge, you’ll also be eligible to sign up and win a trip to Iceland for two, courtesy of Iceland Naturally, Total Beverage Solutions and Untappd! Winners will be chosen at random in a drawing on December 5th.", - "badge_hint": "Check­in one (1) beer from a selected list of beer on the Untappd Blog between 11\/1\/14 ­- 12\/1\/14.", - "badge_active_status": 0, - "media": { - "badge_image_sm": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_C2CT2014_sm.jpg", - "badge_image_md": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_C2CT2014_md.jpg", - "badge_image_lg": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_C2CT2014_lg.jpg" - }, - "created_at": "Sat, 08 Nov 2014 02:16:19 +0000", - "is_level": false, - "category_id": 3, - "levels": [ - ], - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } - }, - { - "badge_id": 816, - "user_badge_id": 28479351, - "checkin_id": 127514834, - "badge_name": "Stout Day (2014)", - "badge_description": "Cheers to the thick, roasted goodness that is the stout! International Stout Day is a celebration of this iconic beer style, creating awareness of it's bold, malty and full bodied deliciousness. Enjoy a stout and show your love!", - "badge_hint": "Check-in to any stout style beer on International Stout Day, November 6th!", - "badge_active_status": 0, - "media": { - "badge_image_sm": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_StoutDay2014_sm.jpg", - "badge_image_md": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_StoutDay2014_md.jpg", - "badge_image_lg": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_StoutDay2014_lg.jpg" - }, - "created_at": "Fri, 07 Nov 2014 01:51:51 +0000", - "is_level": false, - "category_id": 3, - "levels": [ - ], - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } - }, - { - "badge_id": 32, - "user_badge_id": 28093236, - "checkin_id": 126230487, - "badge_name": "Six Pack", - "badge_description": "It’s in the fridge, so why not drink it. Hope you don’t get bored. Drink 6 of the same beer, in a row, in 1 week.", - "badge_hint": "They say a title tells the story. This time - they are dead on. Drink 6 of the same beer, in a row, in 1 week. Don't have another a beer in-between!", + "user_badge_id": 50064451, + "badge_id": 184, + "checkin_id": 162640178, + "badge_name": "Pucker Up (Level 5)", + "badge_description": "Right about now you’re feeling your face tighten and your taste buds explode. The full pucker is quickly setting in and you can’t get enough. This is the wonder of the sour. That's 25 different Sour Beers. Try 5 more for Level 6.", + "badge_hint": "Check-in to 5 different sour beers. A sour beer on Untappd is any beer with a style of the following: Sour Ale, American Wild Ale, Lambic, Gose, Berliner Weisse, Flanders Red Ale, Flanders Oud Bruin, Gueuze or Faro.", "badge_active_status": 1, "media": { - "badge_image_sm": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_sixPack_sm.jpg", - "badge_image_md": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_sixPack_md.jpg", - "badge_image_lg": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_sixPack_lg.jpg" + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_SourBrew_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_SourBrew_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_SourBrew_lg.jpg" }, - "created_at": "Sat, 01 Nov 2014 03:29:13 +0000", - "is_level": false, - "category_id": 1, - "levels": [ - ], - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } - }, - { - "badge_id": 812, - "user_badge_id": 28023063, - "checkin_id": 126111038, - "badge_name": "Witch's Brew (2014)", - "badge_description": "Trick or treat? Halloween is here and the witch's brew is ready for partaking. Break out your most ghastly of beers and celebrate!", - "badge_hint": "Check-in any beer from 10\/31 to 11\/2 (in your local timezone).", - "badge_active_status": 0, - "media": { - "badge_image_sm": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_Halloween2014_sm.jpg", - "badge_image_md": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_Halloween2014_md.jpg", - "badge_image_lg": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_Halloween2014_lg.jpg" - }, - "created_at": "Sat, 01 Nov 2014 00:00:41 +0000", - "is_level": false, - "category_id": 3, - "levels": [ - ], - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } - }, - { - "user_badge_id": 27834646, - "badge_id": 671, - "checkin_id": 125730883, - "badge_name": "Going Dutch", - "badge_description": "When it comes to a delicious beer from the Netherlands, going Dutch doesn’t have to mean sharing it. That's 5 different beers from a brewery from the Netherlands. Try 5 more Level 2.", - "badge_hint": "Check-in 5 different beers from the Netherlands.", - "badge_active_status": 1, - "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_GoingDutch_sm.jpg?v=1", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_GoingDutch_md.jpg?v=1", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_GoingDutch_lg.jpg?v=1" - }, - "created_at": "Thu, 30 Oct 2014 03:17:04 +0000", + "created_at": "Tue, 03 Jun 2014 18:06:56 +0000", + "local_created_at": "Tue, 03 Jun 2014 15:06:56 +0000", "is_level": true, + "has_badge": true, "category_id": 1, + "badge_type": "type_pack", + "next_badge_id": 309, "levels": { - "count": 1, + "count": 5, "items": [ { - "actual_badge_id": 671, - "badge_id": 27834646, - "checkin_id": 125730883, - "badge_name": "Going Dutch", - "badge_description": "When it comes to a delicious beer from the Netherlands, going Dutch doesn’t have to mean sharing it. That's 5 different beers from a brewery from the Netherlands. Try 5 more Level 2.", + "actual_badge_id": 308, + "badge_id": 50064451, + "checkin_id": 162640178, + "badge_name": "Pucker Up (Level 5)", + "badge_description": "Right about now you’re feeling your face tighten and your taste buds explode. The full pucker is quickly setting in and you can’t get enough. This is the wonder of the sour. That's 25 different Sour Beers. Try 5 more for Level 6.", "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_GoingDutch_sm.jpg?v=1", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_GoingDutch_md.jpg?v=1", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_GoingDutch_lg.jpg?v=1" + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_SourBrew_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_SourBrew_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_SourBrew_lg.jpg" }, - "created_at": "Thu, 30 Oct 2014 03:17:04 +0000" + "created_at": "Sat, 14 Mar 2015 00:58:05 +0000" + }, + { + "actual_badge_id": 307, + "badge_id": 44522499, + "checkin_id": 148687574, + "badge_name": "Pucker Up (Level 4)", + "badge_description": "Right about now you’re feeling your face tighten and your taste buds explode. The full pucker is quickly setting in and you can’t get enough. This is the wonder of the sour. That's 20 different Sour Beers. Try 5 more for Level 5.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_SourBrew_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_SourBrew_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_SourBrew_lg.jpg" + }, + "created_at": "Fri, 23 Jan 2015 06:16:33 +0000" + }, + { + "actual_badge_id": 306, + "badge_id": 30794463, + "checkin_id": 130486195, + "badge_name": "Pucker Up (Level 3)", + "badge_description": "Right about now you’re feeling your face tighten and your taste buds explode. The full pucker is quickly setting in and you can’t get enough. This is the wonder of the sour. That's 15 different Sour Beers. Try 5 more for Level 4.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_SourBrew_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_SourBrew_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_SourBrew_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 05:20:50 +0000" + }, + { + "actual_badge_id": 305, + "badge_id": 25627617, + "checkin_id": 116633598, + "badge_name": "Pucker Up (Level 2)", + "badge_description": "Right about now you’re feeling your face tighten and your taste buds explode. The full pucker is quickly setting in and you can’t get enough. This is the wonder of the sour. That's 10 different Sour Beers. Try 5 more for Level 3.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_SourBrew_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_SourBrew_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_SourBrew_lg.jpg" + }, + "created_at": "Sun, 21 Sep 2014 23:10:17 +0000" + }, + { + "actual_badge_id": 184, + "badge_id": 18948394, + "checkin_id": 90409273, + "badge_name": "Pucker Up", + "badge_description": "Right about now you’re feeling your face tighten and your taste buds explode. The full pucker is quickly setting in and you can’t get enough. This is the wonder of the sour. That's 5 different Sour Beers. Try 5 more for Level 2.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_SourBrew_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_SourBrew_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_SourBrew_lg.jpg" + }, + "created_at": "Tue, 03 Jun 2014 18:06:56 +0000" } ] }, - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } + "badge_pack": false }, { - "badge_id": 810, - "user_badge_id": 27264591, - "checkin_id": 124027843, - "badge_name": "Untappd 4th Anniversary", - "badge_description": "Three cheers to four years! It's Untappd's fourth birthday and we couldn't be happier. Celebrate with your favorite brew - you deserve it. Thanks to you and the entire community for all the support! ", - "badge_hint": "Check-in to any beer and celebrate Untappd's 4th birthday between 10\/22 - 10\/31.", - "badge_active_status": 0, + "user_badge_id": 55713515, + "badge_id": 185, + "checkin_id": 176588768, + "badge_name": "Pale as the Moon (Level 13)", + "badge_description": "Ahh, the trusty pale ale; crisp, refreshing, and always a good choice in a bind. That's 65 different Pale Ales. Try 5 more for Level 14.", + "badge_hint": "Check into 5 different Pale Ales (Imperial Pales, American Pale Ales, New Zealand Pale Ale). This badge can be leveled to 10.", + "badge_active_status": 1, "media": { - "badge_image_sm": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_utfouryears_sm.jpg", - "badge_image_md": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_utfouryears_md.jpg", - "badge_image_lg": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_utfouryears_lg.jpg" + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_lg.jpg" }, - "created_at": "Thu, 23 Oct 2014 04:43:30 +0000", + "created_at": "Thu, 13 Feb 2014 13:49:52 +0000", + "local_created_at": "Thu, 13 Feb 2014 11:49:52 +0000", + "is_level": true, + "has_badge": true, + "category_id": 1, + "badge_type": "type_pack", + "next_badge_id": 2160, + "levels": { + "count": 13, + "items": [ + { + "actual_badge_id": 2159, + "badge_id": 55713515, + "checkin_id": 176588768, + "badge_name": "Pale as the Moon (Level 13)", + "badge_description": "Ahh, the trusty pale ale; crisp, refreshing, and always a good choice in a bind. That's 65 different Pale Ales. Try 5 more for Level 14.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_lg.jpg" + }, + "created_at": "Sun, 26 Apr 2015 02:05:03 +0000" + }, + { + "actual_badge_id": 2158, + "badge_id": 55454890, + "checkin_id": 175992254, + "badge_name": "Pale as the Moon (Level 12)", + "badge_description": "Ahh, the trusty pale ale; crisp, refreshing, and always a good choice in a bind. That's 60 different Pale Ales. Try 5 more for Level 13.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_lg.jpg" + }, + "created_at": "Sat, 25 Apr 2015 02:35:16 +0000" + }, + { + "actual_badge_id": 2157, + "badge_id": 55454889, + "checkin_id": 175992254, + "badge_name": "Pale as the Moon (Level 11)", + "badge_description": "Ahh, the trusty pale ale; crisp, refreshing, and always a good choice in a bind. That's 55 different Pale Ales. Try 5 more for Level 12.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_lg.jpg" + }, + "created_at": "Sat, 25 Apr 2015 02:35:16 +0000" + }, + { + "actual_badge_id": 295, + "badge_id": 53168669, + "checkin_id": 170252414, + "badge_name": "Pale as the Moon (Level 10)", + "badge_description": "Ahh, the trusty pale ale; crisp, refreshing, and always a good choice in a bind. That's 50 different Pale Ales! Try 5 more for Level 11.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_lg.jpg" + }, + "created_at": "Mon, 06 Apr 2015 04:11:44 +0000" + }, + { + "actual_badge_id": 294, + "badge_id": 42338528, + "checkin_id": 143752837, + "badge_name": "Pale as the Moon (Level 9)", + "badge_description": "Ahh, the trusty pale ale; crisp, refreshing, and always a good choice in a bind. That's 45 different Pale Ales. Try 5 more for Level 10.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_lg.jpg" + }, + "created_at": "Sat, 03 Jan 2015 05:38:22 +0000" + }, + { + "actual_badge_id": 293, + "badge_id": 40446100, + "checkin_id": 139966591, + "badge_name": "Pale as the Moon (Level 8)", + "badge_description": "Ahh, the trusty pale ale; crisp, refreshing, and always a good choice in a bind. That's 40 different Pale Ales. Try 5 more for Level 9.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_lg.jpg" + }, + "created_at": "Wed, 24 Dec 2014 01:09:49 +0000" + }, + { + "actual_badge_id": 292, + "badge_id": 27827228, + "checkin_id": 125698700, + "badge_name": "Pale as the Moon (Level 7)", + "badge_description": "Ahh, the trusty pale ale; crisp, refreshing, and always a good choice in a bind. That's 35 different Pale Ales. Try 5 more for Level 8.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_lg.jpg" + }, + "created_at": "Thu, 30 Oct 2014 01:27:09 +0000" + }, + { + "actual_badge_id": 291, + "badge_id": 25577601, + "checkin_id": 116390063, + "badge_name": "Pale as the Moon (Level 6)", + "badge_description": "Ahh, the trusty pale ale; crisp, refreshing, and always a good choice in a bind. That's 30 different Pale Ales. Try 5 more for Level 7.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_lg.jpg" + }, + "created_at": "Sun, 21 Sep 2014 02:09:20 +0000" + }, + { + "actual_badge_id": 290, + "badge_id": 21391067, + "checkin_id": 100147381, + "badge_name": "Pale as the Moon (Level 5)", + "badge_description": "Ahh, the trusty pale ale; crisp, refreshing, and always a good choice in a bind. That's 25 different Pale Ales. Try 5 more for Level 6.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_lg.jpg" + }, + "created_at": "Thu, 17 Jul 2014 15:41:38 +0000" + }, + { + "actual_badge_id": 289, + "badge_id": 17422722, + "checkin_id": 84753497, + "badge_name": "Pale as the Moon (Level 4)", + "badge_description": "Ahh, the trusty pale ale; crisp, refreshing, and always a good choice in a bind. That's 20 different Pale Ales. Try 5 more for Level 5.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_lg.jpg" + }, + "created_at": "Fri, 09 May 2014 14:31:35 +0000" + }, + { + "actual_badge_id": 288, + "badge_id": 16737709, + "checkin_id": 81527168, + "badge_name": "Pale as the Moon (Level 3)", + "badge_description": "Ahh, the trusty pale ale; crisp, refreshing, and always a good choice in a bind. That's 15 different Pale Ales. Try 5 more for Level 4.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_lg.jpg" + }, + "created_at": "Wed, 23 Apr 2014 16:48:47 +0000" + }, + { + "actual_badge_id": 287, + "badge_id": 15658164, + "checkin_id": 76805009, + "badge_name": "Pale as the Moon (Level 2)", + "badge_description": "Ahh, the trusty pale ale; crisp, refreshing, and always a good choice in a bind. That's 10 different Pale Ales. Try 5 more for Level 3.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_lg.jpg" + }, + "created_at": "Sat, 29 Mar 2014 20:36:21 +0000" + }, + { + "actual_badge_id": 185, + "badge_id": 13672945, + "checkin_id": 68416381, + "badge_name": "Pale as the Moon", + "badge_description": "Ahh, the trusty pale ale; crisp, refreshing, and always a good choice in a bind. That's 5 different Pale Ales. Try 5 more for Level 2.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_PaleMoon_lg.jpg" + }, + "created_at": "Thu, 13 Feb 2014 13:49:52 +0000" + } + ] + }, + "badge_pack": false + }, + { + "is_have": true, + "user_badge_id": 12260821, + "badge_id": 186, + "checkin_id": 62285587, + "badge_name": "Local Flavor", + "badge_description": "Supporting local breweries is what helps the craft beer scene grow. You obviously know this since you’re enjoying the local flavor! Be sure to always drink locally.", + "badge_hint": "Drink 5 different beers brewed by the same brewery within a 35-mile radius of your current location within the last 60 days.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LocalFlavor_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LocalFlavor_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LocalFlavor_lg.jpg" + }, + "created_at": "Sun, 05 Jan 2014 04:54:18 +0000", + "local_created_at": "Sun, 05 Jan 2014 02:54:18 +0000", "is_level": false, - "category_id": 3, + "has_badge": true, + "category_id": 2, "levels": [ ], "badge_pack": 0, @@ -1305,91 +3404,1555 @@ } }, { - "user_badge_id": 43073655, - "badge_id": 751, - "checkin_id": 121786471, - "badge_name": "Brewnettes Have More Fun (Level 4)", - "badge_description": "The age old battle of who has more fun - blondes or brunettes? In this case, you obviously chose \"brewnettes\"! That's 20 different Brown Ales. Try 5 more for Level 5.", - "badge_hint": "Check-in to 5 different beers with the style American Brown Ale, English Brown Ale, Imperial \/ Double Brown Ale or Belgian Brown Ale.", + "user_badge_id": 53168670, + "badge_id": 187, + "checkin_id": 170252414, + "badge_name": "Lager Jack (Level 16)", + "badge_description": "After a long day, what better way to kick back than with a crisp and refreshing lager? You're already feeling more relaxed, aren't you?. That's 80 different Lagers! Try 5 more to unlock Level 17.", + "badge_hint": "Check-in to 5 different Lagers (American, Pale, Light, etc). This badge can be leveled to 10.", "badge_active_status": 1, "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewnettesHaveMoreFun_sm.jpg", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewnettesHaveMoreFun_md.jpg", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewnettesHaveMoreFun_lg.jpg" + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_lg.jpg" }, - "created_at": "Mon, 13 Oct 2014 00:40:12 +0000", + "created_at": "Sun, 22 Dec 2013 15:54:26 +0000", + "local_created_at": "Sun, 22 Dec 2013 13:54:26 +0000", "is_level": true, + "has_badge": true, "category_id": 1, + "badge_type": "type_pack", + "next_badge_id": 2123, + "levels": { + "count": 16, + "items": [ + { + "actual_badge_id": 2122, + "badge_id": 53168670, + "checkin_id": 170252414, + "badge_name": "Lager Jack (Level 16)", + "badge_description": "After a long day, what better way to kick back than with a crisp and refreshing lager? You're already feeling more relaxed, aren't you?. That's 80 different Lagers! Try 5 more to unlock Level 17.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_lg.jpg" + }, + "created_at": "Mon, 06 Apr 2015 04:11:44 +0000" + }, + { + "actual_badge_id": 2121, + "badge_id": 48737381, + "checkin_id": 159269926, + "badge_name": "Lager Jack (Level 15)", + "badge_description": "After a long day, what better way to kick back than with a crisp and refreshing lager? You're already feeling more relaxed, aren't you?. That's 75 different Lagers! Try 5 more to unlock Level 16.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_lg.jpg" + }, + "created_at": "Sun, 01 Mar 2015 06:48:47 +0000" + }, + { + "actual_badge_id": 2120, + "badge_id": 41529817, + "checkin_id": 142179495, + "badge_name": "Lager Jack (Level 14)", + "badge_description": "After a long day, what better way to kick back than with a crisp and refreshing lager? You're already feeling more relaxed, aren't you?. That's 70 different Lagers! Try 5 more to unlock Level 15.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_lg.jpg" + }, + "created_at": "Tue, 30 Dec 2014 00:22:47 +0000" + }, + { + "actual_badge_id": 2119, + "badge_id": 40577281, + "checkin_id": 140330414, + "badge_name": "Lager Jack (Level 13)", + "badge_description": "After a long day, what better way to kick back than with a crisp and refreshing lager? You're already feeling more relaxed, aren't you?. That's 65 different Lagers! Try 5 more to unlock Level 14.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_lg.jpg" + }, + "created_at": "Thu, 25 Dec 2014 01:12:29 +0000" + }, + { + "actual_badge_id": 2118, + "badge_id": 39147038, + "checkin_id": 136473958, + "badge_name": "Lager Jack (Level 12)", + "badge_description": "After a long day, what better way to kick back than with a crisp and refreshing lager? You're already feeling more relaxed, aren't you?. That's 60 different Lagers! Try 5 more to unlock Level 13.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_lg.jpg" + }, + "created_at": "Thu, 11 Dec 2014 05:01:28 +0000" + }, + { + "actual_badge_id": 2117, + "badge_id": 38626736, + "checkin_id": 135212231, + "badge_name": "Lager Jack (Level 11)", + "badge_description": "After a long day, what better way to kick back than with a crisp and refreshing lager? You're already feeling more relaxed, aren't you?. That's 55 different Lagers! Try 5 more to unlock Level 12.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_lg.jpg" + }, + "created_at": "Sat, 06 Dec 2014 03:42:12 +0000" + }, + { + "actual_badge_id": 286, + "badge_id": 28023074, + "checkin_id": 126111038, + "badge_name": "Lager Jack (Level 10)", + "badge_description": "After a long day, what better way to kick back than with a crisp and refreshing lager? You're already feeling more relaxed, aren't you?. That's 50 different Lagers! Try 5 more for Level 11.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_lg.jpg" + }, + "created_at": "Sat, 01 Nov 2014 00:00:42 +0000" + }, + { + "actual_badge_id": 285, + "badge_id": 26854547, + "checkin_id": 122437736, + "badge_name": "Lager Jack (Level 9)", + "badge_description": "After a long day, what better way to kick back than with a crisp and refreshing lager? You're already feeling more relaxed, aren't you?. That's 45 different Lagers! Try 5 more to unlock Level 10.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_lg.jpg" + }, + "created_at": "Fri, 17 Oct 2014 00:14:53 +0000" + }, + { + "actual_badge_id": 284, + "badge_id": 26547428, + "checkin_id": 120955182, + "badge_name": "Lager Jack (Level 8)", + "badge_description": "After a long day, what better way to kick back than with a crisp and refreshing lager? You're already feeling more relaxed, aren't you?. That's 40 different Lagers! Try 5 more to unlock Level 9.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_lg.jpg" + }, + "created_at": "Fri, 10 Oct 2014 23:23:11 +0000" + }, + { + "actual_badge_id": 283, + "badge_id": 26504182, + "checkin_id": 120756608, + "badge_name": "Lager Jack (Level 7)", + "badge_description": "After a long day, what better way to kick back than with a crisp and refreshing lager? You're already feeling more relaxed, aren't you?. That's 35 different Lagers! Try 5 more to unlock Level 8.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_lg.jpg" + }, + "created_at": "Fri, 10 Oct 2014 01:47:33 +0000" + }, + { + "actual_badge_id": 282, + "badge_id": 17294255, + "checkin_id": 84171515, + "badge_name": "Lager Jack (Level 6)", + "badge_description": "After a long day, what better way to kick back than with a crisp and refreshing lager? You're already feeling more relaxed, aren't you?. That's 30 different Lagers! Try 5 more to unlock Level 7.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_lg.jpg" + }, + "created_at": "Mon, 05 May 2014 17:47:41 +0000" + }, + { + "actual_badge_id": 281, + "badge_id": 16654567, + "checkin_id": 81116065, + "badge_name": "Lager Jack (Level 5)", + "badge_description": "After a long day, what better way to kick back than with a crisp and refreshing lager? You're already feeling more relaxed, aren't you?. That's 25 different Lagers! Try 5 more to unlock Level 6.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_lg.jpg" + }, + "created_at": "Sun, 20 Apr 2014 15:48:09 +0000" + }, + { + "actual_badge_id": 280, + "badge_id": 15175864, + "checkin_id": 74525118, + "badge_name": "Lager Jack (Level 4)", + "badge_description": "After a long day, what better way to kick back than with a crisp and refreshing lager? You're already feeling more relaxed, aren't you?. That's 20 different Lagers! Try 5 more to unlock Level 5.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_lg.jpg" + }, + "created_at": "Tue, 18 Mar 2014 15:05:14 +0000" + }, + { + "actual_badge_id": 279, + "badge_id": 13194372, + "checkin_id": 66622179, + "badge_name": "Lager Jack (Level 3)", + "badge_description": "After a long day, what better way to kick back than with a crisp and refreshing lager? You're already feeling more relaxed, aren't you?. That's 15 different Lagers! Try 5 more to unlock Level 4.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_lg.jpg" + }, + "created_at": "Sat, 01 Feb 2014 20:10:19 +0000" + }, + { + "actual_badge_id": 278, + "badge_id": 11897849, + "checkin_id": 61166665, + "badge_name": "Lager Jack (Level 2)", + "badge_description": "After a long day, what better way to kick back than with a crisp and refreshing lager? You're already feeling more relaxed, aren't you? That's 10 different Lagers! Try 5 more to unlock Level 3.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_lg.jpg" + }, + "created_at": "Mon, 30 Dec 2013 21:07:31 +0000" + }, + { + "actual_badge_id": 187, + "badge_id": 11409405, + "checkin_id": 59513926, + "badge_name": "Lager Jack", + "badge_description": "After a long day, what better way to kick back than with a crisp and refreshing lager? You're already feeling more relaxed, aren’t you?. That’s 5 different Lagers! Try 5 more to unlock Level 2.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_LagerJack_lg.jpg" + }, + "created_at": "Sun, 22 Dec 2013 15:54:26 +0000" + } + ] + }, + "badge_pack": false + }, + { + "user_badge_id": 0, + "badge_id": 188, + "checkin_id": 0, + "badge_name": "Hotel Hopper", + "badge_description": "Whether you’re having a room party or hanging at the hotel bar, you know the essential part of any trip, an awesome beer!\r\n\r\nThat's a beer at 5 different venues categorized as a Hotel! Visit 5 more different ones for Level 2!", + "badge_hint": "That's a beer at 5 different venues categorized as a Hotel! This badge can be leveled to 10.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": true, + "badge_type": "venue_match", + "category_id": 2, + "has_badge": false, + "levels": [ + ], + "badge_pack": false + }, + { + "user_badge_id": 0, + "badge_id": 189, + "checkin_id": 0, + "badge_name": "Taste the Music", + "badge_description": "Beer and music share many similarities; different styles, different collaborations, some smooth, some loud. It’s no wonder they go together so well!\r\n\r\nThat's a beer at 5 different Music Venues! Visit 5 more different ones for Level 2!", + "badge_hint": "That's a beer at 5 different Music Venues! This badge can be leveled to 10.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": true, + "badge_type": "venue_match", + "category_id": 2, + "has_badge": false, + "levels": [ + ], + "badge_pack": false + }, + { + "is_have": true, + "user_badge_id": 16692705, + "badge_id": 190, + "checkin_id": 81309732, + "badge_name": "Bottle Share", + "badge_description": "Sharing is caring. Obviously you know this since you've been sharing your excellent check-ins with all of your friends!", + "badge_hint": "Share at least 10 check-ins socially (on twitter, facebook or foursquare) in 60 days.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BottleShare_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BottleShare_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BottleShare_lg.jpg" + }, + "created_at": "Mon, 21 Apr 2014 19:58:34 +0000", + "local_created_at": "Mon, 21 Apr 2014 16:58:34 +0000", + "is_level": false, + "has_badge": true, + "category_id": 1, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 216, + "checkin_id": 0, + "badge_name": "Untappd Supporter", + "badge_description": "Thank you for becoming an Untappd Supporter! It's users like you that help keep us going and we appreciate all your support. Enjoy your supporter perks and don't forget to tell your friends!", + "badge_hint": "Become an Untappd Supporter at http:\/\/untappd.com\/supporter", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 3, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 41613008, + "badge_id": 221, + "checkin_id": 142422465, + "badge_name": "Beer Gathering", + "badge_description": "Beer is often better with friends. Besides, drinking socially is what we're all about! You've checked in with at least 10 other people within 5 hours.", + "badge_hint": "Check-in to a location with at least 10 others within 5 hours.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beerGathering_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beerGathering_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beerGathering_lg.jpg" + }, + "created_at": "Tue, 30 Dec 2014 23:37:26 +0000", + "local_created_at": "Tue, 30 Dec 2014 18:37:26 +0000", + "is_level": false, + "has_badge": true, + "category_id": 2, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 37573372, + "badge_id": 407, + "checkin_id": 133428421, + "badge_name": "Suds Samba (Level 39)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 195 different beers from a brewery in Brazil. Try 5 more for Level 40.\r\n", + "badge_hint": "Check in to 5 different beers from breweries from Brazil. This badge can be leveled to 10 (5 Distinct Beer per Level)", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Sat, 21 Dec 2013 22:08:19 +0000", + "local_created_at": "Sat, 21 Dec 2013 20:08:19 +0000", + "is_level": true, + "has_badge": true, + "category_id": 1, + "badge_type": "country_badge", + "next_badge_id": 1986, + "levels": { + "count": 39, + "items": [ + { + "actual_badge_id": 1985, + "badge_id": 37573372, + "checkin_id": 133428421, + "badge_name": "Suds Samba (Level 39)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 195 different beers from a brewery in Brazil. Try 5 more for Level 40.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Sat, 29 Nov 2014 01:13:16 +0000" + }, + { + "actual_badge_id": 1984, + "badge_id": 37573371, + "checkin_id": 133428421, + "badge_name": "Suds Samba (Level 38)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 190 different beers from a brewery in Brazil. Try 5 more for Level 39.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Sat, 29 Nov 2014 01:13:16 +0000" + }, + { + "actual_badge_id": 1983, + "badge_id": 37573370, + "checkin_id": 133428421, + "badge_name": "Suds Samba (Level 37)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 185 different beers from a brewery in Brazil. Try 5 more for Level 38.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Sat, 29 Nov 2014 01:13:16 +0000" + }, + { + "actual_badge_id": 1982, + "badge_id": 37573369, + "checkin_id": 133428421, + "badge_name": "Suds Samba (Level 36)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 180 different beers from a brewery in Brazil. Try 5 more for Level 37.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Sat, 29 Nov 2014 01:13:16 +0000" + }, + { + "actual_badge_id": 1981, + "badge_id": 37573368, + "checkin_id": 133428421, + "badge_name": "Suds Samba (Level 35)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 175 different beers from a brewery in Brazil. Try 5 more for Level 36.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Sat, 29 Nov 2014 01:13:16 +0000" + }, + { + "actual_badge_id": 1980, + "badge_id": 37573367, + "checkin_id": 133428421, + "badge_name": "Suds Samba (Level 34)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 170 different beers from a brewery in Brazil. Try 5 more for Level 35.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Sat, 29 Nov 2014 01:13:16 +0000" + }, + { + "actual_badge_id": 1979, + "badge_id": 37573366, + "checkin_id": 133428421, + "badge_name": "Suds Samba (Level 33)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 165 different beers from a brewery in Brazil. Try 5 more for Level 34.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Sat, 29 Nov 2014 01:13:16 +0000" + }, + { + "actual_badge_id": 1978, + "badge_id": 37573365, + "checkin_id": 133428421, + "badge_name": "Suds Samba (Level 32)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 160 different beers from a brewery in Brazil. Try 5 more for Level 33.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Sat, 29 Nov 2014 01:13:16 +0000" + }, + { + "actual_badge_id": 1977, + "badge_id": 37573364, + "checkin_id": 133428421, + "badge_name": "Suds Samba (Level 31)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 155 different beers from a brewery in Brazil. Try 5 more for Level 32.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Sat, 29 Nov 2014 01:13:16 +0000" + }, + { + "actual_badge_id": 1976, + "badge_id": 37573363, + "checkin_id": 133428421, + "badge_name": "Suds Samba (Level 30)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 150 different beers from a brewery in Brazil. Try 5 more for Level 31.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Sat, 29 Nov 2014 01:13:16 +0000" + }, + { + "actual_badge_id": 1975, + "badge_id": 37573362, + "checkin_id": 133428421, + "badge_name": "Suds Samba (Level 29)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 145 different beers from a brewery in Brazil. Try 5 more for Level 30.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Sat, 29 Nov 2014 01:13:16 +0000" + }, + { + "actual_badge_id": 1974, + "badge_id": 37573361, + "checkin_id": 133428421, + "badge_name": "Suds Samba (Level 28)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 140 different beers from a brewery in Brazil. Try 5 more for Level 29.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Sat, 29 Nov 2014 01:13:16 +0000" + }, + { + "actual_badge_id": 1973, + "badge_id": 37573360, + "checkin_id": 133428421, + "badge_name": "Suds Samba (Level 27)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 135 different beers from a brewery in Brazil. Try 5 more for Level 28.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Sat, 29 Nov 2014 01:13:16 +0000" + }, + { + "actual_badge_id": 1972, + "badge_id": 37573359, + "checkin_id": 133428421, + "badge_name": "Suds Samba (Level 26)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 130 different beers from a brewery in Brazil. Try 5 more for Level 27.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Sat, 29 Nov 2014 01:13:16 +0000" + }, + { + "actual_badge_id": 1971, + "badge_id": 37573358, + "checkin_id": 133428421, + "badge_name": "Suds Samba (Level 25)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 125 different beers from a brewery in Brazil. Try 5 more for Level 26.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Sat, 29 Nov 2014 01:13:16 +0000" + }, + { + "actual_badge_id": 1970, + "badge_id": 37573357, + "checkin_id": 133428421, + "badge_name": "Suds Samba (Level 24)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 120 different beers from a brewery in Brazil. Try 5 more for Level 25.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Sat, 29 Nov 2014 01:13:16 +0000" + }, + { + "actual_badge_id": 1969, + "badge_id": 37573356, + "checkin_id": 133428421, + "badge_name": "Suds Samba (Level 23)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 115 different beers from a brewery in Brazil. Try 5 more for Level 24.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Sat, 29 Nov 2014 01:13:16 +0000" + }, + { + "actual_badge_id": 1968, + "badge_id": 37573355, + "checkin_id": 133428421, + "badge_name": "Suds Samba (Level 22)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 110 different beers from a brewery in Brazil. Try 5 more for Level 23.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Sat, 29 Nov 2014 01:13:16 +0000" + }, + { + "actual_badge_id": 1967, + "badge_id": 37573354, + "checkin_id": 133428421, + "badge_name": "Suds Samba (Level 21)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 105 different beers from a brewery in Brazil. Try 5 more for Level 22.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Sat, 29 Nov 2014 01:13:16 +0000" + }, + { + "actual_badge_id": 1966, + "badge_id": 37573353, + "checkin_id": 133428421, + "badge_name": "Suds Samba (Level 20)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 100 different beers from a brewery in Brazil. Try 5 more for Level 21.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Sat, 29 Nov 2014 01:13:16 +0000" + }, + { + "actual_badge_id": 1965, + "badge_id": 37573352, + "checkin_id": 133428421, + "badge_name": "Suds Samba (Level 19)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 95 different beers from a brewery in Brazil. Try 5 more for Level 20.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Sat, 29 Nov 2014 01:13:16 +0000" + }, + { + "actual_badge_id": 1964, + "badge_id": 37573351, + "checkin_id": 133428421, + "badge_name": "Suds Samba (Level 18)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 90 different beers from a brewery in Brazil. Try 5 more for Level 19.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Sat, 29 Nov 2014 01:13:16 +0000" + }, + { + "actual_badge_id": 1963, + "badge_id": 37573350, + "checkin_id": 133428421, + "badge_name": "Suds Samba (Level 17)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 85 different beers from a brewery in Brazil. Try 5 more for Level 18.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Sat, 29 Nov 2014 01:13:16 +0000" + }, + { + "actual_badge_id": 1962, + "badge_id": 37573349, + "checkin_id": 133428421, + "badge_name": "Suds Samba (Level 16)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 80 different beers from a brewery in Brazil. Try 5 more for Level 17.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Sat, 29 Nov 2014 01:13:16 +0000" + }, + { + "actual_badge_id": 1961, + "badge_id": 37573348, + "checkin_id": 133428421, + "badge_name": "Suds Samba (Level 15)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 75 different beers from a brewery in Brazil. Try 5 more for Level 16.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Sat, 29 Nov 2014 01:13:16 +0000" + }, + { + "actual_badge_id": 1960, + "badge_id": 37573347, + "checkin_id": 133428421, + "badge_name": "Suds Samba (Level 14)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 70 different beers from a brewery in Brazil. Try 5 more for Level 15.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Sat, 29 Nov 2014 01:13:16 +0000" + }, + { + "actual_badge_id": 1959, + "badge_id": 37573346, + "checkin_id": 133428421, + "badge_name": "Suds Samba (Level 13)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 65 different beers from a brewery in Brazil. Try 5 more for Level 14.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Sat, 29 Nov 2014 01:13:16 +0000" + }, + { + "actual_badge_id": 1958, + "badge_id": 37573345, + "checkin_id": 133428421, + "badge_name": "Suds Samba (Level 12)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 60 different beers from a brewery in Brazil. Try 5 more for Level 13.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Sat, 29 Nov 2014 01:13:16 +0000" + }, + { + "actual_badge_id": 1957, + "badge_id": 37573344, + "checkin_id": 133428421, + "badge_name": "Suds Samba (Level 11)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 55 different beers from a brewery in Brazil. Try 5 more for Level 12.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Sat, 29 Nov 2014 01:13:16 +0000" + }, + { + "actual_badge_id": 555, + "badge_id": 14270674, + "checkin_id": 71147562, + "badge_name": "Suds Samba (Level 10)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 50 different beers from a brewery in Brazil. Try 5 more for Level 11.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Fri, 28 Feb 2014 19:07:18 +0000" + }, + { + "actual_badge_id": 554, + "badge_id": 13781183, + "checkin_id": 68894861, + "badge_name": "Suds Samba (Level 9)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 45 different beers from a brewery in Brazil. Try 5 more for Level 10.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Sat, 15 Feb 2014 15:54:26 +0000" + }, + { + "actual_badge_id": 553, + "badge_id": 13188493, + "checkin_id": 66594807, + "badge_name": "Suds Samba (Level 8)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 40 different beers from a brewery in Brazil. Try 5 more for Level 9.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Sat, 01 Feb 2014 18:50:19 +0000" + }, + { + "actual_badge_id": 552, + "badge_id": 13026013, + "checkin_id": 65860521, + "badge_name": "Suds Samba (Level 7)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 35 different beers from a brewery in Brazil. Try 5 more for Level 8.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Tue, 28 Jan 2014 16:35:29 +0000" + }, + { + "actual_badge_id": 551, + "badge_id": 12835372, + "checkin_id": 64973183, + "badge_name": "Suds Samba (Level 6)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 30 different beers from a brewery in Brazil. Try 5 more for Level 7.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Thu, 23 Jan 2014 16:18:34 +0000" + }, + { + "actual_badge_id": 550, + "badge_id": 12260822, + "checkin_id": 62285587, + "badge_name": "Suds Samba (Level 5)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 25 different beers from a brewery in Brazil. Try 5 more for Level 6.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Sun, 05 Jan 2014 04:54:18 +0000" + }, + { + "actual_badge_id": 549, + "badge_id": 12187795, + "checkin_id": 61938487, + "badge_name": "Suds Samba (Level 4)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 20 different beers from a brewery in Brazil. Try 5 more for Level 5.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Fri, 03 Jan 2014 23:19:41 +0000" + }, + { + "actual_badge_id": 548, + "badge_id": 11810492, + "checkin_id": 60768908, + "badge_name": "Suds Samba (Level 3)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 10 different beers from a brewery in Brazil. Try 5 more for Level 4.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Sat, 28 Dec 2013 22:31:21 +0000" + }, + { + "actual_badge_id": 547, + "badge_id": 11449775, + "checkin_id": 59687736, + "badge_name": "Suds Samba (Level 2)", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That's 10 different beers from a brewery in Brazil. Try 5 more for Level 3.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Mon, 23 Dec 2013 14:33:02 +0000" + }, + { + "actual_badge_id": 407, + "badge_id": 11368267, + "checkin_id": 59340918, + "badge_name": "Suds Samba", + "badge_description": "Had enough carnival? Why not pick up some local cervejas. With an up and coming craft beer scene, this may be your next beer stop. That’s 5 different beers from a brewery in Brazil. Try 5 more for Level 2.\r\n", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_brazil_lg.jpg" + }, + "created_at": "Sat, 21 Dec 2013 22:08:19 +0000" + } + ] + }, + "badge_pack": false + }, + { + "user_badge_id": 55700583, + "badge_id": 406, + "checkin_id": 176555828, + "badge_name": "Land of the Free (Level 35)", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 175 different beers from a brewery in the United States. Try 5 more for Level 36.", + "badge_hint": "Check into 5 different beers from breweries from the United States. This badge can be leveled to 10 (5 Distinct Beer per Level)", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Fri, 21 Mar 2014 21:30:43 +0000", + "local_created_at": "Fri, 21 Mar 2014 18:30:43 +0000", + "is_level": true, + "has_badge": true, + "category_id": 1, + "badge_type": "country_badge", + "next_badge_id": 2022, + "levels": { + "count": 35, + "items": [ + { + "actual_badge_id": 2021, + "badge_id": 55700583, + "checkin_id": 176555828, + "badge_name": "Land of the Free (Level 35)", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 175 different beers from a brewery in the United States. Try 5 more for Level 36.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Sun, 26 Apr 2015 01:21:43 +0000" + }, + { + "actual_badge_id": 2020, + "badge_id": 53648799, + "checkin_id": 171159723, + "badge_name": "Land of the Free (Level 34)", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 170 different beers from a brewery in the United States. Try 5 more for Level 35.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Fri, 10 Apr 2015 01:07:02 +0000" + }, + { + "actual_badge_id": 2019, + "badge_id": 52941812, + "checkin_id": 169651149, + "badge_name": "Land of the Free (Level 33)", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 165 different beers from a brewery in the United States. Try 5 more for Level 34.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Sat, 04 Apr 2015 21:56:54 +0000" + }, + { + "actual_badge_id": 2018, + "badge_id": 51688680, + "checkin_id": 166492534, + "badge_name": "Land of the Free (Level 32)", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 160 different beers from a brewery in the United States. Try 5 more for Level 33.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Thu, 26 Mar 2015 04:28:16 +0000" + }, + { + "actual_badge_id": 2017, + "badge_id": 49249002, + "checkin_id": 160587388, + "badge_name": "Land of the Free (Level 31)", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 155 different beers from a brewery in the United States. Try 5 more for Level 32.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Sat, 07 Mar 2015 02:16:13 +0000" + }, + { + "actual_badge_id": 2016, + "badge_id": 48234605, + "checkin_id": 157885419, + "badge_name": "Land of the Free (Level 30)", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 150 different beers from a brewery in the United States. Try 5 more for Level 31.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Wed, 25 Feb 2015 02:22:48 +0000" + }, + { + "actual_badge_id": 2015, + "badge_id": 48234604, + "checkin_id": 157885419, + "badge_name": "Land of the Free (Level 29)", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 145 different beers from a brewery in the United States. Try 5 more for Level 30.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Wed, 25 Feb 2015 02:22:48 +0000" + }, + { + "actual_badge_id": 2014, + "badge_id": 47284653, + "checkin_id": 155560011, + "badge_name": "Land of the Free (Level 28)", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 140 different beers from a brewery in the United States. Try 5 more for Level 29.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Mon, 16 Feb 2015 03:34:54 +0000" + }, + { + "actual_badge_id": 2013, + "badge_id": 46214816, + "checkin_id": 152521296, + "badge_name": "Land of the Free (Level 27)", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 135 different beers from a brewery in the United States. Try 5 more for Level 28.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Fri, 06 Feb 2015 18:51:50 +0000" + }, + { + "actual_badge_id": 2012, + "badge_id": 44522500, + "checkin_id": 148687574, + "badge_name": "Land of the Free (Level 26)", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 130 different beers from a brewery in the United States. Try 5 more for Level 27.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Fri, 23 Jan 2015 06:16:33 +0000" + }, + { + "actual_badge_id": 2011, + "badge_id": 43063135, + "checkin_id": 145793441, + "badge_name": "Land of the Free (Level 25)", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 125 different beers from a brewery in the United States. Try 5 more for Level 26.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Sun, 11 Jan 2015 04:12:41 +0000" + }, + { + "actual_badge_id": 2010, + "badge_id": 42338529, + "checkin_id": 143752837, + "badge_name": "Land of the Free (Level 24)", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 120 different beers from a brewery in the United States. Try 5 more for Level 25.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Sat, 03 Jan 2015 05:38:22 +0000" + }, + { + "actual_badge_id": 2009, + "badge_id": 41613010, + "checkin_id": 142422465, + "badge_name": "Land of the Free (Level 23)", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 115 different beers from a brewery in the United States. Try 5 more for Level 24.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Tue, 30 Dec 2014 23:37:27 +0000" + }, + { + "actual_badge_id": 2008, + "badge_id": 41529818, + "checkin_id": 142179495, + "badge_name": "Land of the Free (Level 22)", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 110 different beers from a brewery in the United States. Try 5 more for Level 23.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Tue, 30 Dec 2014 00:22:47 +0000" + }, + { + "actual_badge_id": 2007, + "badge_id": 41452189, + "checkin_id": 141971061, + "badge_name": "Land of the Free (Level 21)", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 105 different beers from a brewery in the United States. Try 5 more for Level 22.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Mon, 29 Dec 2014 01:43:14 +0000" + }, + { + "actual_badge_id": 2006, + "badge_id": 41196395, + "checkin_id": 141374336, + "badge_name": "Land of the Free (Level 20)", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 100 different beers from a brewery in the United States. Try 5 more for Level 21.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Sat, 27 Dec 2014 20:33:15 +0000" + }, + { + "actual_badge_id": 2005, + "badge_id": 40964669, + "checkin_id": 140913731, + "badge_name": "Land of the Free (Level 19)", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 95 different beers from a brewery in the United States. Try 5 more for Level 20.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Fri, 26 Dec 2014 19:27:09 +0000" + }, + { + "actual_badge_id": 2004, + "badge_id": 40470268, + "checkin_id": 140037371, + "badge_name": "Land of the Free (Level 18)", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 90 different beers from a brewery in the United States. Try 5 more for Level 19.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Wed, 24 Dec 2014 03:25:45 +0000" + }, + { + "actual_badge_id": 2003, + "badge_id": 39216739, + "checkin_id": 136628608, + "badge_name": "Land of the Free (Level 17)", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 85 different beers from a brewery in the United States. Try 5 more for Level 18.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Fri, 12 Dec 2014 02:09:55 +0000" + }, + { + "actual_badge_id": 2002, + "badge_id": 37622915, + "checkin_id": 133487742, + "badge_name": "Land of the Free (Level 16)", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 80 different beers from a brewery in the United States. Try 5 more for Level 17.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Sat, 29 Nov 2014 02:43:22 +0000" + }, + { + "actual_badge_id": 2001, + "badge_id": 30153100, + "checkin_id": 130431925, + "badge_name": "Land of the Free (Level 15)", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 75 different beers from a brewery in the United States. Try 5 more for Level 16.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:01 +0000" + }, + { + "actual_badge_id": 2000, + "badge_id": 30153096, + "checkin_id": 130431925, + "badge_name": "Land of the Free (Level 14)", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 70 different beers from a brewery in the United States. Try 5 more for Level 15.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:01 +0000" + }, + { + "actual_badge_id": 1999, + "badge_id": 30153092, + "checkin_id": 130431925, + "badge_name": "Land of the Free (Level 13)", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 65 different beers from a brewery in the United States. Try 5 more for Level 14.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:01 +0000" + }, + { + "actual_badge_id": 1998, + "badge_id": 30153088, + "checkin_id": 130431925, + "badge_name": "Land of the Free (Level 12)", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 60 different beers from a brewery in the United States. Try 5 more for Level 13.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:01 +0000" + }, + { + "actual_badge_id": 1997, + "badge_id": 30153083, + "checkin_id": 130431925, + "badge_name": "Land of the Free (Level 11)", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 55 different beers from a brewery in the United States. Try 5 more for Level 12.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:01 +0000" + }, + { + "actual_badge_id": 546, + "badge_id": 25304798, + "checkin_id": 115140010, + "badge_name": "Land of the Free (Level 10)", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 50 different beers from a brewery in the United States. Try 5 more for Level 11.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Mon, 15 Sep 2014 23:40:52 +0000" + }, + { + "actual_badge_id": 545, + "badge_id": 24368606, + "checkin_id": 110835797, + "badge_name": "Land of the Free (Level 9)", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 45 different beers from a brewery in the United States. Try 5 more for Level 10.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Fri, 29 Aug 2014 22:02:10 +0000" + }, + { + "actual_badge_id": 544, + "badge_id": 23290093, + "checkin_id": 106672966, + "badge_name": "Land of the Free (Level 8)", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 40 different beers from a brewery in the United States. Try 5 more for Level 9.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Mon, 11 Aug 2014 16:44:46 +0000" + }, + { + "actual_badge_id": 543, + "badge_id": 19977443, + "checkin_id": 94714885, + "badge_name": "Land of the Free (Level 7)", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 35 different beers from a brewery in the United States. Try 5 more for Level 8.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Sun, 22 Jun 2014 17:05:11 +0000" + }, + { + "actual_badge_id": 542, + "badge_id": 18950449, + "checkin_id": 90420180, + "badge_name": "Land of the Free (Level 6)", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 30 different beers from a brewery in the United States. Try 5 more for Level 7.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Tue, 03 Jun 2014 18:43:36 +0000" + }, + { + "actual_badge_id": 541, + "badge_id": 18002692, + "checkin_id": 86720740, + "badge_name": "Land of the Free (Level 5)", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 25 different beers from a brewery in the United States. Try 5 more for Level 6.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Sat, 17 May 2014 19:13:13 +0000" + }, + { + "actual_badge_id": 540, + "badge_id": 17816358, + "checkin_id": 86088299, + "badge_name": "Land of the Free (Level 4)", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 20 different beers from a brewery in the United States. Try 5 more for Level 5.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Thu, 15 May 2014 19:08:11 +0000" + }, + { + "actual_badge_id": 539, + "badge_id": 17189144, + "checkin_id": 83685537, + "badge_name": "Land of the Free (Level 3)", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 15 different beers from a brewery in the United States. Try 5 more for Level 4.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Sat, 03 May 2014 15:42:43 +0000" + }, + { + "actual_badge_id": 538, + "badge_id": 16744249, + "checkin_id": 81560174, + "badge_name": "Land of the Free (Level 2)", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 10 different beers from a brewery in the United States. Try 5 more for Level 3.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Wed, 23 Apr 2014 18:35:13 +0000" + }, + { + "actual_badge_id": 406, + "badge_id": 15310119, + "checkin_id": 75152959, + "badge_name": "Land of the Free", + "badge_description": "You’ve pledged allegiance, and now it’s time to enjoy some beer! Now remember, not all American beer is fizzy and yellow. That’s 5 different beers from a brewery in the United States. Try 5 more for Level 2.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_america_lg.jpg" + }, + "created_at": "Fri, 21 Mar 2014 21:30:43 +0000" + } + ] + }, + "badge_pack": false + }, + { + "user_badge_id": 22984427, + "badge_id": 414, + "checkin_id": 105767159, + "badge_name": "Crisp as Day (Level 3)", + "badge_description": "Light and crisp, a Pilsner is all you need to make your day great. Though, perhaps another one would make it even better. That’s 15 different Pilsners. Try 5 more to unlock Level 4.", + "badge_hint": "Check in to 5 different Pilsners. This badge can be leveled to 10.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_pilsner_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_pilsner_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_pilsner_lg.jpg" + }, + "created_at": "Mon, 30 Dec 2013 00:02:29 +0000", + "local_created_at": "Sun, 29 Dec 2013 22:02:29 +0000", + "is_level": true, + "has_badge": true, + "category_id": 1, + "badge_type": "type_pack", + "next_badge_id": 417, + "levels": { + "count": 3, + "items": [ + { + "actual_badge_id": 416, + "badge_id": 22984427, + "checkin_id": 105767159, + "badge_name": "Crisp as Day (Level 3)", + "badge_description": "Light and crisp, a Pilsner is all you need to make your day great. Though, perhaps another one would make it even better. That’s 15 different Pilsners. Try 5 more to unlock Level 4.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_pilsner_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_pilsner_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_pilsner_lg.jpg" + }, + "created_at": "Fri, 08 Aug 2014 17:09:09 +0000" + }, + { + "actual_badge_id": 415, + "badge_id": 14795169, + "checkin_id": 73142155, + "badge_name": "Crisp as Day (Level 2)", + "badge_description": "Light and crisp, a Pilsner is all you need to make your day great. Though, perhaps another one would make it even better. That’s 10 different Pilsners. Try 5 more to unlock level 3.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_pilsner_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_pilsner_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_pilsner_lg.jpg" + }, + "created_at": "Tue, 11 Mar 2014 14:42:06 +0000" + }, + { + "actual_badge_id": 414, + "badge_id": 11871743, + "checkin_id": 61049683, + "badge_name": "Crisp as Day", + "badge_description": "Light and crisp, a Pilsner is all you need to make your day great. Though, perhaps another one would make it even better. That’s 5 different Pilsners. Try 5 more to unlock Level 2", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_pilsner_lg.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_pilsner_lg.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_pilsner_lg.jpg" + }, + "created_at": "Mon, 30 Dec 2013 00:02:29 +0000" + } + ] + }, + "badge_pack": false + }, + { + "user_badge_id": 0, + "badge_id": 408, + "checkin_id": 0, + "badge_name": "Drink Like a Kiwi", + "badge_description": "Kiwis, rugby and sheep aren’t the only things New Zealand has to offer. There’s a ton of great beers in a variety of styles just waiting for you to explore! That’s 5 beers from a brewery in New Zealand. Try 5 more for Level 2.", + "badge_hint": "Check into to 5 different beers from breweries from New Zealand. This badge can be leveled to 10 (5 Distinct Beer per Level)", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": true, + "badge_type": "country_badge", + "category_id": 1, + "has_badge": false, + "levels": [ + ], + "badge_pack": false + }, + { + "user_badge_id": 54583013, + "badge_id": 424, + "checkin_id": 173671514, + "badge_name": "Trip to the Farm (Level 4)", + "badge_description": "You have a keen taste for this Belgian master piece. Did you know the Saison style beer was invented by Belgium Farms, brewed in the Winter and served the Spring\/Summer to all their workers? Well now you do! That’s 20 different Saisons, try 5 more for Level 5.", + "badge_hint": "Check in to 5 different Saison \/ Farmhouse Ales.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_saison_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_saison_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_saison_lg.jpg" + }, + "created_at": "Wed, 03 Sep 2014 23:19:58 +0000", + "local_created_at": "Wed, 03 Sep 2014 20:19:58 +0000", + "is_level": true, + "has_badge": true, + "category_id": 1, + "badge_type": "type_pack", + "next_badge_id": 428, "levels": { "count": 4, "items": [ { - "actual_badge_id": 754, - "badge_id": 43073655, - "checkin_id": 145827995, - "badge_name": "Brewnettes Have More Fun (Level 4)", - "badge_description": "The age old battle of who has more fun - blondes or brunettes? In this case, you obviously chose \"brewnettes\"! That's 20 different Brown Ales. Try 5 more for Level 5.", + "actual_badge_id": 427, + "badge_id": 54583013, + "checkin_id": 173671514, + "badge_name": "Trip to the Farm (Level 4)", + "badge_description": "You have a keen taste for this Belgian master piece. Did you know the Saison style beer was invented by Belgium Farms, brewed in the Winter and served the Spring\/Summer to all their workers? Well now you do! That’s 20 different Saisons, try 5 more for Level 5.", "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewnettesHaveMoreFun_sm.jpg", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewnettesHaveMoreFun_md.jpg", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewnettesHaveMoreFun_lg.jpg" + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_saison_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_saison_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_saison_lg.jpg" }, - "created_at": "Sun, 11 Jan 2015 05:57:18 +0000" + "created_at": "Sat, 18 Apr 2015 00:14:40 +0000" }, { - "actual_badge_id": 753, - "badge_id": 39315657, - "checkin_id": 136870099, - "badge_name": "Brewnettes Have More Fun (Level 3)", - "badge_description": "The age old battle of who has more fun - blondes or brunettes? In this case, you obviously chose \"brewnettes\"! That's 15 different Brown Ales. Try 5 more for Level 4.", + "actual_badge_id": 426, + "badge_id": 28700279, + "checkin_id": 128473591, + "badge_name": "Trip to the Farm (Level 3)", + "badge_description": "You have a keen taste for this Belgian master piece. Did you know the Saison style beer was invented by Belgium Farms, brewed in the Winter and served the Spring\/Summer to all their workers? Well now you do! That’s 15 different Saisons, try 5 more for Level 4.", "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewnettesHaveMoreFun_sm.jpg", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewnettesHaveMoreFun_md.jpg", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewnettesHaveMoreFun_lg.jpg" + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_saison_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_saison_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_saison_lg.jpg" }, - "created_at": "Sat, 13 Dec 2014 00:53:44 +0000" + "created_at": "Sun, 09 Nov 2014 20:58:39 +0000" }, { - "actual_badge_id": 752, - "badge_id": 28106321, - "checkin_id": 126256703, - "badge_name": "Brewnettes Have More Fun (Level 2)", - "badge_description": "The age old battle of who has more fun - blondes or brunettes? In this case, you obviously chose \"brewnettes\"! That's 10 different Brown Ales. Try 5 more for Level 3.", + "actual_badge_id": 425, + "badge_id": 25582304, + "checkin_id": 116412873, + "badge_name": "Trip to the Farm (Level 2)", + "badge_description": "You have a keen taste for this Belgian master piece. Did you know the Saison style beer was invented by Belgium Farms, brewed in the Winter and served the Spring\/Summer to all their workers? Well now you do! That’s 10 different Saisons, try 5 more for Level 3.", "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewnettesHaveMoreFun_sm.jpg", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewnettesHaveMoreFun_md.jpg", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewnettesHaveMoreFun_lg.jpg" + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_saison_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_saison_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_saison_lg.jpg" }, - "created_at": "Sat, 01 Nov 2014 04:56:19 +0000" + "created_at": "Sun, 21 Sep 2014 02:56:44 +0000" }, { - "actual_badge_id": 751, - "badge_id": 26715582, - "checkin_id": 121786471, - "badge_name": "Brewnettes Have More Fun", - "badge_description": "The age old battle of who has more fun - blondes or brunettes? In this case, you obviously chose \"brewnettes\"! Try 5 different Brown Ales. Try 5 more for Level 2.", + "actual_badge_id": 424, + "badge_id": 24667679, + "checkin_id": 112206876, + "badge_name": "Trip to the Farm", + "badge_description": "You have a keen taste for this Belgian master piece. Did you know the Saison style beer was invented by Belgium Farms, brewed in the Winter and served the Spring\/Summer to all their workers? Well now you do! That’s 5 different Saisons, try 5 more for Level 2.", "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewnettesHaveMoreFun_sm.jpg", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewnettesHaveMoreFun_md.jpg", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewnettesHaveMoreFun_lg.jpg" + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_saison_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_saison_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_saison_lg.jpg" }, - "created_at": "Mon, 13 Oct 2014 00:40:12 +0000" + "created_at": "Wed, 03 Sep 2014 23:19:58 +0000" } ] }, - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } + "badge_pack": false }, { - "user_badge_id": 54602642, + "user_badge_id": 55454891, "badge_id": 409, - "checkin_id": 120367243, - "badge_name": "The Great White North (Level 28)", - "badge_description": "Out on the pond for some ice fishing, or perhaps watching some hockey, eh? That’s 140 different beers from a brewery in Canada! Try 5 more for Level 29.", + "checkin_id": 175992254, + "badge_name": "The Great White North (Level 29)", + "badge_description": "Out on the pond for some ice fishing, or perhaps watching some hockey, eh? That’s 145 different beers from a brewery in Canada! Try 5 more for Level 30.", "badge_hint": "Drink 5 different beers from a brewery from Canada. This badge can be leveled to 10 (5 Distinct Beer per Level)", "badge_active_status": 1, "media": { @@ -1398,11 +4961,28 @@ "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_canada_lg.jpg" }, "created_at": "Tue, 07 Oct 2014 23:56:46 +0000", + "local_created_at": "Tue, 07 Oct 2014 17:56:46 +0000", "is_level": true, + "has_badge": true, "category_id": 1, + "badge_type": "country_badge", + "next_badge_id": 1896, "levels": { - "count": 28, + "count": 29, "items": [ + { + "actual_badge_id": 1895, + "badge_id": 55454891, + "checkin_id": 175992254, + "badge_name": "The Great White North (Level 29)", + "badge_description": "Out on the pond for some ice fishing, or perhaps watching some hockey, eh? That’s 145 different beers from a brewery in Canada! Try 5 more for Level 30.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_canada_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_canada_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_canada_lg.jpg" + }, + "created_at": "Sat, 25 Apr 2015 02:35:16 +0000" + }, { "actual_badge_id": 1894, "badge_id": 54602642, @@ -1769,12 +5349,7 @@ } ] }, - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } + "badge_pack": false }, { "user_badge_id": 24667678, @@ -1790,8 +5365,12 @@ "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_italy_lg.jpg" }, "created_at": "Wed, 03 Sep 2014 23:19:58 +0000", + "local_created_at": "Wed, 03 Sep 2014 20:19:58 +0000", "is_level": true, + "has_badge": true, "category_id": 1, + "badge_type": "country_badge", + "next_badge_id": 574, "levels": { "count": 1, "items": [ @@ -1810,108 +5389,930 @@ } ] }, - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } + "badge_pack": false }, { - "user_badge_id": 54583013, - "badge_id": 424, - "checkin_id": 112206876, - "badge_name": "Trip to the Farm (Level 4)", - "badge_description": "You have a keen taste for this Belgian master piece. Did you know the Saison style beer was invented by Belgium Farms, brewed in the Winter and served the Spring\/Summer to all their workers? Well now you do! That’s 20 different Saisons, try 5 more for Level 5.", - "badge_hint": "Check in to 5 different Saison \/ Farmhouse Ales.", + "user_badge_id": 0, + "badge_id": 434, + "checkin_id": 0, + "badge_name": "The Gambler", + "badge_description": "You're a regular card shark on the poker table, but now it’s time to hit the bar to get a cold brew! After all, you're only as lucky as the beer in your hand. \r\n\r\nThat's a beer at 5 different venues categorized as Casinos. Visit 5 more Level 2.", + "badge_hint": "Check into a beer at 5 different venues that have the primary category of Casinos. Remember, if it's a Hotel - it won't count! The icon looks like two dice rolling.", "badge_active_status": 1, "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_saison_sm.jpg", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_saison_md.jpg", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_saison_lg.jpg" + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" }, - "created_at": "Wed, 03 Sep 2014 23:19:58 +0000", + "created_at": null, "is_level": true, + "badge_type": "venue_match", + "category_id": 2, + "has_badge": false, + "levels": [ + ], + "badge_pack": false + }, + { + "user_badge_id": 51433403, + "badge_id": 411, + "checkin_id": 165828716, + "badge_name": "Sky's the Limit (Level 12)", + "badge_description": "You don't always intend to go for beers with a double digit ABV, but when you do, you make it count! Cheers to you, but be careful, 10% and up can really pack a punch. That's 60 different beers with an ABV of 10% and up. Try 5 more for Level 13!", + "badge_hint": "Drink 5 different beers that have an ABV of 10% or higher. Make sure the ABV is listed on Untappd. You don't have to do this all in one day, space it out! This badge was turned into a level badge on 1\/17\/15 - this means you must check-in another beer above 10% to earn your correct level (will be retroactive and level you up to current level). It will be retroactive to the date of 10\/08\/13.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_lg.jpg" + }, + "created_at": "Thu, 20 Feb 2014 17:01:09 +0000", + "local_created_at": "Thu, 20 Feb 2014 14:01:09 +0000", + "is_level": true, + "has_badge": true, "category_id": 1, + "badge_type": "beer_abv", + "next_badge_id": 3218, "levels": { - "count": 4, + "count": 12, "items": [ { - "actual_badge_id": 427, - "badge_id": 54583013, - "checkin_id": 173671514, - "badge_name": "Trip to the Farm (Level 4)", - "badge_description": "You have a keen taste for this Belgian master piece. Did you know the Saison style beer was invented by Belgium Farms, brewed in the Winter and served the Spring\/Summer to all their workers? Well now you do! That’s 20 different Saisons, try 5 more for Level 5.", + "actual_badge_id": 3217, + "badge_id": 51433403, + "checkin_id": 165828716, + "badge_name": "Sky's the Limit (Level 12)", + "badge_description": "You don't always intend to go for beers with a double digit ABV, but when you do, you make it count! Cheers to you, but be careful, 10% and up can really pack a punch. That's 60 different beers with an ABV of 10% and up. Try 5 more for Level 13!", "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_saison_sm.jpg", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_saison_md.jpg", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_saison_lg.jpg" + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_lg.jpg" }, - "created_at": "Sat, 18 Apr 2015 00:14:40 +0000" + "created_at": "Sun, 22 Mar 2015 23:41:42 +0000" }, { - "actual_badge_id": 426, - "badge_id": 28700279, - "checkin_id": 128473591, - "badge_name": "Trip to the Farm (Level 3)", - "badge_description": "You have a keen taste for this Belgian master piece. Did you know the Saison style beer was invented by Belgium Farms, brewed in the Winter and served the Spring\/Summer to all their workers? Well now you do! That’s 15 different Saisons, try 5 more for Level 4.", + "actual_badge_id": 3216, + "badge_id": 47296897, + "checkin_id": 155594701, + "badge_name": "Sky's the Limit (Level 11)", + "badge_description": "You don't always intend to go for beers with a double digit ABV, but when you do, you make it count! Cheers to you, but be careful, 10% and up can really pack a punch. That's 55 different beers with an ABV of 10% and up. Try 5 more for Level 12!", "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_saison_sm.jpg", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_saison_md.jpg", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_saison_lg.jpg" + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_lg.jpg" }, - "created_at": "Sun, 09 Nov 2014 20:58:39 +0000" + "created_at": "Mon, 16 Feb 2015 08:16:09 +0000" }, { - "actual_badge_id": 425, - "badge_id": 25582304, - "checkin_id": 116412873, - "badge_name": "Trip to the Farm (Level 2)", - "badge_description": "You have a keen taste for this Belgian master piece. Did you know the Saison style beer was invented by Belgium Farms, brewed in the Winter and served the Spring\/Summer to all their workers? Well now you do! That’s 10 different Saisons, try 5 more for Level 3.", + "actual_badge_id": 3215, + "badge_id": 44081978, + "checkin_id": 147901528, + "badge_name": "Sky's the Limit (Level 10)", + "badge_description": "You don't always intend to go for beers with a double digit ABV, but when you do, you make it count! Cheers to you, but be careful, 10% and up can really pack a punch. That's 50 different beers with an ABV of 10% and up. Try 5 more for Level 11!", "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_saison_sm.jpg", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_saison_md.jpg", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_saison_lg.jpg" + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_lg.jpg" }, - "created_at": "Sun, 21 Sep 2014 02:56:44 +0000" + "created_at": "Mon, 19 Jan 2015 01:18:27 +0000" }, { - "actual_badge_id": 424, - "badge_id": 24667679, - "checkin_id": 112206876, - "badge_name": "Trip to the Farm", - "badge_description": "You have a keen taste for this Belgian master piece. Did you know the Saison style beer was invented by Belgium Farms, brewed in the Winter and served the Spring\/Summer to all their workers? Well now you do! That’s 5 different Saisons, try 5 more for Level 2.", + "actual_badge_id": 3214, + "badge_id": 44081977, + "checkin_id": 147901528, + "badge_name": "Sky's the Limit (Level 9)", + "badge_description": "You don't always intend to go for beers with a double digit ABV, but when you do, you make it count! Cheers to you, but be careful, 10% and up can really pack a punch. That's 45 different beers with an ABV of 10% and up. Try 5 more for Level 10!", "media": { - "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_saison_sm.jpg", - "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_saison_md.jpg", - "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_saison_lg.jpg" + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_lg.jpg" }, - "created_at": "Wed, 03 Sep 2014 23:19:58 +0000" + "created_at": "Mon, 19 Jan 2015 01:18:27 +0000" + }, + { + "actual_badge_id": 3213, + "badge_id": 44081976, + "checkin_id": 147901528, + "badge_name": "Sky's the Limit (Level 8)", + "badge_description": "You don't always intend to go for beers with a double digit ABV, but when you do, you make it count! Cheers to you, but be careful, 10% and up can really pack a punch. That's 40 different beers with an ABV of 10% and up. Try 5 more for Level 9!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_lg.jpg" + }, + "created_at": "Mon, 19 Jan 2015 01:18:27 +0000" + }, + { + "actual_badge_id": 3212, + "badge_id": 44081975, + "checkin_id": 147901528, + "badge_name": "Sky's the Limit (Level 7)", + "badge_description": "You don't always intend to go for beers with a double digit ABV, but when you do, you make it count! Cheers to you, but be careful, 10% and up can really pack a punch. That's 35 different beers with an ABV of 10% and up. Try 5 more for Level 8!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_lg.jpg" + }, + "created_at": "Mon, 19 Jan 2015 01:18:27 +0000" + }, + { + "actual_badge_id": 3211, + "badge_id": 44081974, + "checkin_id": 147901528, + "badge_name": "Sky's the Limit (Level 6)", + "badge_description": "You don't always intend to go for beers with a double digit ABV, but when you do, you make it count! Cheers to you, but be careful, 10% and up can really pack a punch. That's 30 different beers with an ABV of 10% and up. Try 5 more for Level 7!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_lg.jpg" + }, + "created_at": "Mon, 19 Jan 2015 01:18:27 +0000" + }, + { + "actual_badge_id": 3210, + "badge_id": 44081973, + "checkin_id": 147901528, + "badge_name": "Sky's the Limit (Level 5)", + "badge_description": "You don't always intend to go for beers with a double digit ABV, but when you do, you make it count! Cheers to you, but be careful, 10% and up can really pack a punch. That's 25 different beers with an ABV of 10% and up. Try 5 more for Level 6!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_lg.jpg" + }, + "created_at": "Mon, 19 Jan 2015 01:18:27 +0000" + }, + { + "actual_badge_id": 3209, + "badge_id": 44081972, + "checkin_id": 147901528, + "badge_name": "Sky's the Limit (Level 4)", + "badge_description": "You don't always intend to go for beers with a double digit ABV, but when you do, you make it count! Cheers to you, but be careful, 10% and up can really pack a punch. That's 20 different beers with an ABV of 10% and up. Try 5 more for Level 5!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_lg.jpg" + }, + "created_at": "Mon, 19 Jan 2015 01:18:27 +0000" + }, + { + "actual_badge_id": 3208, + "badge_id": 44081971, + "checkin_id": 147901528, + "badge_name": "Sky's the Limit (Level 3)", + "badge_description": "You don't always intend to go for beers with a double digit ABV, but when you do, you make it count! Cheers to you, but be careful, 10% and up can really pack a punch. That's 15 different beers with an ABV of 10% and up. Try 5 more for Level 4!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_lg.jpg" + }, + "created_at": "Mon, 19 Jan 2015 01:18:27 +0000" + }, + { + "actual_badge_id": 3207, + "badge_id": 44081970, + "checkin_id": 147901528, + "badge_name": "Sky's the Limit (Level 2)", + "badge_description": "You don't always intend to go for beers with a double digit ABV, but when you do, you make it count! Cheers to you, but be careful, 10% and up can really pack a punch. That's 10 different beers with an ABV of 10% and up. Try 5 more for Level 3!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_lg.jpg" + }, + "created_at": "Mon, 19 Jan 2015 01:18:27 +0000" + }, + { + "actual_badge_id": 411, + "badge_id": 13950044, + "checkin_id": 69675284, + "badge_name": "Sky's the Limit", + "badge_description": "You don't always intend to go for beers with a double digit ABV, but when you do, you make it count! Cheers to you, but be careful, 10% and up can really pack a punch. That's 5 different beers with an ABV of 10% and up. Try 5 more for Level 2!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_highABV_lg.jpg" + }, + "created_at": "Thu, 20 Feb 2014 17:01:09 +0000" } ] }, - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } + "badge_pack": false }, { - "badge_id": 77, - "user_badge_id": 24235914, - "checkin_id": 110309464, - "badge_name": "Trappist Travesty", - "badge_description": "Sounds like you’re considering joining the Trappist Monks. I thought Monks couldn't drink beer? Oh well. That's 5 Trappist Beers!", - "badge_hint": "Planning to be a monk? Try 5 different beers from Trappist Breweries! PS - Check Wikipedia.", + "user_badge_id": 30153218, + "badge_id": 412, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 50)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 250 check-ins with a photo. ", + "badge_hint": "Add a photo to your check-in 5 times. You must check-in to get this badge, adding a photo to an existing check-in counts, but you will need to check-in with a photo to unlock the badge.", "badge_active_status": 1, "media": { - "badge_image_sm": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_trappist_sm.jpg", - "badge_image_md": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_trappist_md.jpg", - "badge_image_lg": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_trappist_lg.jpg" + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" }, - "created_at": "Wed, 27 Aug 2014 02:21:36 +0000", + "created_at": "Sat, 21 Dec 2013 23:48:50 +0000", + "local_created_at": "Sat, 21 Dec 2013 21:48:50 +0000", + "is_level": true, + "has_badge": true, + "category_id": 1, + "badge_type": "beerphoto", + "next_badge_id": 0, + "levels": { + "count": 50, + "items": [ + { + "actual_badge_id": 1836, + "badge_id": 30153218, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 50)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 250 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:02 +0000" + }, + { + "actual_badge_id": 1835, + "badge_id": 30153217, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 49)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 245 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:02 +0000" + }, + { + "actual_badge_id": 1834, + "badge_id": 30153216, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 48)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 240 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:02 +0000" + }, + { + "actual_badge_id": 1833, + "badge_id": 30153215, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 47)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 235 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:02 +0000" + }, + { + "actual_badge_id": 1832, + "badge_id": 30153214, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 46)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 230 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:02 +0000" + }, + { + "actual_badge_id": 1831, + "badge_id": 30153213, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 45)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 225 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:02 +0000" + }, + { + "actual_badge_id": 1830, + "badge_id": 30153212, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 44)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 220 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:02 +0000" + }, + { + "actual_badge_id": 1829, + "badge_id": 30153211, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 43)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 215 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:02 +0000" + }, + { + "actual_badge_id": 1828, + "badge_id": 30153210, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 42)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 210 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:02 +0000" + }, + { + "actual_badge_id": 1827, + "badge_id": 30153209, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 41)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 205 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:02 +0000" + }, + { + "actual_badge_id": 1826, + "badge_id": 30153208, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 40)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 200 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:02 +0000" + }, + { + "actual_badge_id": 1825, + "badge_id": 30153207, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 39)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 195 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:02 +0000" + }, + { + "actual_badge_id": 1824, + "badge_id": 30153206, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 38)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 190 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:02 +0000" + }, + { + "actual_badge_id": 1823, + "badge_id": 30153205, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 37)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 185 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:02 +0000" + }, + { + "actual_badge_id": 1822, + "badge_id": 30153204, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 36)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 180 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:02 +0000" + }, + { + "actual_badge_id": 1821, + "badge_id": 30153203, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 35)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 175 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:02 +0000" + }, + { + "actual_badge_id": 1820, + "badge_id": 30153202, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 34)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 170 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:02 +0000" + }, + { + "actual_badge_id": 1819, + "badge_id": 30153201, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 33)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 165 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:02 +0000" + }, + { + "actual_badge_id": 1818, + "badge_id": 30153200, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 32)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 160 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:02 +0000" + }, + { + "actual_badge_id": 1817, + "badge_id": 30153199, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 31)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 155 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:02 +0000" + }, + { + "actual_badge_id": 1816, + "badge_id": 30153198, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 30)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 150 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:02 +0000" + }, + { + "actual_badge_id": 1815, + "badge_id": 30153197, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 29)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 145 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:02 +0000" + }, + { + "actual_badge_id": 1814, + "badge_id": 30153196, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 28)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 140 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:02 +0000" + }, + { + "actual_badge_id": 1813, + "badge_id": 30153195, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 27)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 135 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:02 +0000" + }, + { + "actual_badge_id": 1812, + "badge_id": 30153194, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 26)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 130 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:02 +0000" + }, + { + "actual_badge_id": 1811, + "badge_id": 30153193, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 25)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 125 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:02 +0000" + }, + { + "actual_badge_id": 1810, + "badge_id": 30153192, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 24)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 120 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:02 +0000" + }, + { + "actual_badge_id": 1809, + "badge_id": 30153191, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 23)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 115 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:02 +0000" + }, + { + "actual_badge_id": 1808, + "badge_id": 30153190, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 22)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 110 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:02 +0000" + }, + { + "actual_badge_id": 1807, + "badge_id": 30153189, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 21)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 105 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:02 +0000" + }, + { + "actual_badge_id": 1806, + "badge_id": 30153188, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 20)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 100 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:02 +0000" + }, + { + "actual_badge_id": 1805, + "badge_id": 30153187, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 19)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 95 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:02 +0000" + }, + { + "actual_badge_id": 1804, + "badge_id": 30153186, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 18)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 90 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:02 +0000" + }, + { + "actual_badge_id": 1803, + "badge_id": 30153185, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 17)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 85 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:01 +0000" + }, + { + "actual_badge_id": 1802, + "badge_id": 30153184, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 16)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 80 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:01 +0000" + }, + { + "actual_badge_id": 1801, + "badge_id": 30153183, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 15)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 75 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:01 +0000" + }, + { + "actual_badge_id": 1800, + "badge_id": 30153182, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 14)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 70 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:01 +0000" + }, + { + "actual_badge_id": 1799, + "badge_id": 30153181, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 13)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 65 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:01 +0000" + }, + { + "actual_badge_id": 1798, + "badge_id": 30153180, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 12)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 60 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:01 +0000" + }, + { + "actual_badge_id": 1797, + "badge_id": 30153179, + "checkin_id": 130431925, + "badge_name": "Photogenic Brew (Level 11)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 55 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Tue, 18 Nov 2014 01:37:01 +0000" + }, + { + "actual_badge_id": 795, + "badge_id": 22756948, + "checkin_id": 105418927, + "badge_name": "Photogenic Brew (Level 10)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 50 check-ins with a photo. Take 5 more for Level 11!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Thu, 07 Aug 2014 15:46:51 +0000" + }, + { + "actual_badge_id": 794, + "badge_id": 22756947, + "checkin_id": 105418927, + "badge_name": "Photogenic Brew (Level 9)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 45 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Thu, 07 Aug 2014 15:46:51 +0000" + }, + { + "actual_badge_id": 793, + "badge_id": 22756946, + "checkin_id": 105418927, + "badge_name": "Photogenic Brew (Level 8)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 40 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Thu, 07 Aug 2014 15:46:51 +0000" + }, + { + "actual_badge_id": 792, + "badge_id": 22756945, + "checkin_id": 105418927, + "badge_name": "Photogenic Brew (Level 7)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 35 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Thu, 07 Aug 2014 15:46:51 +0000" + }, + { + "actual_badge_id": 791, + "badge_id": 22756944, + "checkin_id": 105418927, + "badge_name": "Photogenic Brew (Level 6)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 30 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Thu, 07 Aug 2014 15:46:51 +0000" + }, + { + "actual_badge_id": 790, + "badge_id": 22756943, + "checkin_id": 105418927, + "badge_name": "Photogenic Brew (Level 5)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 25 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Thu, 07 Aug 2014 15:46:51 +0000" + }, + { + "actual_badge_id": 789, + "badge_id": 22756942, + "checkin_id": 105418927, + "badge_name": "Photogenic Brew (Level 4)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 20 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Thu, 07 Aug 2014 15:46:51 +0000" + }, + { + "actual_badge_id": 788, + "badge_id": 22756941, + "checkin_id": 105418927, + "badge_name": "Photogenic Brew (Level 3)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 15 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Thu, 07 Aug 2014 15:46:51 +0000" + }, + { + "actual_badge_id": 787, + "badge_id": 22756940, + "checkin_id": 105418927, + "badge_name": "Photogenic Brew (Level 2)", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 10 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Thu, 07 Aug 2014 15:46:51 +0000" + }, + { + "actual_badge_id": 412, + "badge_id": 11375583, + "checkin_id": 59371689, + "badge_name": "Photogenic Brew", + "badge_description": "It takes the perfect amount light, the right framing and a touch of creative love to get the perfect picture of your brew. Now it’s time to drink it! That’s 5 check-ins with a photo. ", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_beertography_lg.jpg" + }, + "created_at": "Sat, 21 Dec 2013 23:48:50 +0000" + } + ] + }, + "badge_pack": false + }, + { + "user_badge_id": 0, + "badge_id": 444, + "checkin_id": 0, + "badge_name": "Can in One", + "badge_description": "Do you prefer 9 or 18 holes? It doesn't matter, as long as you have your koozie with your favorite beer. Fore! \r\n\r\nThat's a beer at 5 different venues categorized as a Golf Course. Visit 5 more level 2.", + "badge_hint": "Drink a beer at 5 different venues that have the primary category of a \"Golf Course\". This badge can be leveled up to 10.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": true, + "badge_type": "venue_match", + "category_id": 2, + "has_badge": false, + "levels": [ + ], + "badge_pack": false + }, + { + "is_have": true, + "user_badge_id": 15926018, + "badge_id": 413, + "checkin_id": 78057500, + "badge_name": "Home Brewed Goodness", + "badge_description": "You've enjoyed all that commercial beer has to offer, so now it’s time to try some home brew. Be it your friend’s or your own, it tastes better home grown. That's 2 different beers that are homebrews.", + "badge_hint": "Check into a 2 different beers, categorized as a 'Homebrew'.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_homebrew_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_homebrew_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_homebrew_lg.jpg" + }, + "created_at": "Sat, 05 Apr 2014 17:39:34 +0000", + "local_created_at": "Sat, 05 Apr 2014 14:39:34 +0000", "is_level": false, + "has_badge": true, "category_id": 1, "levels": [ ], @@ -1923,96 +6324,64 @@ } }, { - "badge_id": 785, - "user_badge_id": 22770588, - "checkin_id": 105433874, - "badge_name": "Hop 2 It", - "badge_description": "Interpretations of IPAs range far and wide — and Founders has interpreted the style in many ways. Founders IPAs vary in taste, strength and color, from the crimson of Red’s Rye IPA (draft only right now) to the golden straw of Double Trouble. Try a couple and see which interpretation suits you best. Hop 2 It!", - "badge_hint": "Check­in to two (2) different IPAs from Founders Brewing Co listed on the Untappd Blog between August 1st ­- August 31st, 2014", - "badge_active_status": 0, - "media": { - "badge_image_sm": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_Hop2It_sm.jpg", - "badge_image_md": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_Hop2It_md.jpg", - "badge_image_lg": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_Hop2It_lg.jpg" - }, - "created_at": "Thu, 07 Aug 2014 16:18:26 +0000", - "is_level": false, - "category_id": 3, - "levels": [ - ], - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } - }, - { - "badge_id": 796, - "user_badge_id": 22756936, - "checkin_id": 105418927, - "badge_name": "IPA Day (2014)", - "badge_description": "Today, we all raise a crisp, bitter toast to one of the most iconic beer styles, the India Pale Ale. It’s IPA Day, so join the world as we all celebrate this style’s hoppy goodness!", - "badge_hint": "Check-in any beer the has the style listed an Black IPA, American IPA, English IPA, Double IPA, Triple IPA or White IPA on August 7th, 2014 in your local timezone.", - "badge_active_status": 0, - "media": { - "badge_image_sm": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_ipaday2014_sm.jpg", - "badge_image_md": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_ipaday2014_md.jpg", - "badge_image_lg": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_ipaday2014_lg.jpg" - }, - "created_at": "Thu, 07 Aug 2014 15:46:51 +0000", - "is_level": false, - "category_id": 3, - "levels": [ - ], - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } - }, - { - "badge_id": 670, - "user_badge_id": 20635991, - "checkin_id": 97210563, - "badge_name": "Independence Day (2014)", - "badge_description": "Happy 4th of July! Celebrate America's independence with good friends, good food and most importantly, good beers!", - "badge_hint": "Check-in any beer during July 4th Weekend 2014 (July 4th - July 6th).", - "badge_active_status": 0, - "media": { - "badge_image_sm": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_july4th2014_sm.jpg", - "badge_image_md": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_july4th2014_md.jpg", - "badge_image_lg": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_july4th2014_lg.jpg" - }, - "created_at": "Fri, 04 Jul 2014 14:08:35 +0000", - "is_level": false, - "category_id": 3, - "levels": [ - ], - "badge_pack": 0, - "badge_pack_name": false, - "badge_pack_progress": { - "completed": 0, - "total": 0 - } - }, - { - "badge_id": 84, - "user_badge_id": 19738504, - "checkin_id": 93740888, - "badge_name": "Untappd Groupie", - "badge_description": "Woah! You’ve had at least five beers that the Untappd founders have had. That’s tough since we like a wide variety of beers. Obviously you’re just trying to be cool like us!", - "badge_hint": "Have 5 beers that the Co-Founders of Untappd have had in the last 90 days.", + "user_badge_id": 29035146, + "badge_id": 455, + "checkin_id": 129966008, + "badge_name": "Gourd to the Last Drop", + "badge_description": "Fall is in the air and the holidays are just around the corner, but pies and jack-o-lanterns aren't the only things pumpkins are good for. Pumpkin beers have grown in popularity, bringing with them a delicate balance of malt and spices. That's 5 different pumpkin beers! Try 5 more for Level 2!", + "badge_hint": "Check in to 5 different beers that have a style Pumpkin\/Yam. This badge can be leveled to 10. It is not retroactive, your counter started on 10\/11\/13.", "badge_active_status": 1, "media": { - "badge_image_sm": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_groupie_sm.jpg", - "badge_image_md": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_groupie_md.jpg", - "badge_image_lg": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_groupie_lg.jpg" + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_pumpkinBeer_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_pumpkinBeer_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_pumpkinBeer_lg.jpg" }, - "created_at": "Thu, 19 Jun 2014 14:38:57 +0000", - "is_level": false, + "created_at": "Sun, 16 Nov 2014 01:56:19 +0000", + "local_created_at": "Sat, 15 Nov 2014 18:56:19 +0000", + "is_level": true, + "has_badge": true, "category_id": 1, + "badge_type": "type_pack", + "next_badge_id": 456, + "levels": { + "count": 1, + "items": [ + { + "actual_badge_id": 455, + "badge_id": 29035146, + "checkin_id": 129966008, + "badge_name": "Gourd to the Last Drop", + "badge_description": "Fall is in the air and the holidays are just around the corner, but pies and jack-o-lanterns aren't the only things pumpkins are good for. Pumpkin beers have grown in popularity, bringing with them a delicate balance of malt and spices. That's 5 different pumpkin beers! Try 5 more for Level 2!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_pumpkinBeer_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_pumpkinBeer_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_pumpkinBeer_lg.jpg" + }, + "created_at": "Sun, 16 Nov 2014 01:56:19 +0000" + } + ] + }, + "badge_pack": false + }, + { + "is_have": true, + "user_badge_id": 12007202, + "badge_id": 596, + "checkin_id": 61408218, + "badge_name": "Happy Brew Year (2014)", + "badge_description": "Happy New Year to all! Did you try all the brews you wanted in 2013? Of course not! Here's to another great year full of amazing breweries, beers, and good times!", + "badge_hint": "Check-in any beer on December 31st, 2013 to January 1st 2014.", + "badge_active_status": 0, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_NewYears2014_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_NewYears2014_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_NewYears2014_lg.jpg" + }, + "created_at": "Wed, 01 Jan 2014 00:19:39 +0000", + "local_created_at": "Tue, 31 Dec 2013 22:19:39 +0000", + "is_level": false, + "has_badge": true, + "category_id": 3, "levels": [ ], "badge_pack": 0, @@ -2023,20 +6392,191 @@ } }, { - "badge_id": 656, + "is_have": true, + "user_badge_id": 11551399, + "badge_id": 594, + "checkin_id": 60059962, + "badge_name": "Merry Brew-mas (2013)", + "badge_description": "It's that magical time of year full of fun, joy and of course, great beer. We wish you the best of the holiday cheer. Merry Brew-mas to all and to all a good pint.", + "badge_hint": "From all of us at Untappd - we wish you and your family a very happy and safe holiday season. Check-in any beer on Christmas day (12\/25) to unlock this badge.", + "badge_active_status": 0, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_Christmas2013_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_Christmas2013_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_Christmas2013_lg.jpg" + }, + "created_at": "Wed, 25 Dec 2013 15:08:12 +0000", + "local_created_at": "Wed, 25 Dec 2013 13:08:12 +0000", + "is_level": false, + "has_badge": true, + "category_id": 3, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 13184333, + "badge_id": 598, + "checkin_id": 66576033, + "badge_name": "Brew Bowl XLVIII", + "badge_description": "Enjoying a beer while watching the Broncos and Seahawks battle on the field? Of course you are. Here's hoping we don't lose power!", + "badge_hint": "Check-in any beer on Super Bowl Sunday 2014.", + "badge_active_status": 0, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewBowlXLVIII_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewBowlXLVIII_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewBowlXLVIII_lg.jpg" + }, + "created_at": "Sat, 01 Feb 2014 18:08:03 +0000", + "local_created_at": "Sat, 01 Feb 2014 16:08:03 +0000", + "is_level": false, + "has_badge": true, + "category_id": 3, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 16007775, + "badge_id": 626, + "checkin_id": 78403757, + "badge_name": "National Beer Day (2014)", + "badge_description": "On this day in 1933, the Cullen-Harrison Act went into affect, ending prohibition. It's a good thing, otherwise we would never know the joy that is an amazingly crafted beer. Let's raise a pint in celebration!", + "badge_hint": "Check-in to any beer on National Beer Day, April 7th, 2014 (in your local timezone).", + "badge_active_status": 0, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_NationalBeerDay2014_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_NationalBeerDay2014_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_NationalBeerDay2014_lg.jpg" + }, + "created_at": "Mon, 07 Apr 2014 12:11:28 +0000", + "local_created_at": "Mon, 07 Apr 2014 09:11:28 +0000", + "is_level": false, + "has_badge": true, + "category_id": 3, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 17294253, + "badge_id": 633, + "checkin_id": 84171515, + "badge_name": "Cinco de Mayo (2014)", + "badge_description": "Mondays may be boring, but Cinco de Mayo makes it all better! Now, break out the ice cold cervezas and celebrate!", + "badge_hint": "Enjoy a Mexican cerveza on Cinco de Mayo!", + "badge_active_status": 0, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_CincoDeMayo2014_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_CincoDeMayo2014_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_CincoDeMayo2014_lg.jpg" + }, + "created_at": "Mon, 05 May 2014 17:47:41 +0000", + "local_created_at": "Mon, 05 May 2014 14:47:41 +0000", + "is_level": false, + "has_badge": true, + "category_id": 3, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 17812271, + "badge_id": 635, + "checkin_id": 86077132, + "badge_name": "American Craft Beer Week® (2014)", + "badge_description": "Congratulations you’ve unlocked the American Craft Beer Week® badge! Thanks for supporting America’s small and independent craft brewers.", + "badge_hint": "Checkin to any beer from an American independently owned craft brewery during ACBW, May 12 - 18.", + "badge_active_status": 0, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_ACBW2014_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_ACBW2014_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_ACBW2014_lg.jpg" + }, + "created_at": "Thu, 15 May 2014 18:37:30 +0000", + "local_created_at": "Thu, 15 May 2014 15:37:30 +0000", + "is_level": false, + "has_badge": true, + "category_id": 3, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 17824532, + "badge_id": 636, + "checkin_id": 86111101, + "badge_name": "Dutch Beer Week (2014)", + "badge_description": "Celebrate the 'Week van het Nederlandse Bier' with us! Check http:\/\/www.weekvanhetnederlandsebier.nl<\/a> to find out where you can participate in special sessions. With close to 200 breweries operating in Holland now, we’d like to say ‘Proost!’ with you!", + "badge_hint": "Check into 3 different beers from a brewery that is listed in Netherlands on Untappd (from 5\/15 - 5\/25)", + "badge_active_status": 0, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_DutchBeerWeek2014_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_DutchBeerWeek2014_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_DutchBeerWeek2014_lg.jpg" + }, + "created_at": "Thu, 15 May 2014 20:26:52 +0000", + "local_created_at": "Thu, 15 May 2014 17:26:52 +0000", + "is_level": false, + "has_badge": true, + "category_id": 3, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, "user_badge_id": 19587300, + "badge_id": 656, "checkin_id": 93149347, "badge_name": "World Pint (2014)", "badge_description": " Goooooaaaaalllll! Cheers to the diversity of the World Cup and may the best team win!", "badge_hint": "Check-in to a beer from two different countries participating in the 2014 World Cup, from 6-12 to 7-13.\n", "badge_active_status": 0, "media": { - "badge_image_sm": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_WorldCup2014_sm.jpg", - "badge_image_md": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_WorldCup2014_md.jpg", - "badge_image_lg": "https:\/\/untappd.s3.amazonaws.com\/badges\/bdg_WorldCup2014_lg.jpg" + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_WorldCup2014_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_WorldCup2014_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_WorldCup2014_lg.jpg" }, "created_at": "Sun, 15 Jun 2014 17:03:50 +0000", + "local_created_at": "Sun, 15 Jun 2014 14:03:50 +0000", "is_level": false, + "has_badge": true, "category_id": 3, "levels": [ ], @@ -2046,6 +6586,2168 @@ "completed": 0, "total": 0 } + }, + { + "is_have": true, + "user_badge_id": 20635991, + "badge_id": 670, + "checkin_id": 97210563, + "badge_name": "Independence Day (2014)", + "badge_description": "Happy 4th of July! Celebrate America's independence with good friends, good food and most importantly, good beers!", + "badge_hint": "Check-in any beer during July 4th Weekend 2014 (July 4th - July 6th).", + "badge_active_status": 0, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_july4th2014_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_july4th2014_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_july4th2014_lg.jpg" + }, + "created_at": "Fri, 04 Jul 2014 14:08:35 +0000", + "local_created_at": "Fri, 04 Jul 2014 11:08:35 +0000", + "is_level": false, + "has_badge": true, + "category_id": 3, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 27834646, + "badge_id": 671, + "checkin_id": 125730883, + "badge_name": "Going Dutch", + "badge_description": "When it comes to a delicious beer from the Netherlands, going Dutch doesn’t have to mean sharing it. That's 5 different beers from a brewery from the Netherlands. Try 5 more Level 2.", + "badge_hint": "Check-in 5 different beers from the Netherlands.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_GoingDutch_sm.jpg?v=1", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_GoingDutch_md.jpg?v=1", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_GoingDutch_lg.jpg?v=1" + }, + "created_at": "Thu, 30 Oct 2014 03:17:04 +0000", + "local_created_at": "Wed, 29 Oct 2014 21:17:04 +0000", + "is_level": true, + "has_badge": true, + "category_id": 1, + "badge_type": "country_badge", + "next_badge_id": 672, + "levels": { + "count": 1, + "items": [ + { + "actual_badge_id": 671, + "badge_id": 27834646, + "checkin_id": 125730883, + "badge_name": "Going Dutch", + "badge_description": "When it comes to a delicious beer from the Netherlands, going Dutch doesn’t have to mean sharing it. That's 5 different beers from a brewery from the Netherlands. Try 5 more Level 2.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_GoingDutch_sm.jpg?v=1", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_GoingDutch_md.jpg?v=1", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_GoingDutch_lg.jpg?v=1" + }, + "created_at": "Thu, 30 Oct 2014 03:17:04 +0000" + } + ] + }, + "badge_pack": false + }, + { + "user_badge_id": 0, + "badge_id": 681, + "checkin_id": 0, + "badge_name": "Flamenco", + "badge_description": "Get your dance shoes on, and grab a beer! Although when you realize it’s brew from España, you may want to sit down and enjoy the flavor of Spain! That's 5 different beers from a brewery from Spain. Try 5 more for Level 2.", + "badge_hint": "Check-in 5 different beers from a brewery from Spain.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": true, + "badge_type": "country_badge", + "category_id": 1, + "has_badge": false, + "levels": [ + ], + "badge_pack": false + }, + { + "user_badge_id": 0, + "badge_id": 691, + "checkin_id": 0, + "badge_name": "Brew Lagoon ", + "badge_description": "While relaxing in one of the many geothermal hot springs through the country, why not enjoy a refreshing local Icelandic brew! That's 5 different beers from a brewery from Iceland. Try 5 more for Level 2.", + "badge_hint": "Check-in 5 different beers from a brewery from Iceland.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": true, + "badge_type": "country_badge", + "category_id": 1, + "has_badge": false, + "levels": [ + ], + "badge_pack": false + }, + { + "user_badge_id": 42853659, + "badge_id": 701, + "checkin_id": 145140643, + "badge_name": "Swedish Brews", + "badge_description": "Normally DIY furniture and meatballs are all that come to mind, but now you can add Swedish beer to that list! That's 5 different beers from a brewery from Sweden. Try 5 more Level 2.", + "badge_hint": "Check-in 5 different beers from a brewery from Sweden.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_Sweden_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_Sweden_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_Sweden_lg.jpg" + }, + "created_at": "Fri, 09 Jan 2015 22:26:43 +0000", + "local_created_at": "Fri, 09 Jan 2015 15:26:43 +0000", + "is_level": true, + "has_badge": true, + "category_id": 1, + "badge_type": "country_badge", + "next_badge_id": 702, + "levels": { + "count": 1, + "items": [ + { + "actual_badge_id": 701, + "badge_id": 42853659, + "checkin_id": 145140643, + "badge_name": "Swedish Brews", + "badge_description": "Normally DIY furniture and meatballs are all that come to mind, but now you can add Swedish beer to that list! That's 5 different beers from a brewery from Sweden. Try 5 more Level 2.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_Sweden_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_Sweden_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_Sweden_lg.jpg" + }, + "created_at": "Fri, 09 Jan 2015 22:26:43 +0000" + } + ] + }, + "badge_pack": false + }, + { + "user_badge_id": 42600110, + "badge_id": 711, + "checkin_id": 144406892, + "badge_name": "Fruits of Your Labor", + "badge_description": "It’s been a long day and now it’s time for a reward. Crisp, tasty and refreshing, enjoy that delicious fruit beer! That's 5 different beers Fruit Beers. Try 5 more for Level 2.", + "badge_hint": "Check-in 5 different beers with the style of Fruit Beer.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_FruitsOfYourLabor_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_FruitsOfYourLabor_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_FruitsOfYourLabor_lg.jpg" + }, + "created_at": "Mon, 05 Jan 2015 04:49:50 +0000", + "local_created_at": "Sun, 04 Jan 2015 21:49:50 +0000", + "is_level": true, + "has_badge": true, + "category_id": 1, + "badge_type": "type_pack", + "next_badge_id": 712, + "levels": { + "count": 1, + "items": [ + { + "actual_badge_id": 711, + "badge_id": 42600110, + "checkin_id": 144406892, + "badge_name": "Fruits of Your Labor", + "badge_description": "It’s been a long day and now it’s time for a reward. Crisp, tasty and refreshing, enjoy that delicious fruit beer! That's 5 different beers Fruit Beers. Try 5 more for Level 2.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_FruitsOfYourLabor_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_FruitsOfYourLabor_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_FruitsOfYourLabor_lg.jpg" + }, + "created_at": "Mon, 05 Jan 2015 04:49:50 +0000" + } + ] + }, + "badge_pack": false + }, + { + "user_badge_id": 0, + "badge_id": 721, + "checkin_id": 0, + "badge_name": "Down In Smoke", + "badge_description": "Take a whiff and enjoy that smooth, smoky aroma while you down the whole pint. That's 5 different Smoked beers. Try 5 more Level 2!", + "badge_hint": "Check-in 5 different beers with the style of \"Smoked Beer\", \"Grätzer \/ Grodziskie\", or \"Rauchbier\".", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": true, + "badge_type": "type_pack", + "category_id": 1, + "has_badge": false, + "levels": [ + ], + "badge_pack": false + }, + { + "user_badge_id": 0, + "badge_id": 731, + "checkin_id": 0, + "badge_name": "I'll Be Bock", + "badge_description": "Once you’ve had just one, there’s no doubt you’ll be saying \"I'll be bock\" for another. That's 5 different Bock beers. Try 5 more for Level 2!", + "badge_hint": "Check-in 5 different beers with the style of Bock, Eisbock, Maibock\/Helles Bock, Weizenbock or Doppelbock.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": true, + "badge_type": "type_pack", + "category_id": 1, + "has_badge": false, + "levels": [ + ], + "badge_pack": false + }, + { + "user_badge_id": 0, + "badge_id": 741, + "checkin_id": 0, + "badge_name": "Gluten-Free", + "badge_description": "Get that gluten out of here! Thankfully these days, even if you can’t eat gluten, you can still enjoy a refreshing gluten-free brew. That's 5 different Gluten Free beers. Try 5 more for Level 2.", + "badge_hint": "Check-in 5 different beers with the style of Gluten-Free.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": true, + "badge_type": "type_pack", + "category_id": 1, + "has_badge": false, + "levels": [ + ], + "badge_pack": false + }, + { + "user_badge_id": 43073655, + "badge_id": 751, + "checkin_id": 145827995, + "badge_name": "Brewnettes Have More Fun (Level 4)", + "badge_description": "The age old battle of who has more fun - blondes or brunettes? In this case, you obviously chose \"brewnettes\"! That's 20 different Brown Ales. Try 5 more for Level 5.", + "badge_hint": "Check-in to 5 different beers with the style American Brown Ale, English Brown Ale, Imperial \/ Double Brown Ale or Belgian Brown Ale.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewnettesHaveMoreFun_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewnettesHaveMoreFun_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewnettesHaveMoreFun_lg.jpg" + }, + "created_at": "Mon, 13 Oct 2014 00:40:12 +0000", + "local_created_at": "Sun, 12 Oct 2014 18:40:12 +0000", + "is_level": true, + "has_badge": true, + "category_id": 1, + "badge_type": "type_pack", + "next_badge_id": 755, + "levels": { + "count": 4, + "items": [ + { + "actual_badge_id": 754, + "badge_id": 43073655, + "checkin_id": 145827995, + "badge_name": "Brewnettes Have More Fun (Level 4)", + "badge_description": "The age old battle of who has more fun - blondes or brunettes? In this case, you obviously chose \"brewnettes\"! That's 20 different Brown Ales. Try 5 more for Level 5.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewnettesHaveMoreFun_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewnettesHaveMoreFun_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewnettesHaveMoreFun_lg.jpg" + }, + "created_at": "Sun, 11 Jan 2015 05:57:18 +0000" + }, + { + "actual_badge_id": 753, + "badge_id": 39315657, + "checkin_id": 136870099, + "badge_name": "Brewnettes Have More Fun (Level 3)", + "badge_description": "The age old battle of who has more fun - blondes or brunettes? In this case, you obviously chose \"brewnettes\"! That's 15 different Brown Ales. Try 5 more for Level 4.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewnettesHaveMoreFun_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewnettesHaveMoreFun_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewnettesHaveMoreFun_lg.jpg" + }, + "created_at": "Sat, 13 Dec 2014 00:53:44 +0000" + }, + { + "actual_badge_id": 752, + "badge_id": 28106321, + "checkin_id": 126256703, + "badge_name": "Brewnettes Have More Fun (Level 2)", + "badge_description": "The age old battle of who has more fun - blondes or brunettes? In this case, you obviously chose \"brewnettes\"! That's 10 different Brown Ales. Try 5 more for Level 3.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewnettesHaveMoreFun_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewnettesHaveMoreFun_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewnettesHaveMoreFun_lg.jpg" + }, + "created_at": "Sat, 01 Nov 2014 04:56:19 +0000" + }, + { + "actual_badge_id": 751, + "badge_id": 26715582, + "checkin_id": 121786471, + "badge_name": "Brewnettes Have More Fun", + "badge_description": "The age old battle of who has more fun - blondes or brunettes? In this case, you obviously chose \"brewnettes\"! Try 5 different Brown Ales. Try 5 more for Level 2.", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewnettesHaveMoreFun_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewnettesHaveMoreFun_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewnettesHaveMoreFun_lg.jpg" + }, + "created_at": "Mon, 13 Oct 2014 00:40:12 +0000" + } + ] + }, + "badge_pack": false + }, + { + "user_badge_id": 0, + "badge_id": 761, + "checkin_id": 0, + "badge_name": "Beerspotting", + "badge_description": "All aboard the brew express! Grab a pint and enjoy the ride! That's a beer at 5 different places categorized as a Train or Train Station. Check out 5 more places for Level 2!", + "badge_hint": "Check-in a beer at 5 different places categorized as a Train or Train Station.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": true, + "badge_type": "venue_match", + "category_id": 2, + "has_badge": false, + "levels": [ + ], + "badge_pack": false + }, + { + "user_badge_id": 0, + "badge_id": 771, + "checkin_id": 0, + "badge_name": "Visit The Beer Garden", + "badge_description": "It can get pretty hot standing in the sun, but you’re obviously the smart one in the crowd because you’ve tracked down the beer garden! That's a beer at 5 different places categorized as a Conference or Festival. Try 5 more places for Level 2!", + "badge_hint": "Check-in a beer at 5 different places categorized as a Conference or Festival.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": true, + "badge_type": "venue_match", + "category_id": 2, + "has_badge": false, + "levels": [ + ], + "badge_pack": false + }, + { + "is_have": true, + "user_badge_id": 22770588, + "badge_id": 785, + "checkin_id": 105433874, + "badge_name": "Hop 2 It", + "badge_description": "Interpretations of IPAs range far and wide — and Founders has interpreted the style in many ways. Founders IPAs vary in taste, strength and color, from the crimson of Red’s Rye IPA (draft only right now) to the golden straw of Double Trouble. Try a couple and see which interpretation suits you best. Hop 2 It!", + "badge_hint": "Check­in to two (2) different IPAs from Founders Brewing Co listed on the Untappd Blog between August 1st ­- August 31st, 2014", + "badge_active_status": 0, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_Hop2It_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_Hop2It_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_Hop2It_lg.jpg" + }, + "created_at": "Thu, 07 Aug 2014 16:18:26 +0000", + "local_created_at": "Thu, 07 Aug 2014 13:18:26 +0000", + "is_level": false, + "has_badge": true, + "category_id": 3, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 22756936, + "badge_id": 796, + "checkin_id": 105418927, + "badge_name": "IPA Day (2014)", + "badge_description": "Today, we all raise a crisp, bitter toast to one of the most iconic beer styles, the India Pale Ale. It’s IPA Day, so join the world as we all celebrate this style’s hoppy goodness!", + "badge_hint": "Check-in any beer the has the style listed an Black IPA, American IPA, English IPA, Double IPA, Triple IPA or White IPA on August 7th, 2014 in your local timezone.", + "badge_active_status": 0, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_ipaday2014_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_ipaday2014_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_ipaday2014_lg.jpg" + }, + "created_at": "Thu, 07 Aug 2014 15:46:51 +0000", + "local_created_at": "Thu, 07 Aug 2014 12:46:51 +0000", + "is_level": false, + "has_badge": true, + "category_id": 3, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 27264591, + "badge_id": 810, + "checkin_id": 124027843, + "badge_name": "Untappd 4th Anniversary", + "badge_description": "Three cheers to four years! It's Untappd's fourth birthday and we couldn't be happier. Celebrate with your favorite brew - you deserve it. Thanks to you and the entire community for all the support! ", + "badge_hint": "Check-in to any beer and celebrate Untappd's 4th birthday between 10\/22 - 10\/31.", + "badge_active_status": 0, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_utfouryears_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_utfouryears_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_utfouryears_lg.jpg" + }, + "created_at": "Thu, 23 Oct 2014 04:43:30 +0000", + "local_created_at": "Wed, 22 Oct 2014 22:43:30 +0000", + "is_level": false, + "has_badge": true, + "category_id": 3, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 28023063, + "badge_id": 812, + "checkin_id": 126111038, + "badge_name": "Witch's Brew (2014)", + "badge_description": "Trick or treat? Halloween is here and the witch's brew is ready for partaking. Break out your most ghastly of beers and celebrate!", + "badge_hint": "Check-in any beer from 10\/31 to 11\/2 (in your local timezone).", + "badge_active_status": 0, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_Halloween2014_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_Halloween2014_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_Halloween2014_lg.jpg" + }, + "created_at": "Sat, 01 Nov 2014 00:00:41 +0000", + "local_created_at": "Fri, 31 Oct 2014 18:00:41 +0000", + "is_level": false, + "has_badge": true, + "category_id": 3, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 28561884, + "badge_id": 814, + "checkin_id": 127819161, + "badge_name": "Coast to Coast Toast (2014)", + "badge_description": "What’s the Coast to Coast Toast? Learn more about the beers, nationwide Toast, events near you and more at http:\/\/www.coast-­2-­coast-­toast.com<\/a>. By obtaining this badge, you’ll also be eligible to sign up and win a trip to Iceland for two, courtesy of Iceland Naturally, Total Beverage Solutions and Untappd! Winners will be chosen at random in a drawing on December 5th.", + "badge_hint": "Check­in one (1) beer from a selected list of beer on the Untappd Blog between 11\/1\/14 ­- 12\/1\/14.", + "badge_active_status": 0, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_C2CT2014_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_C2CT2014_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_C2CT2014_lg.jpg" + }, + "created_at": "Sat, 08 Nov 2014 02:16:19 +0000", + "local_created_at": "Fri, 07 Nov 2014 19:16:19 +0000", + "is_level": false, + "has_badge": true, + "category_id": 3, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 28479351, + "badge_id": 816, + "checkin_id": 127514834, + "badge_name": "Stout Day (2014)", + "badge_description": "Cheers to the thick, roasted goodness that is the stout! International Stout Day is a celebration of this iconic beer style, creating awareness of it's bold, malty and full bodied deliciousness. Enjoy a stout and show your love!", + "badge_hint": "Check-in to any stout style beer on International Stout Day, November 6th!", + "badge_active_status": 0, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_StoutDay2014_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_StoutDay2014_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_StoutDay2014_lg.jpg" + }, + "created_at": "Fri, 07 Nov 2014 01:51:51 +0000", + "local_created_at": "Thu, 06 Nov 2014 18:51:51 +0000", + "is_level": false, + "has_badge": true, + "category_id": 3, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 45730132, + "badge_id": 3256, + "checkin_id": 151495228, + "badge_name": "Brew Bowl XLIX", + "badge_description": "Time to knock back your favorite brew while watching the grid iron battle between the East and the West! ", + "badge_hint": "Check-in any beer on Super Bowl Sunday, 2015.", + "badge_active_status": 0, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewBowlXLIX_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewBowlXLIX_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BrewBowlXLIX_lg.jpg" + }, + "created_at": "Sun, 01 Feb 2015 21:51:10 +0000", + "local_created_at": "Sun, 01 Feb 2015 14:51:10 +0000", + "is_level": false, + "has_badge": true, + "category_id": 3, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 45003938, + "badge_id": 827, + "checkin_id": 149803566, + "badge_name": "The Wine of Beers", + "badge_description": "Strong, bold flavors really suit you. The barleywine brings with it a long history dating all the way back to ancient Greece. That's 5 different Barleywine Beers! Try 5 more for Level 2!", + "badge_hint": "Check-in to 5 different beers that are categorized as a Barleywines.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_barleywine_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_barleywine_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_barleywine_lg.jpg" + }, + "created_at": "Mon, 26 Jan 2015 05:16:51 +0000", + "local_created_at": "Sun, 25 Jan 2015 22:16:51 +0000", + "is_level": true, + "has_badge": true, + "category_id": 1, + "badge_type": "type_pack", + "next_badge_id": 828, + "levels": { + "count": 1, + "items": [ + { + "actual_badge_id": 827, + "badge_id": 45003938, + "checkin_id": 149803566, + "badge_name": "The Wine of Beers", + "badge_description": "Strong, bold flavors really suit you. The barleywine brings with it a long history dating all the way back to ancient Greece. That's 5 different Barleywine Beers! Try 5 more for Level 2!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_barleywine_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_barleywine_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_barleywine_lg.jpg" + }, + "created_at": "Mon, 26 Jan 2015 05:16:51 +0000" + } + ] + }, + "badge_pack": false + }, + { + "user_badge_id": 53799464, + "badge_id": 837, + "checkin_id": 171555760, + "badge_name": "Keep Your Wits About You", + "badge_description": "Hazy and white like a winter storm, but best enjoyed on a warm sunny day. This specific style of wheat beer brings with it a subtle mix of spices and hops, giving it a distinct flavor with little bitterness. That's 5 different beers categorized as a Witbier. Try 5 more for Level 2!", + "badge_hint": "Check-in to 5 different beers that are categorized as a Witbier.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_witbier_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_witbier_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_witbier_lg.jpg" + }, + "created_at": "Sat, 11 Apr 2015 01:51:33 +0000", + "local_created_at": "Fri, 10 Apr 2015 19:51:33 +0000", + "is_level": true, + "has_badge": true, + "category_id": 1, + "badge_type": "type_pack", + "next_badge_id": 838, + "levels": { + "count": 1, + "items": [ + { + "actual_badge_id": 837, + "badge_id": 53799464, + "checkin_id": 171555760, + "badge_name": "Keep Your Wits About You", + "badge_description": "Hazy and white like a winter storm, but best enjoyed on a warm sunny day. This specific style of wheat beer brings with it a subtle mix of spices and hops, giving it a distinct flavor with little bitterness. That's 5 different beers categorized as a Witbier. Try 5 more for Level 2!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_witbier_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_witbier_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_witbier_lg.jpg" + }, + "created_at": "Sat, 11 Apr 2015 01:51:33 +0000" + } + ] + }, + "badge_pack": false + }, + { + "user_badge_id": 0, + "badge_id": 847, + "checkin_id": 0, + "badge_name": "Hey Honey", + "badge_description": "Honey isn’t just for the bees. This ancient fermented concauction combines honey, water and a variety of spices or hops. Your love of historical beverages is really showing. That's 5 different beers categorized as a Mead. Try 5 more for Level 2!", + "badge_hint": "Check-in to 5 different beers that are categorized as a Mead.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": true, + "badge_type": "type_pack", + "category_id": 1, + "has_badge": false, + "levels": [ + ], + "badge_pack": false + }, + { + "is_have": true, + "user_badge_id": 41734944, + "badge_id": 3201, + "checkin_id": 142660127, + "badge_name": "Happy Brew Year (2015)", + "badge_description": "Celebrate the start of a new year with your favorite beer. We wish you an amazing 2015 full of adventure and great brews. Cheers!", + "badge_hint": "Check-in any beer on 12\/31\/14 to 1\/4\/15. Happy New Year!", + "badge_active_status": 0, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_NewYears2015_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_NewYears2015_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_NewYears2015_lg.jpg" + }, + "created_at": "Wed, 31 Dec 2014 19:40:56 +0000", + "local_created_at": "Wed, 31 Dec 2014 14:40:56 +0000", + "is_level": false, + "has_badge": true, + "category_id": 3, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 857, + "checkin_id": 0, + "badge_name": "Czech It Out", + "badge_description": "Known for their pale lagers and pilsners, the Czech Republic has a long standing tradition of brewing. With the highest beer consumption per capita in the world, you’ll fit right in. That's 5 different beers from a brewery from the Czech Republic. Try 5 more for Level 2!", + "badge_hint": "Check-in 5 different beers from a brewery from the Czech Republic.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": true, + "badge_type": "country_badge", + "category_id": 1, + "has_badge": false, + "levels": [ + ], + "badge_pack": false + }, + { + "is_have": true, + "user_badge_id": 47365761, + "badge_id": 3258, + "checkin_id": 155785913, + "badge_name": "Founders Year-Around Arsenal", + "badge_description": "Beer doesn't have to be rare to be world-class. As long as you’re into bold, uncompromising, well-crafted beer, there’s something in Founders’ year-round arsenal for you.", + "badge_hint": "Check-in to two different year-round beers (Dirty Bastard, Centennial IPA, All Day IPA, Pale Ale, Porter, Red’s Rye IPA) from 2\/2\/15 to 3\/2\/15.", + "badge_active_status": 0, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_YearRoundArsenal_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_YearRoundArsenal_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_YearRoundArsenal_lg.jpg" + }, + "created_at": "Tue, 17 Feb 2015 05:36:54 +0000", + "local_created_at": "Mon, 16 Feb 2015 22:36:54 +0000", + "is_level": false, + "has_badge": true, + "category_id": 3, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 3259, + "checkin_id": 0, + "badge_name": "Imperial Czar", + "badge_description": "Originally created and brewed for Russian Emperor Peter the Great, the Russian Imperial Stout has a history as rich as it’s roasty, hoppy flavor. That's 5 different beers with the style of Russian Imperial Stout! Try 5 more for Level 2!", + "badge_hint": "Check-in to 5 different beers with the style of Russian Imperial Stout.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": true, + "badge_type": "type_pack", + "category_id": 1, + "has_badge": false, + "levels": [ + ], + "badge_pack": false + }, + { + "user_badge_id": 0, + "badge_id": 867, + "checkin_id": 0, + "badge_name": "On With The Show", + "badge_description": "Whether you’re catching a matinee or at a midnight showing, why not enjoy your favorite brew - where available of course. Let’s face it, the beer is probably less than your ticket! That's a beer at 5 different places categorized as a Movie Theatre or Theatre. Try 5 more places for Level 2!", + "badge_hint": "Check-in a beer at 5 different places categorized as a Movie Theatre or Theatre.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": true, + "badge_type": "venue_match", + "category_id": 2, + "has_badge": false, + "levels": [ + ], + "badge_pack": false + }, + { + "is_have": true, + "user_badge_id": 37302771, + "badge_id": 3198, + "checkin_id": 133136694, + "badge_name": "Beer-giving (2014)", + "badge_description": "Crack open your favorite brew and be thankful for all the craft beer community has given us while celebrating with friends and family! Cheers and happy Thanksgiving!", + "badge_hint": "Check-in any beer between 11\/27\/14 - 11\/30\/14 in your local-timezone. Happy Thanksgiving!", + "badge_active_status": 0, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_thanksgiving2014_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_thanksgiving2014_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_thanksgiving2014_lg.png" + }, + "created_at": "Fri, 28 Nov 2014 04:19:40 +0000", + "local_created_at": "Thu, 27 Nov 2014 21:19:40 +0000", + "is_level": false, + "has_badge": true, + "category_id": 3, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 40248482, + "badge_id": 3199, + "checkin_id": 139410173, + "badge_name": "Shock Top Winter Collection (2014)", + "badge_description": "Aw yeah! You have officially unlocked Shock Top bragging rights and this sweet winter seasonal badge. Best. Day. Ever. Don’t forget to mix and match to create your own epic combos.", + "badge_hint": "Check in one beer from the 2014 Shock Top Winter sampler pack by 2\/15.", + "badge_active_status": 0, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_ShockTopWinter_lg.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_ShockTopWinter_lg.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_ShockTopWinter_lg.jpg" + }, + "created_at": "Sun, 21 Dec 2014 22:15:36 +0000", + "local_created_at": "Sun, 21 Dec 2014 15:15:36 +0000", + "is_level": false, + "has_badge": true, + "category_id": 3, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 40724552, + "badge_id": 3200, + "checkin_id": 140562810, + "badge_name": "Merry Brew-mas (2014)", + "badge_description": "’Tis the season of joy, cheer and of course, great beer. Wishing you a wonderful holiday season! Merry Brew-mas to all and to all a good pint. From all of us at Untappd, Happy Holidays!", + "badge_hint": "Check-in any beer from 12\/25\/14 to 12\/28\/14 in your local-time zone.", + "badge_active_status": 0, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_Christmas2014_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_Christmas2014_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_Christmas2014_lg.jpg" + }, + "created_at": "Thu, 25 Dec 2014 20:02:02 +0000", + "local_created_at": "Thu, 25 Dec 2014 15:02:02 +0000", + "is_level": false, + "has_badge": true, + "category_id": 3, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 55661910, + "badge_id": 3358, + "checkin_id": 176460556, + "badge_name": "Hopped Up (Level 4)", + "badge_description": "Load up those hops, watch the IBU grow and drink it down! Now you’re all hopped up. The more bitter, the better. That's 20 different beers with an IBU of 65 or higher. Try 5 more for Level 5!", + "badge_hint": "Check-in 5 different beers with an IBU of 65 or higher.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_HoppedUp_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_HoppedUp_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_HoppedUp_lg.jpg" + }, + "created_at": "Sat, 07 Feb 2015 03:09:06 +0000", + "local_created_at": "Fri, 06 Feb 2015 20:09:06 +0000", + "is_level": true, + "has_badge": true, + "category_id": 1, + "badge_type": "beer_ibu", + "next_badge_id": 3362, + "levels": { + "count": 4, + "items": [ + { + "actual_badge_id": 3361, + "badge_id": 55661910, + "checkin_id": 176460556, + "badge_name": "Hopped Up (Level 4)", + "badge_description": "Load up those hops, watch the IBU grow and drink it down! Now you’re all hopped up. The more bitter, the better. That's 20 different beers with an IBU of 65 or higher. Try 5 more for Level 5!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_HoppedUp_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_HoppedUp_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_HoppedUp_lg.jpg" + }, + "created_at": "Sat, 25 Apr 2015 23:27:01 +0000" + }, + { + "actual_badge_id": 3360, + "badge_id": 51688681, + "checkin_id": 166492534, + "badge_name": "Hopped Up (Level 3)", + "badge_description": "Load up those hops, watch the IBU grow and drink it down! Now you’re all hopped up. The more bitter, the better. That's 15 different beers with an IBU of 65 or higher. Try 5 more for Level 4!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_HoppedUp_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_HoppedUp_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_HoppedUp_lg.jpg" + }, + "created_at": "Thu, 26 Mar 2015 04:28:16 +0000" + }, + { + "actual_badge_id": 3359, + "badge_id": 48238375, + "checkin_id": 157896214, + "badge_name": "Hopped Up (Level 2)", + "badge_description": "Load up those hops, watch the IBU grow and drink it down! Now you’re all hopped up. The more bitter, the better. That's 10 different beers with an IBU of 65 or higher. Try 5 more for Level 3!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_HoppedUp_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_HoppedUp_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_HoppedUp_lg.jpg" + }, + "created_at": "Wed, 25 Feb 2015 02:55:52 +0000" + }, + { + "actual_badge_id": 3358, + "badge_id": 46299146, + "checkin_id": 152758537, + "badge_name": "Hopped Up", + "badge_description": "Load up those hops, watch the IBU grow and drink it down! Now you’re all hopped up. The more bitter, the better. That's 5 different beers with an IBU of 65 or higher. Try 5 more for Level 2!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_HoppedUp_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_HoppedUp_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_HoppedUp_lg.jpg" + }, + "created_at": "Sat, 07 Feb 2015 03:09:06 +0000" + } + ] + }, + "badge_pack": false + }, + { + "user_badge_id": 54601634, + "badge_id": 3408, + "checkin_id": 173722187, + "badge_name": "Better Together", + "badge_description": "What happens when you take two or more amazing breweries, throw them into the tank and let them ferment together? An amazing collaboration beer, that’s what! Cheers to working together to create the perfect flavor. That's 5 different beers that been brewed as a collboration. Try 5 more for Level 2!", + "badge_hint": "Check-in 5 different beers that been brewed by 2 more more breweries (collaboration).", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BetterTogether_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BetterTogether_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BetterTogether_lg.jpg" + }, + "created_at": "Sat, 18 Apr 2015 01:19:37 +0000", + "local_created_at": "Fri, 17 Apr 2015 19:19:37 +0000", + "is_level": true, + "has_badge": true, + "category_id": 1, + "badge_type": "beer_collab", + "next_badge_id": 3409, + "levels": { + "count": 1, + "items": [ + { + "actual_badge_id": 3408, + "badge_id": 54601634, + "checkin_id": 173722187, + "badge_name": "Better Together", + "badge_description": "What happens when you take two or more amazing breweries, throw them into the tank and let them ferment together? An amazing collaboration beer, that’s what! Cheers to working together to create the perfect flavor. That's 5 different beers that been brewed as a collboration. Try 5 more for Level 2!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BetterTogether_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BetterTogether_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BetterTogether_lg.jpg" + }, + "created_at": "Sat, 18 Apr 2015 01:19:37 +0000" + } + ] + }, + "badge_pack": false + }, + { + "user_badge_id": 54686732, + "badge_id": 3458, + "checkin_id": 173954362, + "badge_name": "Dubbel, Tripel and Quad Oh My!", + "badge_description": "Dubbel, Tripel, or Quad, you can’t go wrong with these amazing feats of Belgian style brewing. Whether you’re looking for something light and golden or dark and boozy, one of these will do the trick! That's 5 different beers with the style of Dubbel, Tripel or Quad! Try 5 more for Level 2!", + "badge_hint": "Check-in 5 different beers with the style of Belgian Dubbel, Tripel or Quad.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_DubTripQuad_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_DubTripQuad_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_DubTripQuad_lg.jpg" + }, + "created_at": "Sat, 18 Apr 2015 17:48:42 +0000", + "local_created_at": "Sat, 18 Apr 2015 11:48:42 +0000", + "is_level": true, + "has_badge": true, + "category_id": 1, + "badge_type": "type_pack", + "next_badge_id": 3459, + "levels": { + "count": 1, + "items": [ + { + "actual_badge_id": 3458, + "badge_id": 54686732, + "checkin_id": 173954362, + "badge_name": "Dubbel, Tripel and Quad Oh My!", + "badge_description": "Dubbel, Tripel, or Quad, you can’t go wrong with these amazing feats of Belgian style brewing. Whether you’re looking for something light and golden or dark and boozy, one of these will do the trick! That's 5 different beers with the style of Dubbel, Tripel or Quad! Try 5 more for Level 2!", + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_DubTripQuad_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_DubTripQuad_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_DubTripQuad_lg.jpg" + }, + "created_at": "Sat, 18 Apr 2015 17:48:42 +0000" + } + ] + }, + "badge_pack": false + }, + { + "user_badge_id": 0, + "badge_id": 3508, + "checkin_id": 0, + "badge_name": "Liquid Lunch", + "badge_description": "Are you having a rough morning or perhaps just can’t wait for happy hour. Why not grab a quick pint with lunch and coast through the afternoon.", + "badge_hint": "Check-in 5 different beers between 12pm - 2pm (in your local-timezone) in a Calendar month on Monday - Friday. Please note that at the time of the check-in, the app will only take the current timezone (i.e GMT Offset) into affect and other checkins in other timezones (including daylight savings time, if your location supports it) may not count toward the badge, depending on the time of that check-in. If you have questions or concerns - let us know at http:\/\/help.untappd.com..", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 1, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 47365760, + "badge_id": 3512, + "checkin_id": 155785913, + "badge_name": "Beer City, USA", + "badge_description": "Congratulations! You have checked in two beers from Beer City USA, aka Grand Rapids, Michigan. Or, as USA Today prefers to call us, America’s Best Beer Town. This is where beer lovers come to enjoy more sensational suds per square mile, at 30+ close­by craft breweries.", + "badge_hint": "Check­in to two (2) beers by different Brewery from a list provided on our Blog from 2\/16\/15 to 3\/16\/2015", + "badge_active_status": 0, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BeerCityUSA_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BeerCityUSA_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_BeerCityUSA_lg.jpg" + }, + "created_at": "Tue, 17 Feb 2015 05:36:54 +0000", + "local_created_at": "Mon, 16 Feb 2015 22:36:54 +0000", + "is_level": false, + "has_badge": true, + "category_id": 3, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 3513, + "checkin_id": 0, + "badge_name": "IPA Enlightened", + "badge_description": "Cheers, Hop Lover! You have reached the pinnacle of IPA Enlightenment. By checking out three Green Flash IPA offerings ­ a Session, Single and Double ­ we’ve elevated your craft status. Explore our entire portfolio at greenflashbrew.com<\/a>.", + "badge_hint": "Check-in to 1 Jibe Session IPA OR 1 Mosaic Session IPA, as well as 1 Soul Style IPA AND 1 West Coast IPA from Green Flash Brewing Co. between 2-17-15 and 5-17-15.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 3, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 47513140, + "badge_id": 3514, + "checkin_id": 155968588, + "badge_name": "Mardi Gras (2015)", + "badge_description": "Time to count up those beads, did you get more than last year? Here is to celebrating the end of Mardi Gras! Happy Fat Tuesday!", + "badge_hint": "Check-in any beer on Fat Tuesday (2\/17\/15).", + "badge_active_status": 0, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_MardiGras2015_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_MardiGras2015_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_MardiGras2015_lg.jpg" + }, + "created_at": "Wed, 18 Feb 2015 03:29:05 +0000", + "local_created_at": "Tue, 17 Feb 2015 20:29:05 +0000", + "is_level": false, + "has_badge": true, + "category_id": 3, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 53168665, + "badge_id": 3522, + "checkin_id": 170252414, + "badge_name": "NC Beer Month - April (2015)", + "badge_description": "It’s April and that means one thing: NC Beer Month is back! An annual celebration of the unique flavors of North Carolina craft brews filled with events and beer-related travel deals throughout the month. Find out more at http:\/\/ncbeermonth.com<\/a>. Cheers!", + "badge_hint": "Check in to (1) one beer from a list of NC Breweries on our blog form 4\/1\/15 to 4\/30\/15. (This for the April list only!)", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_NCBeerMonth2015April_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_NCBeerMonth2015April_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_NCBeerMonth2015April_lg.jpg" + }, + "created_at": "Mon, 06 Apr 2015 04:11:44 +0000", + "local_created_at": "Sun, 05 Apr 2015 22:11:44 +0000", + "is_level": false, + "has_badge": true, + "category_id": 3, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 53168666, + "badge_id": 3524, + "checkin_id": 170252414, + "badge_name": "Sierra Nevada: New Year, New Beers", + "badge_description": "Solid beer choice. Watch for Sierra Nevada’s three brand new beers: Hop Hunter IPA, Nooner Pilsner, and Beer Camp Hoppy Lager. Check into one of them to start collecting Alpha Ascent badges, you beer adventurer!", + "badge_hint": "Check­in to any Sierra Nevada beer between 3\/5\/15 - 4\/5\/15.", + "badge_active_status": 0, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_SN2015Bonus_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_SN2015Bonus_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_SN2015Bonus_lg.jpg" + }, + "created_at": "Mon, 06 Apr 2015 04:11:44 +0000", + "local_created_at": "Sun, 05 Apr 2015 22:11:44 +0000", + "is_level": false, + "has_badge": true, + "category_id": 3, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 53168667, + "badge_id": 3525, + "checkin_id": 170252414, + "badge_name": "Alpha Ascent - The Trailhead", + "badge_description": "Cheers to kick­starting your ascent! Find your stride and look for the second of three milestones on the journey: Hop Hunter IPA, Nooner Pilsner, and Beer Camp Hoppy Lager.", + "badge_hint": "Check in to any one (1) of Sierra Nevada’s newest beers ­ Hop Hunter IPA, Nooner Pilsner, or Beer Camp Hoppy Lager ­ between 3\/5\/15 - 4\/5\/15.", + "badge_active_status": 0, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_SN2015L1_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_SN2015L1_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_SN2015L1_lg.jpg" + }, + "created_at": "Mon, 06 Apr 2015 04:11:44 +0000", + "local_created_at": "Sun, 05 Apr 2015 22:11:44 +0000", + "is_level": false, + "has_badge": true, + "category_id": 3, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 52110924, + "badge_id": 3528, + "checkin_id": 167549985, + "badge_name": "Magners Irish Cider St. Patrick’s Day (2015)", + "badge_description": "Celebrate St. Patrick’s Day with Magners Irish Cider! Made from 17 varieties of apples and aged for up to two years in oak vats, both our Original and Pear ciders are best served over ice, with friends. Now is a good time.", + "badge_hint": "Check­in 3 times to Magners Irish Ciders or Irish Pear Cider from 3\/13\/15 ­- 4\/13\/15.", + "badge_active_status": 0, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_MagnersStPatricks2015_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_MagnersStPatricks2015_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_MagnersStPatricks2015_lg.jpg" + }, + "created_at": "Sun, 29 Mar 2015 00:30:14 +0000", + "local_created_at": "Sat, 28 Mar 2015 18:30:14 +0000", + "is_level": false, + "has_badge": true, + "category_id": 3, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 3529, + "checkin_id": 0, + "badge_name": "Big Hundo", + "badge_description": "What does it take to be 100 times bitterer than the rest? Tipping the scales at the absolute peak of bitterness, Big Hundo carries with it the heady hop aroma of Apollo and Simcoe hops and a flattering dark golden body. Step right up and test the strength of your taste buds...if you dare.", + "badge_hint": "Check­in to two (2) Big Hundo beers from Magic Hat between 3\/15\/2015 and 5\/15\/2015.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 3, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 50745056, + "badge_id": 3530, + "checkin_id": 164104373, + "badge_name": "St. Patrick's Day (2015)", + "badge_description": "Cheers to the Luck of the Irish on this St. Patrick's Day! Whether you're enjoying a hefty Triple IPA or a green Pilsner, we hope you have a blast!", + "badge_hint": "Check-in with ANY beer on 3\/17\/15 in your Local Timezone. Cheers!", + "badge_active_status": 0, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_StPatirkcs2015_sm.jpg?v=1", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_StPatirkcs2015_md.jpg?v=1", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_StPatirkcs2015_lg.jpg?v=1" + }, + "created_at": "Wed, 18 Mar 2015 02:22:20 +0000", + "local_created_at": "Tue, 17 Mar 2015 20:22:20 +0000", + "is_level": false, + "has_badge": true, + "category_id": 3, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 3535, + "checkin_id": 0, + "badge_name": "Yard House Annual Beer Review (2015)", + "badge_description": "Thank you for checking in to Yard House ­ to find out more about our beer selection, visit http:\/\/bit.ly\/1NrNHFp<\/a>!", + "badge_hint": "Check­in to five (5) different beers of the 20+ beers on the Beer Review menu at a Yard House between March 30, 2015 and June 30, 2015.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 3, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 3536, + "checkin_id": 0, + "badge_name": "Beverly Patch", + "badge_description": "Congrats on earning the Beverly Patch. Check out other Chicago neighborhoods to earn more. Now kick back and enjoy another Old Style.", + "badge_hint": "Check into one (1) Old Style beer while in the Beverly neighborhood of Chicago between 3\/31\/15 - 7\/31\/15.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 3, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 3537, + "checkin_id": 0, + "badge_name": "Bucktown Patch", + "badge_description": "Congrats on earning the Bucktown Patch. Check out other Chicago neighborhoods to earn more. Now kick back and enjoy another Old Style.", + "badge_hint": "Check into one (1) Old Style beer while in the Bucktown neighborhood of Chicago between 3\/31\/15 - 7\/31\/15.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 3, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 3538, + "checkin_id": 0, + "badge_name": "Gold Coast Patch", + "badge_description": "Congrats on earning the Gold Coast Patch. Check out other Chicago neighborhoods to earn more. Now kick back and enjoy another Old Style.", + "badge_hint": "Check into one (1) Old Style beer while in the Gold Coast neighborhood of Chicago between 3\/31\/15 - 7\/31\/15.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 3, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 3539, + "checkin_id": 0, + "badge_name": "Lake View Patch", + "badge_description": "Congrats on earning the Lake View Patch. Check out other Chicago neighborhoods to earn more. Now kick back and enjoy another Old Style.", + "badge_hint": "Check into one (1) Old Style beer while in the Lake View neighborhood of Chicago between 3\/31\/15 - 7\/31\/15.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 3, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 3540, + "checkin_id": 0, + "badge_name": "Lincoln Park Patch", + "badge_description": "Congrats on earning the Lincoln Park Patch. Check out other Chicago neighborhoods to earn more. Now kick back and enjoy another Old Style.", + "badge_hint": "Check into one (1) Old Style beer while in the Lincoln Park neighborhood of Chicago between 3\/31\/15 - 7\/31\/15.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 3, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 3541, + "checkin_id": 0, + "badge_name": "Lincoln Square Patch", + "badge_description": "Congrats on earning the Lincoln Square Patch. Check out other Chicago neighborhoods to earn more. Now kick back and enjoy another Old Style.", + "badge_hint": "Check into one (1) Old Style beer while in the Lincoln Square neighborhood of Chicago between 3\/31\/15 - 7\/31\/15.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 3, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 3542, + "checkin_id": 0, + "badge_name": "Logan Square Patch", + "badge_description": "Congrats on earning the Logan Square Patch. Check out other Chicago neighborhoods to earn more. Now kick back and enjoy another Old Style.", + "badge_hint": "Check into one (1) Old Style beer while in the Logan Square neighborhood of Chicago between 3\/31\/15 - 7\/31\/15.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 3, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 3543, + "checkin_id": 0, + "badge_name": "Pilsen Patch", + "badge_description": "Congrats on earning the Pilsen Patch. Check out other Chicago neighborhoods to earn more. Now kick back and enjoy another Old Style.", + "badge_hint": "Check into one (1) Old Style beer while in the Pilsen neighborhood of Chicago between 3\/31\/15 - 7\/31\/15.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 3, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 3544, + "checkin_id": 0, + "badge_name": "River North Patch", + "badge_description": "Congrats on earning the River North Patch. Check out other Chicago neighborhoods to earn more. Now kick back and enjoy another Old Style.", + "badge_hint": "Check into one (1) Old Style beer while in the River North neighborhood of Chicago between 3\/31\/15 - 7\/31\/15.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 3, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 3545, + "checkin_id": 0, + "badge_name": "South Loop Patch", + "badge_description": "Congrats on earning the South Loop Patch. Check out other Chicago neighborhoods to earn more. Now kick back and enjoy another Old Style.", + "badge_hint": "Check into one (1) Old Style beer while in the South Loop neighborhood of Chicago between 3\/31\/15 - 7\/31\/15.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 3, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 3546, + "checkin_id": 0, + "badge_name": "Wicker Park Patch", + "badge_description": "Congrats on earning the Wicker Park Patch. Check out other Chicago neighborhoods to earn more. Now kick back and enjoy another Old Style.", + "badge_hint": "Check into one (1) Old Style beer while in the Wicker Park neighborhood of Chicago between 3\/31\/15 - 7\/31\/15.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 3, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 3547, + "checkin_id": 0, + "badge_name": "Wrigleyville Patch", + "badge_description": "Congrats on earning the Wrigleyville Patch. Check out other Chicago neighborhoods to earn more. Now kick back and enjoy another Old Style.", + "badge_hint": "Check into one (1) Old Style beer while in the Wrigleyville neighborhood of Chicago between 3\/31\/15 - 7\/31\/15.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 3, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 3548, + "checkin_id": 0, + "badge_name": "Aurora Patch", + "badge_description": "Congrats on earning the Aurora Patch. Check out other Chicago neighborhoods to earn more. Now kick back and enjoy another Old Style.", + "badge_hint": "Check into one (1) Old Style beer while in the Aurora neighborhood of Chicago between 3\/31\/15 - 7\/31\/15.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 3, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 3549, + "checkin_id": 0, + "badge_name": "Batavia Patch", + "badge_description": "Congrats on earning the Batavia Patch. Check out other Chicago neighborhoods to earn more. Now kick back and enjoy another Old Style.", + "badge_hint": "Check into one (1) Old Style beer while in the Batavia neighborhood of Chicago between 3\/31\/15 - 7\/31\/15.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 3, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 3550, + "checkin_id": 0, + "badge_name": "Elgin Patch", + "badge_description": "Congrats on earning the Elgin Patch. Check out other Chicago neighborhoods to earn more. Now kick back and enjoy another Old Style.", + "badge_hint": "Check into one (1) Old Style beer while in the Elgin neighborhood of Chicago between 3\/31\/15 - 7\/31\/15.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 3, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 3551, + "checkin_id": 0, + "badge_name": "Geneva Patch", + "badge_description": "Congrats on earning the Geneva Patch. Check out other Chicago neighborhoods to earn more. Now kick back and enjoy another Old Style.", + "badge_hint": "Check into one (1) Old Style beer while in the Geneva neighborhood of Chicago between 3\/31\/15 - 7\/31\/15.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 3, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 3552, + "checkin_id": 0, + "badge_name": "Naperville Patch", + "badge_description": "Congrats on earning the Naperville Patch. Check out other Chicago neighborhoods to earn more. Now kick back and enjoy another Old Style.", + "badge_hint": "Check into one (1) Old Style beer while in the Naperville neighborhood of Chicago between 3\/31\/15 - 7\/31\/15.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 3, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 3553, + "checkin_id": 0, + "badge_name": "St. Charles Patch", + "badge_description": "Congrats on earning the St. Charles Patch. Check out other Chicago neighborhoods to earn more. Now kick back and enjoy another Old Style.", + "badge_hint": "Check into one (1) Old Style beer while in the St. Charles neighborhood of Chicago between 3\/31\/15 - 7\/31\/15.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 3, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 3554, + "checkin_id": 0, + "badge_name": "East \/ West Dundee Patch", + "badge_description": "Congrats on earning the East \/ West Dundee Patch. Check out other Chicago neighborhoods to earn more. Now kick back and enjoy another Old Style.", + "badge_hint": "Check into one (1) Old Style beer while in the East \/ West Dundee neighborhood of Chicago between 3\/31\/15 - 7\/31\/15.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 3, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 3555, + "checkin_id": 0, + "badge_name": "Yuengling® Summer Wheat", + "badge_description": "Looks like you’re ready for summer. Keep checking in to our summertime Weizen and unlock other surprises in May. ", + "badge_hint": "Check-in 1 Yuengling® Summer Wheat between 4-1-15 to 4-30-15.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 3, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 3556, + "checkin_id": 0, + "badge_name": "2015 WLT Tour Beers Badge - April", + "badge_description": "Winking Lizard knows your love of the Glass of the Month, placemat, and milestone gifts. This badge gives you the opportunity to keep that collection going! Drink 3 beers from the brewery\/importer specified on the badge and unlock the badge for the month. Work on collecting all twelve badges while you are finishing your Tour!", + "badge_hint": "Check in to 3 beers from the brewery of the month (listed on our blog), while at any Winking Lizard locations.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 3, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 3558, + "checkin_id": 0, + "badge_name": "#72andShockTop", + "badge_description": "Your forecast for today is #72andShockTop. We’re raising temps across the nation and melting winter blues. If you haven’t started summer yet, clear your calendar. It starts NOW!", + "badge_hint": "Check­in 2 different Shock Top Spring\/Summer sampler beers listed on the Untappd blog from 4-6-15 to 6-6-15.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 3, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "is_have": true, + "user_badge_id": 53431470, + "badge_id": 3560, + "checkin_id": 170682984, + "badge_name": "National Beer Day (2015)", + "badge_description": "It's time to celebrate water, barley, yeast, and hops. On this National Beer Day, let's raise a toast to our favorite beverage... beer, duh!", + "badge_hint": "Check-in any beer on April 7th, 2015 in your Local Timezone.", + "badge_active_status": 0, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_NationalBeerDay2015_sm.jpg", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_NationalBeerDay2015_md.jpg", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/badges\/bdg_NationalBeerDay2015_lg.jpg" + }, + "created_at": "Wed, 08 Apr 2015 01:32:58 +0000", + "local_created_at": "Tue, 07 Apr 2015 19:32:58 +0000", + "is_level": false, + "has_badge": true, + "category_id": 3, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 3563, + "checkin_id": 0, + "badge_name": "Goose Island Sour Sisters I", + "badge_description": "Congrats! You've unlocked the first of 5 Goose Island Sour Sister badges. This month's limited release is Halia ­- a farmhouse ale fermented in wine barrels with 50 lbs of whole peaches. Look for our next badge in June. Cheers!", + "badge_hint": "Check­in one (1) Goose Island limited release sour ale between 4\/15\/15 - 5\/15\/15. See Untappd's blog entry for more information.\r", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 3, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 3569, + "checkin_id": 0, + "badge_name": "Pittsburgh Craft Beer Week (2015)", + "badge_description": "Thanks for participating in Pittsburgh Craft Beer Week 2015 and checking out the Pittsburgh craft beer scene. Looking for more events and fun? Check out more #PCBW events here: www.pittsburghcraftbeerweek.com​<\/a>. Cheers!", + "badge_hint": "Check­in to any beer at three (3) different locations from list on Untappd’s blog from 4\/17\/15 ­- 4\/26\/15.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 3, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 3570, + "checkin_id": 0, + "badge_name": "Tulsa Craft Beer Week (2015)", + "badge_description": "Cheers and thank you for participating in the 3rd annual Tulsa Craft Beer Week!! From R-­Bar, The Fur Shop and BierGarten!\r", + "badge_hint": "Check­in to two (2) participating venues on the Untappd Blog during Tulsa Craft Beer Week, 4\/23 - ­ 5\/2.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 3, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 3571, + "checkin_id": 0, + "badge_name": "Harrisburg Beer Week (2015)", + "badge_description": "Cheers! It’s the first­ever Harrisburg Beer Week, benefiting Harrisburg River Rescue. Visit hbgbeerweek.com<\/a> ​for a full list of events and specials now through May 2, including fun, food, beer & baseball from badge sponsor, the Harrisburg Senators!", + "badge_hint": "Check­in to two (2) different craft beers within a 20 miles radius of Harrisburg's State Capital located on 3rd and State Sts, Harrisburg PA between 4\/24\/15 and 5\/2\/15,", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 3, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 3572, + "checkin_id": 0, + "badge_name": "Paint the Town Red", + "badge_description": "Get out there and raise a ruckus with your favorite Amber or Red Ale! That is 5 different beers with the style of American Amber \/ Red Ale or American Amber \/Red Ale. Try 5 more for Level 2!", + "badge_hint": "Check-in 5 different beers with the style of American Amber \/ Red Ale or American Amber \/ Red Lager.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": true, + "badge_type": "type_pack", + "category_id": 1, + "has_badge": false, + "levels": [ + ], + "badge_pack": false + }, + { + "user_badge_id": 0, + "badge_id": 3623, + "checkin_id": 0, + "badge_name": "Here Come the Vikings!", + "badge_description": "Even the vikings had to take a break from marauding once in a while. We like to think that, like us, they enjoy relaxing with a brew from their homeland. That's 5 different beers from a brewery from Norway. Try 5 more for Level 2!", + "badge_hint": "Check-in 5 different beers from a brewery from Norway.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": true, + "badge_type": "country_badge", + "category_id": 1, + "has_badge": false, + "levels": [ + ], + "badge_pack": false + }, + { + "user_badge_id": 0, + "badge_id": 3723, + "checkin_id": 0, + "badge_name": "Tea Time", + "badge_description": "Instead of a spot of tea, why not enjoy a proper pint. That doesn’t mean you can get all dressed up for it, so throw on your fanciest hat and enjoy that brew!", + "badge_hint": "Try five (5) pints instead of tea between 4PM & 6PM within a calendar month in your local timezone.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": false, + "category_id": 1, + "has_badge": false, + "levels": [ + ], + "badge_pack": 0, + "badge_pack_name": false, + "badge_pack_progress": { + "completed": 0, + "total": 0 + } + }, + { + "user_badge_id": 0, + "badge_id": 3673, + "checkin_id": 0, + "badge_name": "By the Campfire", + "badge_description": "Hiking, fishing, swimming - there are so many wonderful things to do while you enjoy the great outdoors. Even beer is better when surrounded by the beauty of nature. That's 5 different beers while at venue categorized as Great Outdoors. Visit 5 more for Level 2!", + "badge_hint": "Check-in a beer at 5 different venues with a category of Great Outdoors.", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": true, + "badge_type": "venue_match", + "category_id": 2, + "has_badge": false, + "levels": [ + ], + "badge_pack": false + }, + { + "user_badge_id": 0, + "badge_id": 3724, + "checkin_id": 0, + "badge_name": "You're Extra Special", + "badge_description": "Whether you’re feeling extra special or extra strong, stopping by the local pub for a delicious ESB is always a good decision! That's 5 different beers with the style of ESB. Try 5 more for Level 2!", + "badge_hint": "Check-in 5 different beers with the style of ESB (Extra Special \/ Strong Bitter)", + "badge_active_status": 1, + "media": { + "badge_image_sm": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_sm.png", + "badge_image_md": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_md.png", + "badge_image_lg": "https:\/\/d1c8v1qci5en44.cloudfront.net\/assets\/badges\/bdg_default_lg.png" + }, + "created_at": null, + "is_level": true, + "badge_type": "type_pack", + "category_id": 1, + "has_badge": false, + "levels": [ + ], + "badge_pack": false } ] } diff --git a/src/Untappd.Net.UnitTests/Untappd.Net.UnitTests.csproj b/src/Untappd.Net.UnitTests/Untappd.Net.UnitTests.csproj index dc85e22..024996e 100644 --- a/src/Untappd.Net.UnitTests/Untappd.Net.UnitTests.csproj +++ b/src/Untappd.Net.UnitTests/Untappd.Net.UnitTests.csproj @@ -78,6 +78,7 @@ + diff --git a/src/Untappd.Net/Request/Repository.cs b/src/Untappd.Net/Request/Repository.cs index 524606d..4de41a8 100644 --- a/src/Untappd.Net/Request/Repository.cs +++ b/src/Untappd.Net/Request/Repository.cs @@ -13,7 +13,7 @@ namespace Untappd.Net.Request { internal IRestClient Client; internal IRestRequest Request; - bool FailFast { get; set; } + public bool FailFast { get; set; } /// /// Event to listen to when failFast is set to false /// This allows you to capture the excpetion, before its swallowed diff --git a/src/Untappd.Net/Responses/Feeds/UserActivityFeed.cs b/src/Untappd.Net/Responses/Feeds/UserActivityFeed.cs index c29ef5e..c38a6ac 100644 --- a/src/Untappd.Net/Responses/Feeds/UserActivityFeed.cs +++ b/src/Untappd.Net/Responses/Feeds/UserActivityFeed.cs @@ -83,7 +83,7 @@ namespace Untappd.Net.Responses.Feeds.UserActivityFeed { [JsonProperty("facebook")] - public int Facebook { get; set; } + public string Facebook { get; set; } } public class User diff --git a/src/Untappd.Net/Responses/UserBadges.cs b/src/Untappd.Net/Responses/UserBadges.cs index 2dd2617..ab2c34f 100644 --- a/src/Untappd.Net/Responses/UserBadges.cs +++ b/src/Untappd.Net/Responses/UserBadges.cs @@ -162,6 +162,12 @@ namespace Untappd.Net.Responses.UserBadges [JsonProperty("is_level")] public bool IsLevel { get; set; } + [JsonProperty("badge_type")] + public string BadgeType { get; set; } + + [JsonProperty("has_badge")] + public bool HasBadge { get; set; } + [JsonProperty("category_id")] public int CategoryId { get; set; } @@ -175,7 +181,7 @@ namespace Untappd.Net.Responses.UserBadges public Levels Levels { get; set; } [JsonProperty("badge_pack")] - public int BadgePack { get; set; } + public bool BadgePack { get; set; } [JsonProperty("badge_pack_name")] public bool BadgePackName { get; set; } diff --git a/src/Untappd.Net/Responses/UserInfo.cs b/src/Untappd.Net/Responses/UserInfo.cs index 7d62ede..cbe358b 100644 --- a/src/Untappd.Net/Responses/UserInfo.cs +++ b/src/Untappd.Net/Responses/UserInfo.cs @@ -204,7 +204,10 @@ namespace Untappd.Net.Responses.UserInfo { [JsonProperty("facebook")] - public int Facebook { get; set; } + public string Facebook { get; set; } + + [JsonProperty("twitter")] + public string Twitter { get; set; } } public class User2 @@ -964,6 +967,9 @@ namespace Untappd.Net.Responses.UserInfo [JsonProperty("facebook")] public int Facebook { get; set; } + + [JsonProperty("twitter")] + public string Twitter { get; set; } } public class Badge