diff --git a/bridges/PocketExploreBridge.php b/bridges/PocketExploreBridge.php
new file mode 100644
index 00000000..4576d157
--- /dev/null
+++ b/bridges/PocketExploreBridge.php
@@ -0,0 +1,39 @@
+ [
+ 'name' => 'Language',
+ 'required' => true,
+ 'exampleValue' => 'en',
+ ],
+ 'region' => [
+ 'name' => 'Region',
+ 'required' => true,
+ 'exampleValue' => 'US',
+ ],
+ ]];
+
+ public function collectData() {
+ $language = $this->getInput('language');
+ $region = $this->getInput('region');
+
+ $url = 'https://getpocket.cdn.mozilla.net/v3/firefox/global-recs?version=3&consumer_key=40249-e88c401e1b1f2242d9e441c4&locale_lang=' . $language . '®ion=' . $region . '&count=30';
+
+ $json = getContents($url);
+ $data = json_decode($json, true);
+
+ foreach ($data['recommendations'] as $recommendation) {
+ $this->items[] = array(
+ 'title' => $recommendation['title'],
+ 'uri' => $recommendation['url'],
+ 'author' => $recommendation['domain'],
+ 'content' => "
" . $recommendation['excerpt'] . "
", + ); + } + } +}