From 950305f61af8023d7ebf7cb3e45f5140d266812c Mon Sep 17 00:00:00 2001 From: Dave Machado Date: Wed, 2 Aug 2017 23:33:32 -0400 Subject: [PATCH 01/19] add travis ci comments on bad build --- .travis.yml | 1 + build/main.sh | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9d24e391..e8195332 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,7 @@ before_install: - rvm install 2.4.0 install: - gem install httparty ruby-progressbar + - wget wget -O build/build_bot https://raw.githubusercontent.com/davemachado/build-bot/master/build_bot/build_bot.py before_script: - cd build script: diff --git a/build/main.sh b/build/main.sh index b7b11493..9a3517ce 100755 --- a/build/main.sh +++ b/build/main.sh @@ -19,18 +19,19 @@ else fi echo "running format validation..." -./validate_format.rb $FORMAT_FILE +./validate_format.rb $FORMAT_FILE > format_results.txt if [[ $? != 0 ]]; then echo "format validation failed!" + cat format_results.txt | build_bot exit 1 else echo "format validation passed!" fi - echo "running link validation..." ./validate_links.rb $LINK_FILE if [[ $? != 0 ]]; then echo "link validation failed!" + echo "link(s) were unavailible during the build. Please verfiy that they are valid." | build_bot exit 1 else echo "link validation passed!" From 42d1272575d66542bc831eebd9cd921cc45d0c12 Mon Sep 17 00:00:00 2001 From: Dave Machado Date: Wed, 2 Aug 2017 23:40:50 -0400 Subject: [PATCH 02/19] Update .travis.yml --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e8195332..b3087e39 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,7 @@ before_install: - rvm install 2.4.0 install: - gem install httparty ruby-progressbar - - wget wget -O build/build_bot https://raw.githubusercontent.com/davemachado/build-bot/master/build_bot/build_bot.py + - wget -O build/build_bot https://raw.githubusercontent.com/davemachado/build-bot/master/build_bot/build_bot.py before_script: - cd build script: From 60b8db9cfa49344d72894217f99d7ad622544d98 Mon Sep 17 00:00:00 2001 From: Dave Machado Date: Wed, 2 Aug 2017 23:50:07 -0400 Subject: [PATCH 03/19] add errors to README to force bad build --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 294b1b2a..cfccc7a7 100644 --- a/README.md +++ b/README.md @@ -61,8 +61,8 @@ API | Description | Auth | HTTPS | Link | API | Description | Auth | HTTPS | Link | |---|---|---|---|---| | AniList | AniList Anime | `OAuth` | No | [Go!](http://anilist-api.readthedocs.io/en/latest/) | -| Jikan | Unofficial MyAnimeList API | No | Yes | [Go!](https://jikan.me) | -| Kitsu | Anime discovery platform | `OAuth` | Yes | [Go!](http://docs.kitsu.apiary.io/) | +| Jikan | unofficial MyAnimeList API | No | Yes | [Go!](https://jikan.me) | +| Kitsu |Anime discovery platform | `OAuth` | Yes | [Go!](http://docs.kitsu.apiary.io/) | | Studio Ghibli | Resources from Studio Ghibli films | No | Yes | [Go!](https://ghibliapi.herokuapp.com) | ### Anti-Malware @@ -87,15 +87,15 @@ API | Description | Auth | HTTPS | Link | ### Books API | Description | Auth | HTTPS | Link | |---|---|---|---|---| -| British National Bibliography | Books | No | No | [Go!](http://bnb.data.bl.uk/) | +|British National Bibliography | Books | No | No | [Go!](http://bnb.data.bl.uk/) | | Goodreads | Books | No | Yes | [Go!](https://www.goodreads.com/api) | | Google Books | Books | `OAuth` | Yes | [Go!](https://developers.google.com/books/) | ### Business API | Description | Auth | HTTPS | Link | |---|---|---|---|---| -| mailgun | Email Service | `apiKey` | Yes | [Go!](https://www.mailgun.com/) | -| markerapi | Trademark Search | No | No | [Go!](http://www.markerapi.com/) | +| mailgun | Email Service | `apikey` | Yes | [Go!](https://www.mailgun.com/) | +| markerapi | Trademark Search | No | no | [Go!](http://www.markerapi.com/) | ### Calendar API | Description | Auth | HTTPS | Link | From 504bd3d41718f8568307168fa076ee96c66002d6 Mon Sep 17 00:00:00 2001 From: Dave Machado Date: Wed, 2 Aug 2017 23:54:15 -0400 Subject: [PATCH 04/19] add pipe to build_bot --- build/main.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build/main.sh b/build/main.sh index b7b11493..9a3517ce 100755 --- a/build/main.sh +++ b/build/main.sh @@ -19,18 +19,19 @@ else fi echo "running format validation..." -./validate_format.rb $FORMAT_FILE +./validate_format.rb $FORMAT_FILE > format_results.txt if [[ $? != 0 ]]; then echo "format validation failed!" + cat format_results.txt | build_bot exit 1 else echo "format validation passed!" fi - echo "running link validation..." ./validate_links.rb $LINK_FILE if [[ $? != 0 ]]; then echo "link validation failed!" + echo "link(s) were unavailible during the build. Please verfiy that they are valid." | build_bot exit 1 else echo "link validation passed!" From 7a54d2af6fdf45d310e58a34fcaedf0264ef71dc Mon Sep 17 00:00:00 2001 From: Dave Machado Date: Thu, 3 Aug 2017 10:33:06 -0400 Subject: [PATCH 05/19] update pip install for build-bot --- .travis.yml | 3 ++- build/main.sh | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9d24e391..3fbee404 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,11 @@ -language: node_js +language: python notifications: email: false before_install: - rvm install 2.4.0 install: - gem install httparty ruby-progressbar + - pip install build-bot before_script: - cd build script: diff --git a/build/main.sh b/build/main.sh index 9a3517ce..0d6759c6 100755 --- a/build/main.sh +++ b/build/main.sh @@ -22,7 +22,7 @@ echo "running format validation..." ./validate_format.rb $FORMAT_FILE > format_results.txt if [[ $? != 0 ]]; then echo "format validation failed!" - cat format_results.txt | build_bot + cat format_results.txt | build_bot.py exit 1 else echo "format validation passed!" @@ -31,7 +31,7 @@ echo "running link validation..." ./validate_links.rb $LINK_FILE if [[ $? != 0 ]]; then echo "link validation failed!" - echo "link(s) were unavailible during the build. Please verfiy that they are valid." | build_bot + echo "link(s) were unavailible during the build. Please verfiy that they are valid." | build_bot.py exit 1 else echo "link validation passed!" From 5b30b259e765e5835f3b7c5657310fc8a2597f5d Mon Sep 17 00:00:00 2001 From: Dave Machado Date: Thu, 3 Aug 2017 10:37:41 -0400 Subject: [PATCH 06/19] add pip install requirements to build config --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 3fbee404..c5f36618 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,9 +3,11 @@ notifications: email: false before_install: - rvm install 2.4.0 + - wget https://raw.githubusercontent.com/davemachado/build-bot/master/build_bot/requirements.txt install: - gem install httparty ruby-progressbar - pip install build-bot + - pip install -r requirements.txt before_script: - cd build script: From f6b7468e09509fc4147eb7c3abdfca3c9ccad30f Mon Sep 17 00:00:00 2001 From: Dave Machado Date: Thu, 3 Aug 2017 10:42:14 -0400 Subject: [PATCH 07/19] bring README to good status --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index cfccc7a7..7daee6f7 100644 --- a/README.md +++ b/README.md @@ -61,8 +61,8 @@ API | Description | Auth | HTTPS | Link | API | Description | Auth | HTTPS | Link | |---|---|---|---|---| | AniList | AniList Anime | `OAuth` | No | [Go!](http://anilist-api.readthedocs.io/en/latest/) | -| Jikan | unofficial MyAnimeList API | No | Yes | [Go!](https://jikan.me) | -| Kitsu |Anime discovery platform | `OAuth` | Yes | [Go!](http://docs.kitsu.apiary.io/) | +| Jikan | Unofficial MyAnimeList API | No | Yes | [Go!](https://jikan.me) | +| Kitsu | Anime discovery platform | `OAuth` | Yes | [Go!](http://docs.kitsu.apiary.io/) | | Studio Ghibli | Resources from Studio Ghibli films | No | Yes | [Go!](https://ghibliapi.herokuapp.com) | ### Anti-Malware @@ -78,6 +78,7 @@ API | Description | Auth | HTTPS | Link | ### Art & Design API | Description | Auth | HTTPS | Link | |---|---|---|---|---| +| Behance | Design | `apiKey` | Yes | [Go!](https://www.behance.net/dev) | | Dribbble | Design | `OAuth` | No | [Go!](http://developer.dribbble.com/v1/) | | Harvard Art Museums | Art | `apiKey` | No | [Go!](https://github.com/harvardartmuseums/api-docs) | | Icons8 | Icons | `OAuth` | Yes | [Go!](http://docs.icons8.apiary.io/#reference/0/meta) | @@ -87,15 +88,15 @@ API | Description | Auth | HTTPS | Link | ### Books API | Description | Auth | HTTPS | Link | |---|---|---|---|---| -|British National Bibliography | Books | No | No | [Go!](http://bnb.data.bl.uk/) | +| British National Bibliography | Books | No | No | [Go!](http://bnb.data.bl.uk/) | | Goodreads | Books | No | Yes | [Go!](https://www.goodreads.com/api) | | Google Books | Books | `OAuth` | Yes | [Go!](https://developers.google.com/books/) | ### Business API | Description | Auth | HTTPS | Link | |---|---|---|---|---| -| mailgun | Email Service | `apikey` | Yes | [Go!](https://www.mailgun.com/) | -| markerapi | Trademark Search | No | no | [Go!](http://www.markerapi.com/) | +| mailgun | Email Service | `apiKey` | Yes | [Go!](https://www.mailgun.com/) | +| markerapi | Trademark Search | No | No | [Go!](http://www.markerapi.com/) | ### Calendar API | Description | Auth | HTTPS | Link | From 413f8db212a96c4a9dd640784763761b144538b1 Mon Sep 17 00:00:00 2001 From: Dave Machado Date: Thu, 3 Aug 2017 11:43:12 -0400 Subject: [PATCH 08/19] remove executable extensions --- build/main.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/main.sh b/build/main.sh index 0d6759c6..9a3517ce 100755 --- a/build/main.sh +++ b/build/main.sh @@ -22,7 +22,7 @@ echo "running format validation..." ./validate_format.rb $FORMAT_FILE > format_results.txt if [[ $? != 0 ]]; then echo "format validation failed!" - cat format_results.txt | build_bot.py + cat format_results.txt | build_bot exit 1 else echo "format validation passed!" @@ -31,7 +31,7 @@ echo "running link validation..." ./validate_links.rb $LINK_FILE if [[ $? != 0 ]]; then echo "link validation failed!" - echo "link(s) were unavailible during the build. Please verfiy that they are valid." | build_bot.py + echo "link(s) were unavailible during the build. Please verfiy that they are valid." | build_bot exit 1 else echo "link validation passed!" From b848d99d672d7383c1df5ad9d7be5dd4a40097c2 Mon Sep 17 00:00:00 2001 From: Dave Machado Date: Thu, 3 Aug 2017 11:48:47 -0400 Subject: [PATCH 09/19] move git credentials settings to config file [ci skip] --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index c5f36618..1433b132 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,6 +9,8 @@ install: - pip install build-bot - pip install -r requirements.txt before_script: + - git config --global user.name $GH_USER + - git config --global user.email $GH_EMAIL - cd build script: - ./main.sh From 5214187d8dea363a760d593cf0dd20d39e886346 Mon Sep 17 00:00:00 2001 From: Dave Machado Date: Thu, 3 Aug 2017 14:15:06 -0400 Subject: [PATCH 10/19] sync with upstream --- .travis.yml | 2 -- build/main.sh | 5 ++--- json/entries.json | 30 +++++++++++++++++++++++++++++- json/entries.min.json | 2 +- 4 files changed, 32 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1433b132..c5f36618 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,8 +9,6 @@ install: - pip install build-bot - pip install -r requirements.txt before_script: - - git config --global user.name $GH_USER - - git config --global user.email $GH_EMAIL - cd build script: - ./main.sh diff --git a/build/main.sh b/build/main.sh index 9a3517ce..b7b11493 100755 --- a/build/main.sh +++ b/build/main.sh @@ -19,19 +19,18 @@ else fi echo "running format validation..." -./validate_format.rb $FORMAT_FILE > format_results.txt +./validate_format.rb $FORMAT_FILE if [[ $? != 0 ]]; then echo "format validation failed!" - cat format_results.txt | build_bot exit 1 else echo "format validation passed!" fi + echo "running link validation..." ./validate_links.rb $LINK_FILE if [[ $? != 0 ]]; then echo "link validation failed!" - echo "link(s) were unavailible during the build. Please verfiy that they are valid." | build_bot exit 1 else echo "link validation passed!" diff --git a/json/entries.json b/json/entries.json index ded42e4c..23b84849 100644 --- a/json/entries.json +++ b/json/entries.json @@ -104,6 +104,13 @@ } ], "Art & Design": [ + { + "API": "Behance", + "Auth": "apiKey", + "Description": "Design", + "HTTPS": true, + "Link": "https://www.behance.net/dev" + }, { "API": "Dribbble", "Auth": "OAuth", @@ -798,6 +805,13 @@ "HTTPS": true, "Link": "https://data.consumerfinance.gov/resource/jhzv-w97w.json" }, + { + "API": "IEX", + "Auth": null, + "Description": "Stocks and Market Data", + "HTTPS": true, + "Link": "https://iextrading.com/developer/" + }, { "API": "Razorpay IFSC", "Auth": null, @@ -877,6 +891,13 @@ "HTTPS": true, "Link": "https://github.com/andyklimczak/TheReportOfTheWeek-API" }, + { + "API": "What's on the menu?", + "Auth": "apiKey", + "Description": "NYPL human-transcribed historical menu collection", + "HTTPS": false, + "Link": "nypl.github.io/menus-api/" + }, { "API": "Yummly", "Auth": null, @@ -1418,7 +1439,7 @@ }, { "API": "Musikki", - "Auth": null, + "Auth": "apiKey", "Description": "Music", "HTTPS": true, "Link": "https://music-api.musikki.com/reference" @@ -1740,6 +1761,13 @@ } ], "Social": [ + { + "API": "Cisco Spark", + "Auth": "OAuth", + "Description": "Team Collaboration Software", + "HTTPS": true, + "Link": "https://developer.ciscospark.com" + }, { "API": "Discord", "Auth": "OAuth", diff --git a/json/entries.min.json b/json/entries.min.json index e71750cc..cb56afe4 100644 --- a/json/entries.min.json +++ b/json/entries.min.json @@ -1 +1 @@ -{"Animals":[{"API":"Dogs","Description":"Based on the [Stanford Dogs Dataset](http://visionstanford.edu/aditya86/ImageNetDogs/)","Auth":null,"HTTPS":true,"Link":"https://dog.ceo/dog-api/"},{"API":"IUCN","Description":"IUCN Red List of Threatened Species","Auth":"apiKey","HTTPS":false,"Link":"http://apiv3.iucnredlist.org/api/v3/docs"},{"API":"Petfinder","Description":"Adoption","Auth":"apiKey","HTTPS":true,"Link":"https://www.petfinder.com/developers/api-docs/"},{"API":"RescueGroups","Description":"Adoption","Auth":null,"HTTPS":true,"Link":"https://userguide.rescuegroups.org/display/APIDG/API+Developers+Guide+Home"}],"Anime":[{"API":"AniList","Description":"AniList Anime","Auth":"OAuth","HTTPS":false,"Link":"http://anilist-api.readthedocs.io/en/latest/"},{"API":"Jikan","Description":"Unofficial MyAnimeList API","Auth":null,"HTTPS":true,"Link":"https://jikan.me"},{"API":"Kitsu","Description":"Anime discovery platform","Auth":"OAuth","HTTPS":true,"Link":"http://docs.kitsu.apiary.io/"},{"API":"Studio Ghibli","Description":"Resources from Studio Ghibli films","Auth":null,"HTTPS":true,"Link":"https://ghibliapi.herokuapp.com"}],"Anti-Malware":[{"API":"AlienVault Open Threat Exchange (OTX)","Description":"IP/domain/URL reputation","Auth":"apiKey","HTTPS":true,"Link":"https://otx.alienvault.com/api/"},{"API":"Certly","Description":"Certly Link/Domain Flagging","Auth":"apiKey","HTTPS":true,"Link":"https://guard.certly.io/"},{"API":"Google Safe Browsing","Description":"Google Link/Domain Flagging","Auth":"apiKey","HTTPS":true,"Link":"https://developers.google.com/safe-browsing/"},{"API":"Metacert","Description":"Metacert Link Flagging","Auth":"apiKey","HTTPS":true,"Link":"https://metacert.com/"},{"API":"VirusTotal","Description":"VirusTotal File/URL Analysis","Auth":"apiKey","HTTPS":true,"Link":"https://www.virustotal.com/en/documentation/public-api/"},{"API":"Web Of Trust (WOT)","Description":"Website reputation","Auth":"apiKey","HTTPS":true,"Link":"https://www.mywot.com/wiki/API"}],"Art & Design":[{"API":"Dribbble","Description":"Design","Auth":"OAuth","HTTPS":false,"Link":"http://developer.dribbble.com/v1/"},{"API":"Harvard Art Museums","Description":"Art","Auth":"apiKey","HTTPS":false,"Link":"https://github.com/harvardartmuseums/api-docs"},{"API":"Icons8","Description":"Icons","Auth":"OAuth","HTTPS":true,"Link":"http://docs.icons8.apiary.io/#reference/0/meta"},{"API":"Noun Project","Description":"Icons","Auth":"OAuth","HTTPS":false,"Link":"http://api.thenounproject.com/index.html"},{"API":"Rijksmuseum","Description":"Art","Auth":"apiKey","HTTPS":true,"Link":"https://www.rijksmuseum.nl/en/api"}],"Books":[{"API":"British National Bibliography","Description":"Books","Auth":null,"HTTPS":false,"Link":"http://bnb.data.bl.uk/"},{"API":"Goodreads","Description":"Books","Auth":null,"HTTPS":true,"Link":"https://www.goodreads.com/api"},{"API":"Google Books","Description":"Books","Auth":"OAuth","HTTPS":true,"Link":"https://developers.google.com/books/"}],"Business":[{"API":"mailgun","Description":"Email Service","Auth":"apiKey","HTTPS":true,"Link":"https://www.mailgun.com/"},{"API":"markerapi","Description":"Trademark Search","Auth":null,"HTTPS":false,"Link":"http://www.markerapi.com/"}],"Calendar":[{"API":"Church Calendar","Description":"Catholic liturgical calendar","Auth":null,"HTTPS":false,"Link":"http://calapi.inadiutorium.cz/"},{"API":"Holidays","Description":"Historical data regarding holidays","Auth":"apiKey","HTTPS":true,"Link":"https://holidayapi.com/"},{"API":"LectServe","Description":"Protestant liturgical calendar","Auth":null,"HTTPS":false,"Link":"http://www.lectserve.com"},{"API":"Non-Working Days","Description":"Database of ICS files for non working days","Auth":null,"HTTPS":true,"Link":"https://github.com/gadael/icsdb"}],"Cloud Storage & File Sharing":[{"API":"Box","Description":"File Sharing and Storage","Auth":"OAuth","HTTPS":true,"Link":"https://developer.box.com/"},{"API":"Dropbox","Description":"File Sharing and Storage","Auth":"OAuth","HTTPS":true,"Link":"https://www.dropbox.com/developers"},{"API":"Google Drive","Description":"File Sharing and Storage","Auth":"OAuth","HTTPS":true,"Link":"https://developers.google.com/drive/"},{"API":"OneDrive","Description":"File Sharing and Storage","Auth":"OAuth","HTTPS":true,"Link":"https://dev.onedrive.com/"}],"Currency Exchange":[{"API":"Currencylayer","Description":"Exchange rates and currency conversion","Auth":"apiKey","HTTPS":true,"Link":"https://currencylayer.com/documentation"},{"API":"Fixer.io","Description":"Exchange rates and currency conversion","Auth":null,"HTTPS":true,"Link":"http://fixer.io"}],"Data Access":[{"API":"18F","Description":"US Federal Government /Developer Program","Auth":null,"HTTPS":false,"Link":"http://18f.github.io/API-All-the-X/"},{"API":"Abbreviation","Description":"Get abbreviations and meanings","Auth":"X-Mashape-Key","HTTPS":true,"Link":"https://market.mashape.com/daxeel/abbreviations"},{"API":"CARTO","Description":"Location Information Prediction","Auth":"apiKey","HTTPS":true,"Link":"https://carto.com/"},{"API":"Callook.info","Description":"United States ham radio callsigns","Auth":null,"HTTPS":true,"Link":"https://callook.info"},{"API":"Celebinfo","Description":"Celebrity information","Auth":"X-Mashape-Key","HTTPS":true,"Link":"https://market.mashape.com/daxeel/celebinfo/"},{"API":"Colorado Data Engine","Description":"Formatted and geolocated Colorado public data","Auth":null,"HTTPS":true,"Link":"http://codataengine.org/"},{"API":"Colorado Information Marketplace","Description":"Colorado State Government Open Data","Auth":null,"HTTPS":true,"Link":"https://data.colorado.gov/"},{"API":"Datakick","Description":"The open product database","Auth":"apiKey","HTTPS":true,"Link":"https://www.datakick.org/api"},{"API":"Data USA","Description":"US Public Data","Auth":null,"HTTPS":true,"Link":"https://datausa.io/about/api/"},{"API":"Dronestream","Description":"Tracks United States drone strikes","Auth":null,"HTTPS":true,"Link":"https://dronestre.am/"},{"API":"fonoApi","Description":"Mobile Device Description","Auth":null,"HTTPS":true,"Link":"https://fonoapi.freshpixl.com/"},{"API":"Open Government, Australia","Description":"Australian Government Open Data","Auth":null,"HTTPS":true,"Link":"https://www.data.gov.au/"},{"API":"Open Government, USA","Description":"United States Government Open Data","Auth":null,"HTTPS":true,"Link":"https://www.data.gov/"},{"API":"Open Government, Canada","Description":"Canadian Government Open Data","Auth":null,"HTTPS":false,"Link":"http://open.canada.ca/en"},{"API":"Open Government Data, India","Description":"Indian Government Open Data","Auth":"apiKey","HTTPS":true,"Link":"https://data.gov.in/"},{"API":"Open Government, New Zealand","Description":"New Zealand Government Open Data","Auth":null,"HTTPS":true,"Link":"https://www.data.govt.nz/"},{"API":"Outpan","Description":"A Database of Everything","Auth":"apiKey","HTTPS":true,"Link":"https://outpan.mixnode.com/developers"},{"API":"Pearson","Description":"Dictionary Data","Auth":"apiKey","HTTPS":false,"Link":"http://developer.pearson.com/apis/dictionaries"},{"API":"Prague Opendata","Description":"Prague City Open Data","Auth":null,"HTTPS":false,"Link":"http://opendata.praha.eu/en"},{"API":"Quandl","Description":"Stock Market Data","Auth":null,"HTTPS":true,"Link":"https://www.quandl.com/"},{"API":"Represent by Open North","Description":"Find Canadian Government Representatives","Auth":null,"HTTPS":true,"Link":"https://represent.opennorth.ca/"},{"API":"Scoop.it","Description":"Content Curation Service","Auth":"apiKey","HTTPS":false,"Link":"http://www.scoop.it/dev"},{"API":"Teleport","Description":"Quality of Life Data","Auth":null,"HTTPS":true,"Link":"https://developers.teleport.org/"},{"API":"UPC database","Description":"More than 15 million barcode numbers from all around the world","Auth":"apiKey","HTTPS":true,"Link":"https://upcdatabase.org/api"},{"API":"Wikipedia","Description":"Mediawiki Encyclopedia","Auth":null,"HTTPS":true,"Link":"https://www.mediawiki.org/wiki/API:Main_page"},{"API":"Wordnik","Description":"Dictionary Data","Auth":null,"HTTPS":false,"Link":"http://developer.wordnik.com"},{"API":"Yelp","Description":"Find Local Business","Auth":"OAuth","HTTPS":true,"Link":"https://www.yelp.com/developers/documentation/v3"}],"Data Validation":[{"API":"languagelayer","Description":"Language detection","Auth":null,"HTTPS":true,"Link":"https://languagelayer.com"},{"API":"Lob.com","Description":"US Address Verification","Auth":"apiKey","HTTPS":true,"Link":"https://lob.com/"},{"API":"mailboxlayer","Description":"Email address validation","Auth":null,"HTTPS":true,"Link":"https://mailboxlayer.com"},{"API":"numverify","Description":"Phone number validation","Auth":null,"HTTPS":true,"Link":"https://numverify.com"},{"API":"vatlayer","Description":"VAT number validation","Auth":null,"HTTPS":true,"Link":"https://vatlayer.com"}],"Development":[{"API":"Adorable Avatars","Description":"Generate random cartoon avatars","Auth":null,"HTTPS":true,"Link":"http://avatars.adorable.io"},{"API":"APIs.guru","Description":"Wikipedia for Web APIs, OpenAPI/Swagger specs for public APIs","Auth":null,"HTTPS":true,"Link":"https://apis.guru/api-doc/"},{"API":"BetterMeta","Description":"Return a site's meta tags in JSON format","Auth":"X-Mashape-Key","HTTPS":true,"Link":"http://bettermeta.io"},{"API":"Changelogs.md","Description":"Structured changelog metadata from open source projects","Auth":null,"HTTPS":true,"Link":"https://changelogs.md"},{"API":"CDNJS","Description":"Library info on CDNJS","Auth":null,"HTTPS":true,"Link":"https://api.cdnjs.com/libraries/jquery"},{"API":"Faceplusplus","Description":"A tool to detect face","Auth":"OAuth","HTTPS":true,"Link":"https://www.faceplusplus.com/"},{"API":"Genderize.io","Description":"Determines a gender from a first name","Auth":null,"HTTPS":true,"Link":"https://genderize.io"},{"API":"Github - User Data","Description":"Pull public information for a user's github","Auth":null,"HTTPS":true,"Link":"https://api.github.com/users/hackeryou"},{"API":"Gitter","Description":"Chat for GitHub","Auth":"OAuth","HTTPS":true,"Link":"https://github.com/gitterHQ/docs"},{"API":"HackerRank","Description":"Compile source code and run against a set of provided test cases","Auth":"apiKey","HTTPS":true,"Link":"https://www.hackerrank.com/api/docs"},{"API":"Hipster Ipsum","Description":"Generates Hipster Ipsum text","Auth":null,"HTTPS":false,"Link":"http://hipsterjesus.com/"},{"API":"IPify","Description":"A simple IP Address API","Auth":null,"HTTPS":true,"Link":"https://www.ipify.org/"},{"API":"JSON 2 JSONP","Description":"Convert JSON to JSONP (on-the-fly) for easy cross-domain data requests using client-side JavaScript","Auth":null,"HTTPS":true,"Link":"https://json2jsonp.com/"},{"API":"JSONbin.io","Description":"Free JSON storage service Ideal for small scale Web apps, Websites and Mobile apps","Auth":null,"HTTPS":true,"Link":"https://jsonbin.io"},{"API":"JSONPlaceholder","Description":"Fake data for testing and prototyping","Auth":null,"HTTPS":false,"Link":"http://jsonplaceholder.typicode.com/"},{"API":"Judge0 API","Description":"Compile and run source code","Auth":null,"HTTPS":true,"Link":"https://api.judge0.com/"},{"API":"Kairos","Description":"Face Recognition and Emotion Analysis","Auth":"apiKey","HTTPS":true,"Link":"https://www.kairos.com/features"},{"API":"Let's Validate","Description":"Uncovers the technologies used on websites and URL to thumbnail","Auth":null,"HTTPS":true,"Link":"https://github.com/letsvalidate/api"},{"API":"LiveEdu","Description":"Live Coding Streaming","Auth":"OAuth","HTTPS":true,"Link":"https://www.liveedu.tv/developer/applications/"},{"API":"Lorem Text","Description":"Generates Lorem Ipsum text","Auth":"X-Mashape-Key","HTTPS":true,"Link":"https://market.mashape.com/montanaflynn/lorem-text-generator"},{"API":"Loripsum","Description":"The \"lorem ipsum\" generator that doesn't suck","Auth":null,"HTTPS":false,"Link":"http://loripsum.net/"},{"API":"Myjson","Description":"A simple JSON store for your web or mobile app","Auth":null,"HTTPS":false,"Link":"http://myjson.com/api"},{"API":"Plino","Description":"Spam filtering system","Auth":null,"HTTPS":true,"Link":"https://plino.herokuapp.com/"},{"API":"Public APIs","Description":"A collective list of free JSON APIs for use in web development","Auth":null,"HTTPS":true,"Link":"https://github.com/toddmotto/public-apis/tree/master/json"},{"API":"Random Word","Description":"Generate random word","Auth":null,"HTTPS":false,"Link":"http://www.setgetgo.com/randomword/"},{"API":"RandomUser","Description":"Generates random user data","Auth":null,"HTTPS":true,"Link":"https://randomuser.me"},{"API":"ReqRes","Description":"A hosted REST-API ready to respond to your AJAX requests","Auth":null,"HTTPS":true,"Link":"https://reqres.in/ "},{"API":"RoboHash","Description":"Generate random robot/alien avatars","Auth":null,"HTTPS":true,"Link":"https://robohash.org/"},{"API":"StackExchange","Description":"Q&A forum for developers","Auth":"OAuth","HTTPS":true,"Link":"https://api.stackexchange.com/"},{"API":"Stormpath","Description":"User Authentication","Auth":"apiKey","HTTPS":true,"Link":"https://stormpath.com/"},{"API":"UI Names","Description":"Generate random fake names","Auth":null,"HTTPS":true,"Link":"https://github.com/thm/uinames"},{"API":"Verse","Description":"Check what's the latest version of your favorite open-source project","Auth":null,"HTTPS":true,"Link":"https://verse.pawelad.xyz/"}],"Documents & Productivity":[{"API":"File.io","Description":"File Sharing","Auth":null,"HTTPS":true,"Link":"https://www.file.io"},{"API":"pdflayer API","Description":"HTML/URL to PDF","Auth":null,"HTTPS":true,"Link":"https://pdflayer.com"},{"API":"Pocket","Description":"Bookmarking service","Auth":"OAuth","HTTPS":true,"Link":"https://getpocket.com/developer/"},{"API":"PrexView","Description":"Data from XML or JSON to PDF, HTML or Image","Auth":"apiKey","HTTPS":true,"Link":"https://prexview.com"},{"API":"Todoist","Description":"Todo Lists","Auth":"OAuth","HTTPS":true,"Link":"https://developer.todoist.com"},{"API":"Wunderlist","Description":"Todo Lists","Auth":"OAuth","HTTPS":true,"Link":"https://developer.wunderlist.com/documentation"}],"Environment":[{"API":"AirVisual","Description":"Air quality and weather data","Auth":"apiKey","HTTPS":true,"Link":"https://airvisual.com/api"},{"API":"OpenAQ","Description":"Open air quality data","Auth":"apiKey","HTTPS":true,"Link":"https://docs.openaq.org/"},{"API":"PM2.5.in","Description":"Air quality of China","Auth":"apiKey","HTTPS":false,"Link":"http://www.pm25.in/api_doc"}],"Finance":[{"API":"Barchart OnDemand","Description":"Stock, Futures, and Forex Market Data","Auth":"apiKey","HTTPS":true,"Link":"https://www.barchartondemand.com/free"},{"API":"CoinDesk","Description":"Bitcoin Price Index","Auth":null,"HTTPS":false,"Link":"http://www.coindesk.com/api/"},{"API":"Consumer Financial Protection Bureau","Description":"Financial services consumer complains data","Auth":"apiKey","HTTPS":true,"Link":"https://data.consumerfinance.gov/resource/jhzv-w97w.json"},{"API":"Razorpay IFSC","Description":"Indian Financial Systems Code (Bank Branch Codes)","Auth":null,"HTTPS":true,"Link":"https://ifsc.razorpay.com/"}],"Food & Drink":[{"API":"BigOven","Description":"Recipe Search","Auth":"X-Mashape-Key","HTTPS":false,"Link":"http://api2.bigoven.com/"},{"API":"BreweryDB","Description":"Beer","Auth":"apiKey","HTTPS":false,"Link":"http://www.brewerydb.com/developers"},{"API":"Edamam","Description":"Recipe Search","Auth":"apiKey","HTTPS":true,"Link":"https://developer.edamam.com/"},{"API":"Food2Fork","Description":"Recipe Search","Auth":"apiKey","HTTPS":false,"Link":"http://food2fork.com/about/api"},{"API":"LCBO","Description":"Alcohol","Auth":"apiKey","HTTPS":true,"Link":"https://lcboapi.com/"},{"API":"PunkAPI","Description":"Brewdog Beer Recipes","Auth":null,"HTTPS":true,"Link":"https://punkapi.com/"},{"API":"Recipe Puppy","Description":"Food","Auth":null,"HTTPS":false,"Link":"http://www.recipepuppy.com/about/api/"},{"API":"TacoFancy","Description":"Community-driven taco database","Auth":null,"HTTPS":false,"Link":"https://github.com/evz/tacofancy-api"},{"API":"TheCocktailDB","Description":"Cocktail Recipes","Auth":null,"HTTPS":false,"Link":"http://www.thecocktaildb.com/"},{"API":"The Report of the Week","Description":"Food & Drink Reviews","Auth":null,"HTTPS":true,"Link":"https://github.com/andyklimczak/TheReportOfTheWeek-API"},{"API":"Yummly","Description":"Find food recipes","Auth":null,"HTTPS":true,"Link":"https://developer.yummly.com/"},{"API":"Zomato","Description":"Discover restaurants","Auth":"apiKey","HTTPS":true,"Link":"https://developers.zomato.com/api"}],"Fraud Prevention":[{"API":"Whitepages Pro","Description":"Global identity verification with phone, address, email, and IP","Auth":"apiKey","HTTPS":true,"Link":"https://pro.whitepages.com/developer/documentation/identity-check-api/"},{"API":"Whitepages Pro","Description":"Phone reputation to detect spammy phones","Auth":"apiKey","HTTPS":true,"Link":"https://pro.whitepages.com/developer/documentation/phone-reputation-api/"},{"API":"Whitepages Pro","Description":"Get an owner’s name, address, demographics based on the phone number","Auth":"apiKey","HTTPS":true,"Link":"https://pro.whitepages.com/developer/documentation/reverse-phone-api/"},{"API":"Whitepages Pro","Description":"Phone number validation, line_type, carrier append","Auth":"apiKey","HTTPS":true,"Link":"https://pro.whitepages.com/developer/documentation/phone-intelligence-api/"},{"API":"Whitepages Pro","Description":"Get normalized physical address, residents, address type, and validity","Auth":"apiKey","HTTPS":true,"Link":"https://pro.whitepages.com/developer/documentation/reverse-address-api/"}],"Games & Comics":[{"API":"Battle.net","Description":"Blizzard Entertainment","Auth":null,"HTTPS":true,"Link":"https://dev.battle.net/"},{"API":"Battlefield 4","Description":"Battlefield 4 Information","Auth":null,"HTTPS":true,"Link":"https://bf4stats.com/api"},{"API":"Chuck Norris Database","Description":"Jokes","Auth":null,"HTTPS":false,"Link":"http://www.icndb.com/api/"},{"API":"Clash of Clans","Description":"Clash of Clans Game Information","Auth":null,"HTTPS":true,"Link":"https://developer.clashofclans.com"},{"API":"Clash Royale","Description":"Clash Royale Game Information","Auth":null,"HTTPS":true,"Link":"https://github.com/martincarrera/clash-royale-api"},{"API":"Comic Vine","Description":"Comics","Auth":null,"HTTPS":true,"Link":"https://comicvine.gamespot.com/api/documentation"},{"API":"Deck of Cards","Description":"Deck of Cards","Auth":null,"HTTPS":false,"Link":"http://deckofcardsapi.com/"},{"API":"Destiny The Game","Description":"Bungie Platform API","Auth":"apiKey","HTTPS":true,"Link":"https://www.bungie.net/en/Clan/Post/39966/85087279/0/0"},{"API":"Eve Online","Description":"Third-Party Developer Documentation","Auth":"OAuth","HTTPS":true,"Link":"https://eveonline-third-party-documentation.readthedocs.io/en/latest/"},{"API":"Giant Bomb","Description":"Video Games","Auth":null,"HTTPS":true,"Link":"https://www.giantbomb.com/api/documentation"},{"API":"Guild Wars 2","Description":"Guild Wars 2 Game Information","Auth":"apiKey","HTTPS":true,"Link":"https://wiki.guildwars2.com/wiki/API:Main"},{"API":"Jservice","Description":"Jeopardy Question Database","Auth":null,"HTTPS":false,"Link":"http://jservice.io"},{"API":"Magic The Gathering","Description":"Magic The Gathering Game Information","Auth":null,"HTTPS":false,"Link":"http://magicthegathering.io/"},{"API":"Marvel","Description":"Marvel Comics","Auth":"apiKey","HTTPS":false,"Link":"http://developer.marvel.com"},{"API":"Minecraft","Description":"Minecraft server info & user info)","Auth":null,"HTTPS":true,"Link":"https://mcapi.ca/"},{"API":"Open Trivia","Description":"Trivia Questions","Auth":null,"HTTPS":true,"Link":"https://opentdb.com/api_config.php"},{"API":"PandaScore","Description":"E-sports games and results","Auth":"apiKey","HTTPS":true,"Link":"https://api.pandascore.co"},{"API":"Pokéapi","Description":"Pokémon Information","Auth":null,"HTTPS":false,"Link":"http://pokeapi.co"},{"API":"Qriusity","Description":"Quiz/Trivia Questions","Auth":null,"HTTPS":true,"Link":"https://qriusity.com/"},{"API":"Riot Games","Description":"League of Legends Game Information","Auth":"apiKey","HTTPS":true,"Link":"https://developer.riotgames.com/"},{"API":"Steam","Description":"Steam Client Interaction","Auth":"OAuth","HTTPS":true,"Link":"https://developer.valvesoftware.com/wiki/Steam_Web_API"}],"Geocoding":[{"API":"adresse.data.gouv.fr","Description":"Address database of France, geocoding, and reverse","Auth":null,"HTTPS":true,"Link":"https://adresse.data.gouv.fr"},{"API":"Bing Maps","Description":"Create/customize digital maps based on Bing Maps data","Auth":"apiKey","HTTPS":true,"Link":"https://www.microsoft.com/maps/"},{"API":"Geocode.xyz","Description":"Provides worldwide forward/reverse geocoding, batch geocoding and geoparsing","Auth":null,"HTTPS":true,"Link":"https://geocode.xyz/"},{"API":"GeoNames","Description":"Place names and other geographical data","Auth":null,"HTTPS":false,"Link":"http://www.geonames.org/export/web-services.html"},{"API":"GéoApi","Description":"French geographical data","Auth":null,"HTTPS":true,"Link":"https://api.gouv.fr/api/geoapi.html"},{"API":"Google Maps","Description":"Create/customize digital maps based on Google Maps data","Auth":"apiKey","HTTPS":true,"Link":"https://developers.google.com/maps/"},{"API":"IP 2 Country","Description":"Map an IP to a country","Auth":null,"HTTPS":true,"Link":"https://ip2country.info"},{"API":"IP Address Details","Description":"Find geolocation with ip address","Auth":null,"HTTPS":true,"Link":"https://ipinfo.io/"},{"API":"IP Location","Description":"Find IP address location information","Auth":null,"HTTPS":true,"Link":"https://ipapi.co/"},{"API":"IP Vigilante","Description":"Free IP Geolocation API","Auth":null,"HTTPS":true,"Link":"https://www.ipvigilante.com/"},{"API":"Mapbox","Description":"Create/customize beautiful digital maps","Auth":"apiKey","HTTPS":true,"Link":"https://www.mapbox.com/developers/"},{"API":"Mapzen Search","Description":"Open Source & Open Data Global Geocoding Service","Auth":"apiKey","HTTPS":true,"Link":"https://mapzen.com/products/search/"},{"API":"Mexico","Description":"Mexico RESTful zip codes API","Auth":null,"HTTPS":true,"Link":"https://github.com/IcaliaLabs/sepomex"},{"API":"One Map 2.0, Singapore","Description":"Singapore Land Authority REST API services for Singapore addresses","Auth":"apiKey","HTTPS":true,"Link":"https://docs.onemap.sg/"},{"API":"OnWater","Description":"Determine if a lat/lon is on water or land","Auth":null,"HTTPS":true,"Link":"https://onwater.io/"},{"API":"OpenCage","Description":"Forward and reverse geocoding using open data","Auth":null,"HTTPS":true,"Link":"https://geocoder.opencagedata.com"},{"API":"OpenStreetMap","Description":"Navigation, geolocation and geographical data","Auth":"OAuth","HTTPS":false,"Link":"http://wiki.openstreetmap.org/wiki/API"},{"API":"PostcodeData.nl","Description":"Provide geolocation data based on postcode for Dutch addresses","Auth":null,"HTTPS":false,"Link":"http://api.postcodedata.nl/v1/postcode/?postcode=1211EP&streetnumber=60&ref=domeinnaam.nl&type=json"},{"API":"Postcodes.io","Description":"Postcode lookup & Geolocation for the UK","Auth":null,"HTTPS":true,"Link":"https://postcodes.io"},{"API":"REST Countries","Description":"Get information about countries via a RESTful API","Auth":null,"HTTPS":true,"Link":"https://restcountries.eu"},{"API":"Utah AGRC","Description":"Utah Web API for geocoding Utah addresses","Auth":"apiKey","HTTPS":true,"Link":"https://api.mapserv.utah.gov"},{"API":"ViaCep","Description":"Brazil RESTful zip codes API","Auth":null,"HTTPS":true,"Link":"https://viacep.com.br"},{"API":"Zippopotam","Description":"Get information about place such as country, city, state, etc","Auth":null,"HTTPS":false,"Link":"http://www.zippopotam.us"}],"Health":[{"API":"Diabetes","Description":"Logging and retrieving diabetes information","Auth":null,"HTTPS":false,"Link":"http://predictbgl.com/api/"},{"API":"Flutrack","Description":"Influenza-like symptoms with geotracking","Auth":null,"HTTPS":false,"Link":"http://www.flutrack.org/"},{"API":"Makeup","Description":"Makeup Information","Auth":null,"HTTPS":false,"Link":"http://makeup-api.herokuapp.com/"},{"API":"Medicare","Description":"Access to the data from the CMS - medicaregov","Auth":null,"HTTPS":true,"Link":"https://data.medicare.gov/developers"},{"API":"Nutritionix","Description":"Worlds largest verified nutrition database","Auth":"apiKey","HTTPS":true,"Link":"https://developer.nutritionix.com/"},{"API":"openFDA","Description":"Public FDA data about drugs, devices, and foods","Auth":null,"HTTPS":true,"Link":"https://open.fda.gov/api/"},{"API":"USDA Nutrients","Description":"National Nutrient Database for Standard Reference","Auth":null,"HTTPS":true,"Link":"https://ndb.nal.usda.gov/ndb/doc/index"}],"Machine Learning":[{"API":"API.AI","Description":"Natural Language Processing","Auth":"apiKey","HTTPS":true,"Link":"https://api.ai/"},{"API":"Clarifai","Description":"Computer Vision","Auth":"OAuth","HTTPS":true,"Link":"https://developer.clarifai.com/"},{"API":"Cleverbot","Description":"Web chat bot","Auth":"apiKey","HTTPS":true,"Link":"https://www.cleverbot.com/api/"},{"API":"Keen IO","Description":"Data Analytics","Auth":"apiKey","HTTPS":true,"Link":"https://keen.io/"},{"API":"Unplugg","Description":"Forecasting API for timeseries data","Auth":"apiKey","HTTPS":true,"Link":"https://unplu.gg/test_api.html"},{"API":"Wit.ai","Description":"Natural Language Processing","Auth":"OAuth","HTTPS":true,"Link":"https://wit.ai/"}],"Math":[{"API":"Newton","Description":"Symbolic and Arithmetic Math Calculator","Auth":null,"HTTPS":true,"Link":"https://newton.now.sh/"},{"API":"Numbers API","Description":"Facts about numbers","Auth":null,"HTTPS":false,"Link":"http://numbersapi.com"}],"Music":[{"API":"Bandsintown","Description":"Music Events","Auth":null,"HTTPS":true,"Link":"https://app.swaggerhub.com/apis/Bandsintown/PublicAPI/3.0.0"},{"API":"Deezer","Description":"Music","Auth":"OAuth","HTTPS":false,"Link":"http://developers.deezer.com/login?redirect=/api"},{"API":"Discogs","Description":"Music","Auth":"OAuth","HTTPS":true,"Link":"https://www.discogs.com/developers/"},{"API":"Genius","Description":"Crowdsourced lyrics and music knowledge","Auth":"OAuth","HTTPS":true,"Link":"https://docs.genius.com/"},{"API":"Jamendo","Description":"Music","Auth":"OAuth","HTTPS":true,"Link":"https://developer.jamendo.com/v3.0"},{"API":"iTunes Search","Description":"Software products","Auth":null,"HTTPS":true,"Link":"https://affiliate.itunes.apple.com/resources/documentation/itunes-store-web-service-search-api/"},{"API":"LastFm","Description":"Music","Auth":"apiKey","HTTPS":false,"Link":"http://www.last.fm/api"},{"API":"Mixcloud","Description":"Music","Auth":null,"HTTPS":true,"Link":"https://www.mixcloud.com/developers/"},{"API":"MusicBrainz","Description":"Music","Auth":null,"HTTPS":true,"Link":"https://musicbrainz.org/doc/Development/XML_Web_Service/Version_2"},{"API":"Musikki","Description":"Music","Auth":null,"HTTPS":true,"Link":"https://music-api.musikki.com/reference"},{"API":"Musixmatch","Description":"Music","Auth":"apiKey","HTTPS":true,"Link":"https://developer.musixmatch.com/"},{"API":"Songkick","Description":"Music Events","Auth":"OAuth","HTTPS":true,"Link":"https://www.songkick.com/developer/"},{"API":"Songsterr","Description":"Provides guitar, bass and drums tabs and chords","Auth":null,"HTTPS":true,"Link":"https://www.songsterr.com/a/wa/api/"},{"API":"Soundcloud","Description":"Music","Auth":null,"HTTPS":true,"Link":"https://developers.soundcloud.com/"},{"API":"Spotify","Description":"Music","Auth":"OAuth","HTTPS":true,"Link":"https://developer.spotify.com/web-api/"},{"API":"Vagalume","Description":"Crowdsourced lyrics and music knowledge","Auth":"apiKey","HTTPS":true,"Link":"https://api.vagalume.com.br/docs/"}],"News":[{"API":"Chronicling America","Description":"Provides access to millions of pages of historic US newspapers from the Library of Congress","Auth":null,"HTTPS":false,"Link":"http://chroniclingamerica.loc.gov/about/api/"},{"API":"New York Times","Description":"Provides news","Auth":"apiKey","HTTPS":true,"Link":"https://developer.nytimes.com/"},{"API":"News API","Description":"Headlines currently published on a range of news sources and blogs","Auth":"apiKey","HTTPS":true,"Link":"https://newsapi.org/"},{"API":"The Guardian","Description":"Access all the content the Guardian creates, categorised by tags and section","Auth":"apiKey","HTTPS":true,"Link":"http://open-platform.theguardian.com/"}],"Open Source projects":[{"API":"Countly","Description":"Countly web analytics","Auth":null,"HTTPS":false,"Link":"http://resources.count.ly/docs"},{"API":"Drupal.org","Description":"Drupalorg","Auth":null,"HTTPS":true,"Link":"https://www.drupal.org/drupalorg/docs/api"},{"API":"Libraries.io","Description":"Open source software libraries","Auth":"apiKey","HTTPS":true,"Link":"https://libraries.io/api"}],"Personality":[{"API":"chucknorris.io","Description":"JSON API for hand curated Chuck Norris jokes","Auth":null,"HTTPS":true,"Link":"https://api.chucknorris.io"},{"API":"Forismatic","Description":"Inspirational Quotes","Auth":null,"HTTPS":false,"Link":"http://forismatic.com/en/api/"},{"API":"icanhazdadjoke","Description":"The largest selection of dad jokes on the internet","Auth":null,"HTTPS":true,"Link":"https://icanhazdadjoke.com/api"},{"API":"Medium","Description":"Community of readers and writers offering unique perspectives on ideas","Auth":"OAuth","HTTPS":true,"Link":"https://github.com/Medium/medium-api-docs"},{"API":"Quotes on Design","Description":"Inspirational Quotes","Auth":null,"HTTPS":true,"Link":"https://quotesondesign.com/api-v4-0/"},{"API":"Traitify","Description":"Assess, collect, and analyze Personality","Auth":null,"HTTPS":true,"Link":"https://app.traitify.com/developer"},{"API":"tronalddump.io","Description":"Api & web archive for the things Donald Trump has said","Auth":null,"HTTPS":true,"Link":"https://www.tronalddump.io"}],"Photography":[{"API":"500px","Description":"Photography Community","Auth":"OAuth","HTTPS":true,"Link":"https://github.com/500px/api-documentation"},{"API":"Flickr","Description":"Flickr Services","Auth":"OAuth","HTTPS":true,"Link":"https://www.flickr.com/services/api/"},{"API":"Gfycat","Description":"Jiffier GIFs","Auth":"OAuth","HTTPS":true,"Link":"https://developers.gfycat.com/api/"},{"API":"Giphy","Description":"Get all your gifs","Auth":null,"HTTPS":true,"Link":"https://github.com/Giphy/GiphyAPI"},{"API":"Imgur","Description":"Images","Auth":"OAuth","HTTPS":true,"Link":"https://api.imgur.com/#overview"},{"API":"ScreenShotLayer","Description":"URL 2 Image","Auth":null,"HTTPS":true,"Link":"https://screenshotlayer.com"},{"API":"Unsplash","Description":"Photography","Auth":"OAuth","HTTPS":true,"Link":"https://unsplash.com/developers"},{"API":"PlaceKitten","Description":"Resizable kitten placeholder images","Auth":null,"HTTPS":true,"Link":"https://placekitten.com/"}],"Science":[{"API":"arcsecond.io","Description":"Multiple astronomy data sources","Auth":null,"HTTPS":true,"Link":"https://api.arcsecond.io/"},{"API":"CORE","Description":"Access the world's Open Access research papers","Auth":"apiKey","HTTPS":true,"Link":"https://core.ac.uk/services#api"},{"API":"Fedger.io","Description":"Query machine intelligence data","Auth":null,"HTTPS":true,"Link":"https://dev.fedger.io/docs/"},{"API":"inspirehep.net","Description":"High Energy Physics info system","Auth":null,"HTTPS":true,"Link":"https://inspirehep.net/info/hep/api?ln=en"},{"API":"Launch Library","Description":"Upcoming Space Launches","Auth":null,"HTTPS":true,"Link":"https://launchlibrary.net/1.2/docs/api.html"},{"API":"Minor Planet Center","Description":"Asterankcom Information","Auth":null,"HTTPS":false,"Link":"http://www.asterank.com/mpc"},{"API":"NASA","Description":"NASA data, including imagery","Auth":null,"HTTPS":true,"Link":"https://api.nasa.gov"},{"API":"Open Notify","Description":"ISS astronauts, current location, etc","Auth":null,"HTTPS":false,"Link":"http://open-notify.org/Open-Notify-API/"},{"API":"Sunrise and Sunset","Description":"Sunset and sunrise times for a given latitude and longitude","Auth":null,"HTTPS":true,"Link":"https://sunrise-sunset.org/api"},{"API":"USGS Earthquake Hazards Program","Description":"Earthquakes data real-time","Auth":null,"HTTPS":true,"Link":"https://earthquake.usgs.gov/fdsnws/event/1/"},{"API":"USGS Water Services","Description":"Water quality and level info for rivers and lakes","Auth":null,"HTTPS":true,"Link":"https://waterservices.usgs.gov/"},{"API":"World Bank","Description":"World Data","Auth":null,"HTTPS":false,"Link":"https://datahelpdesk.worldbank.org/knowledgebase/topics/125589"}],"Security":[{"API":"AXFR Database","Description":"AXFR public database","Auth":null,"HTTPS":false,"Link":"http://api.axfrcheck.com"},{"API":"UK Police","Description":"UK Police data","Auth":null,"HTTPS":true,"Link":"https://data.police.uk/docs/"}],"Shopping":[{"API":"eBay","Description":"Sell and Buy on eBay","Auth":"OAuth","HTTPS":true,"Link":"https://go.developer.ebay.com/"}],"Social":[{"API":"Discord","Description":"Make bots for Discord, integrate Discord onto an external platform","Auth":"OAuth","HTTPS":true,"Link":"https://discordapp.com/developers/docs/intro"},{"API":"DonReach Social Count","Description":"Get the social share count of a URL from every major social network","Auth":null,"HTTPS":true,"Link":"https://donreach.com/social-share-count/"},{"API":"Facebook","Description":"Facebook Login, Share on FB, Social Plugins, Analytics and more","Auth":"OAuth","HTTPS":true,"Link":"https://developers.facebook.com/"},{"API":"Foursquare","Description":"Interact with Foursquare users and places (geolocation-based checkins, photos, tips, events, etc)","Auth":"OAuth","HTTPS":true,"Link":"https://developer.foursquare.com/"},{"API":"Fuck Off as a Service","Description":"Asks someone to fuck off","Auth":null,"HTTPS":true,"Link":"https://www.foaas.com"},{"API":"Full Contact","Description":"Get Social Media profiles and contact Information","Auth":"OAuth","HTTPS":true,"Link":"https://www.fullcontact.com/developer/docs/"},{"API":"HackerNews","Description":"Social news for CS and entrepreneurship","Auth":null,"HTTPS":true,"Link":"https://github.com/HackerNews/API"},{"API":"Instagram","Description":"Instagram Login, Share on Instagram, Social Plugins and more","Auth":"OAuth","HTTPS":true,"Link":"https://www.instagram.com/developer/"},{"API":"LinkedIn","Description":"The foundation of all digital integrations with LinkedIn","Auth":"OAuth","HTTPS":true,"Link":"https://developer.linkedin.com/docs/rest-api"},{"API":"Meetup.com","Description":"Data about Meetups from Meetupcom","Auth":"apiKey","HTTPS":true,"Link":"https://www.meetup.com/meetup_api/"},{"API":"Telegram MTProto","Description":"Read and write Telegram data","Auth":"OAuth","HTTPS":true,"Link":"https://core.telegram.org/api#getting-started"},{"API":"Telegram bot","Description":"Simplified HTTP version of the MTProto API for bots","Auth":"OAuth","HTTPS":true,"Link":"https://core.telegram.org/bots/api"},{"API":"Pinterest","Description":"The world's catalog of ideas","Auth":"OAuth","HTTPS":true,"Link":"https://developers.pinterest.com/"},{"API":"PWRTelegram bot","Description":"Boosted version of the Telegram bot API","Auth":"OAuth","HTTPS":true,"Link":"https://pwrtelegram.xyz"},{"API":"Reddit","Description":"Homepage of the internet","Auth":"OAuth","HTTPS":true,"Link":"https://www.reddit.com/dev/api"},{"API":"Slack","Description":"Team Instant Messaging","Auth":"OAuth","HTTPS":true,"Link":"https://api.slack.com/"},{"API":"Tumblr","Description":"Read and write Tumblr Data","Auth":"OAuth","HTTPS":true,"Link":"https://www.tumblr.com/docs/en/api/v2"},{"API":"Twitch","Description":"Game Streaming API","Auth":"OAuth","HTTPS":true,"Link":"https://github.com/justintv/Twitch-API"},{"API":"Twitter","Description":"Read and write Twitter data","Auth":"OAuth","HTTPS":true,"Link":"https://dev.twitter.com/rest/public"},{"API":"vk","Description":"Read and write vk data","Auth":"OAuth","HTTPS":true,"Link":"https://vk.com/dev/sites"}],"Sports & Fitness":[{"API":"Cartola FC","Description":"The Cartola FC API serves to check the partial points of your team","Auth":null,"HTTPS":true,"Link":"https://github.com/wgenial/cartrolandofc"},{"API":"City Bikes","Description":"City Bikes around the world","Auth":null,"HTTPS":false,"Link":"http://api.citybik.es/v2/"},{"API":"Ergast F1","Description":"F1 data from the beginning of the world championships in 1950","Auth":null,"HTTPS":false,"Link":"http://ergast.com/mrd/"},{"API":"Fitbit","Description":"Fitbit Information","Auth":"OAuth","HTTPS":true,"Link":"https://dev.fitbit.com/"},{"API":"Football-Data.org","Description":"Football Data","Auth":null,"HTTPS":false,"Link":"http://api.football-data.org/index"},{"API":"JCDecaux Bike","Description":"JCDecaux's self-service bicycles","Auth":"apiKey","HTTPS":true,"Link":"https://developer.jcdecaux.com/"},{"API":"Cricket Live Scores","Description":"Live cricket scores","Auth":"X-Mashape-Key","HTTPS":true,"Link":"https://market.mashape.com/dev132/cricket-live-scores"},{"API":"NFL Arrests","Description":"NFL Arrest Data","Auth":null,"HTTPS":false,"Link":"http://nflarrest.com/api/"},{"API":"Pro Motocross","Description":"The RESTful AMA Pro Motocross lap times for every racer on the start gate","Auth":null,"HTTPS":false,"Link":"http://promotocrossapi.com"},{"API":"Strava","Description":"Connect with athletes, activities and more","Auth":"OAuth","HTTPS":true,"Link":"https://strava.github.io/api/"},{"API":"UFC Data","Description":"Ultimate Fighting Championship information for events and fighters","Auth":null,"HTTPS":false,"Link":"http://ufc-data-api.ufc.com/"},{"API":"Wger","Description":"Workout manager data as exercises, muscles or equipment","Auth":"apiKey","HTTPS":true,"Link":"https://wger.de/en/software/api"}],"Tracking":[{"API":"Postmon","Description":"An API to query Brazilian ZIP codes and orders easily, quickly and free","Auth":null,"HTTPS":false,"Link":"http://postmon.com.br"},{"API":"Sweden","Description":"Provides information about parcels in transport","Auth":"apiKey","HTTPS":false,"Link":"https://developer.postnord.com/docs2"}],"Transportation":[{"API":"ADS-B Exchange","Description":"Access real-time and historical data of any and all airbone aircraft","Auth":null,"HTTPS":true,"Link":"https://www.adsbexchange.com/data/"},{"API":"Amadeus Travel Innovation Sandbox","Description":"Travel Search - Limited usage","Auth":"apiKey","HTTPS":true,"Link":"https://sandbox.amadeus.com/"},{"API":"Bay Area Rapid Transit","Description":"Stations and predicted arrivals for BART","Auth":"apiKey","HTTPS":false,"Link":"http://api.bart.gov"},{"API":"Community Transit","Description":"Transitland API","Auth":null,"HTTPS":true,"Link":"https://github.com/transitland/transitland-datastore/blob/master/README.md#api-endpoints"},{"API":"Goibibo","Description":"API for travel search","Auth":"apiKey","HTTPS":true,"Link":"https://developer.goibibo.com/docs"},{"API":"Indian Railways","Description":"Indian Railways Information","Auth":"apiKey","HTTPS":false,"Link":"http://api.erail.in/"},{"API":"Izi","Description":"Audio guide for travellers","Auth":"apiKey","HTTPS":true,"Link":"http://api-docs.izi.travel/"},{"API":"Navitia","Description":"The open API for building cool stuff with transport data","Auth":"apiKey","HTTPS":true,"Link":"https://api.navitia.io/"},{"API":"The Nomad List","Description":"A list of the best places to live/work remotely","Auth":null,"HTTPS":true,"Link":"https://nomadlist.com/faq"},{"API":"Schiphol Airport","Description":"Schiphol","Auth":"apiKey","HTTPS":true,"Link":"https://developer.schiphol.nl/"},{"API":"TransitLand","Description":"Transit Aggregation","Auth":null,"HTTPS":true,"Link":"https://transit.land/documentation/datastore/api-endpoints.html"},{"API":"Transport for Atlanta, US","Description":"Marta","Auth":null,"HTTPS":false,"Link":"http://www.itsmarta.com/app-developer-resources.aspx"},{"API":"Transport for Auckland, New Zealand","Description":"Auckland Transport","Auth":null,"HTTPS":true,"Link":"https://api.at.govt.nz/"},{"API":"Transport for Belgium","Description":"Belgian transport API","Auth":null,"HTTPS":true,"Link":"https://hello.irail.be/api/"},{"API":"Transport for Berlin, Germany","Description":"Third-party VBB API","Auth":null,"HTTPS":true,"Link":"https://github.com/derhuerst/vbb-rest/blob/master/docs/index.md"},{"API":"Transport for Boston, US","Description":"MBTA API","Auth":null,"HTTPS":false,"Link":"http://realtime.mbta.com/Portal/Home/Documents"},{"API":"Transport for Budapest, Hungary","Description":"Budapest public transport API","Auth":null,"HTTPS":true,"Link":"https://apiary.io/"},{"API":"Transport for Chicago, US","Description":"CTA","Auth":null,"HTTPS":false,"Link":"http://www.transitchicago.com/developers/"},{"API":"Transport for Czech Republic","Description":"Czech transport API","Auth":null,"HTTPS":true,"Link":"https://www.chaps.cz/eng/products/idos-internet"},{"API":"Transport for Denver, US","Description":"RTD","Auth":null,"HTTPS":false,"Link":"http://www.rtd-denver.com/gtfs-developer-guide.shtml"},{"API":"Transport for Finland","Description":"Finnish transport API","Auth":null,"HTTPS":true,"Link":"https://digitransit.fi/en/developers/ "},{"API":"Transport for Germany","Description":"Deutsche Bahn (DB) API","Auth":"apiKey","HTTPS":false,"Link":"http://data.deutschebahn.com/dataset/api-fahrplan"},{"API":"Transport for India","Description":"India Public Transport API","Auth":"apiKey","HTTPS":true,"Link":"https://data.gov.in/sector/transport"},{"API":"Transport for London, England","Description":"TfL API","Auth":null,"HTTPS":true,"Link":"https://api.tfl.gov.uk"},{"API":"Transport for Madrid, Spain","Description":"Madrid BUS transport API","Auth":"apiKey","HTTPS":false,"Link":"http://opendata.emtmadrid.es/Servicios-web/BUS"},{"API":"Transport for Minneapolis, US","Description":"NexTrip API","Auth":"OAuth","HTTPS":false,"Link":"http://svc.metrotransit.org/"},{"API":"Transport for The Netherlands","Description":"NS, only trains","Auth":"apiKey","HTTPS":false,"Link":"http://www.ns.nl/reisinformatie/ns-api"},{"API":"Transport for The Netherlands","Description":"OVAPI, country-wide public transport","Auth":null,"HTTPS":true,"Link":"https://github.com/skywave/KV78Turbo-OVAPI/wiki"},{"API":"Transport for New York City, US","Description":"MTA","Auth":"apiKey","HTTPS":false,"Link":"http://datamine.mta.info/"},{"API":"Transport for Norway","Description":"Norwegian transport API","Auth":null,"HTTPS":false,"Link":"http://reisapi.ruter.no/help"},{"API":"Transport for Ottawa, Canada","Description":"OC Transpo next bus arrival API","Auth":null,"HTTPS":false,"Link":"http://www.octranspo.com/index.php/developers"},{"API":"Transport for Paris, France","Description":"RATP Open Data API","Auth":null,"HTTPS":false,"Link":"http://data.ratp.fr/api/v1/console/datasets/1.0/search/"},{"API":"Transport for Paris, France","Description":"Live schedules made simple","Auth":null,"HTTPS":false,"Link":"http://restratpws.azurewebsites.net/swagger/"},{"API":"Transport for Philadelphia, US","Description":"SEPTA APIs","Auth":null,"HTTPS":false,"Link":"http://www3.septa.org/hackathon/"},{"API":"Transport for Rio de Janeiro, Brazil","Description":"Prefeitura do Rio (City Hall)","Auth":null,"HTTPS":false,"Link":"http://data.rio/group/transporte-e-mobilidade"},{"API":"Transport for São Paulo, Brazil","Description":"SPTrans","Auth":"OAuth","HTTPS":false,"Link":"http://www.sptrans.com.br/desenvolvedores/APIOlhoVivo/Documentacao.aspx"},{"API":"Transport for Sweden","Description":"Public Transport consumer","Auth":"OAuth","HTTPS":true,"Link":"https://www.trafiklab.se/api"},{"API":"Transport for Switzerland","Description":"Swiss public transport API","Auth":null,"HTTPS":true,"Link":"https://transport.opendata.ch/"},{"API":"Transport for Switzerland","Description":"Official Swiss Public Transport Open Data","Auth":"apiKey","HTTPS":true,"Link":"https://opentransportdata.swiss/en/"},{"API":"Transport for Tokyo, Japan","Description":"Tokyo Metro","Auth":"apiKey","HTTPS":true,"Link":"https://developer.tokyometroapp.jp/info"},{"API":"Transport for Toronto, Canada","Description":"TTC","Auth":null,"HTTPS":true,"Link":"https://myttc.ca/developers"},{"API":"Transport for Vancouver, Canada","Description":"TransLink","Auth":"OAuth","HTTPS":true,"Link":"https://developer.translink.ca/"},{"API":"Transport for U.S. (multiple locations)","Description":"NextBus API","Auth":null,"HTTPS":false,"Link":"http://www.nextbus.com/xmlFeedDocs/NextBusXMLFeed.pdf"},{"API":"Transport for Victoria, AU","Description":"PTV API","Auth":"apiKey","HTTPS":true,"Link":"https://www.ptv.vic.gov.au/about-ptv/ptv-data-and-reports/digital-products/ptv-timetable-api/"},{"API":"Transport for Washington, US","Description":"Washington Metro transport API","Auth":"OAuth","HTTPS":true,"Link":"https://developer.wmata.com/"},{"API":"Uber","Description":"Request Uber rides, reach riders, transport things, and reward drivers","Auth":"OAuth","HTTPS":true,"Link":"https://developer.uber.com/"},{"API":"WhereIsMyTransport","Description":"Platform for public transport data in emerging cities","Auth":"OAuth","HTTPS":true,"Link":"https://developer.whereismytransport.com/"}],"University":[{"API":"Universities List","Description":"University names, countries and domains","Auth":null,"HTTPS":true,"Link":"https://github.com/Hipo/university-domains-list"}],"Vehicle":[{"API":"Vehicles","Description":"Lot of vehicles information","Auth":"apiKey","HTTPS":false,"Link":"http://developer.edmunds.com/api-documentation/overview/"},{"API":"Brazilian Vehicles and Prices","Description":"Vehicles information from Fundação Instituto de Pesquisas Econômicas - Fipe","Auth":null,"HTTPS":true,"Link":"https://deividfortuna.github.io/fipe/"},{"API":"NHTSA Vehicles","Description":"NHTSA Product Information Catalog and Vehicle Listing","Auth":null,"HTTPS":true,"Link":"https://vpic.nhtsa.dot.gov/api/"}],"Video":[{"API":"An API of Ice And Fire","Description":"Game Of Thrones API","Auth":null,"HTTPS":true,"Link":"https://anapioficeandfire.com/"},{"API":"Dailymotion","Description":"Dailymotion Developer API","Auth":"OAuth","HTTPS":true,"Link":"https://developer.dailymotion.com/"},{"API":"Netflix Roulette","Description":"Netflix database","Auth":null,"HTTPS":true,"Link":"https://netflixroulette.net/api/"},{"API":"Ron Swanson Quotes","Description":"Television","Auth":null,"HTTPS":true,"Link":"https://github.com/jamesseanwright/ron-swanson-quotes#ron-swanson-quotes-api"},{"API":"SWAPI","Description":"Star Wars Information","Auth":null,"HTTPS":true,"Link":"https://swapi.co"},{"API":"TMDb","Description":"Community-based movie data","Auth":"apiKey","HTTPS":true,"Link":"https://www.themoviedb.org/documentation/api"},{"API":"TVMaze","Description":"TV Show Data","Auth":null,"HTTPS":false,"Link":"http://www.tvmaze.com/api"},{"API":"Vimeo","Description":"Vimeo Developer API","Auth":"OAuth","HTTPS":true,"Link":"https://developer.vimeo.com/"},{"API":"YouTube","Description":"Add YouTube functionality to your sites and apps","Auth":"OAuth","HTTPS":true,"Link":"https://developers.google.com/youtube/"}],"Weather":[{"API":"Dark Sky","Description":"Weather","Auth":"apiKey","HTTPS":true,"Link":"https://darksky.net/dev/"},{"API":"MetaWeather","Description":"Weather","Auth":null,"HTTPS":true,"Link":"https://www.metaweather.com/api/"},{"API":"OpenWeatherMap","Description":"Weather","Auth":"apiKey","HTTPS":false,"Link":"http://openweathermap.org/api"},{"API":"Weatherbit","Description":"Weather","Auth":"apiKey","HTTPS":true,"Link":"https://www.weatherbit.io/api"},{"API":"Wunderground","Description":"Weather","Auth":"apiKey","HTTPS":true,"Link":"https://www.wunderground.com/weather/api/"},{"API":"Yahoo! Weather","Description":"Weather","Auth":null,"HTTPS":true,"Link":"https://developer.yahoo.com/weather/"}]} +{"Animals":[{"API":"Dogs","Description":"Based on the [Stanford Dogs Dataset](http://visionstanford.edu/aditya86/ImageNetDogs/)","Auth":null,"HTTPS":true,"Link":"https://dog.ceo/dog-api/"},{"API":"IUCN","Description":"IUCN Red List of Threatened Species","Auth":"apiKey","HTTPS":false,"Link":"http://apiv3.iucnredlist.org/api/v3/docs"},{"API":"Petfinder","Description":"Adoption","Auth":"apiKey","HTTPS":true,"Link":"https://www.petfinder.com/developers/api-docs/"},{"API":"RescueGroups","Description":"Adoption","Auth":null,"HTTPS":true,"Link":"https://userguide.rescuegroups.org/display/APIDG/API+Developers+Guide+Home"}],"Anime":[{"API":"AniList","Description":"AniList Anime","Auth":"OAuth","HTTPS":false,"Link":"http://anilist-api.readthedocs.io/en/latest/"},{"API":"Jikan","Description":"Unofficial MyAnimeList API","Auth":null,"HTTPS":true,"Link":"https://jikan.me"},{"API":"Kitsu","Description":"Anime discovery platform","Auth":"OAuth","HTTPS":true,"Link":"http://docs.kitsu.apiary.io/"},{"API":"Studio Ghibli","Description":"Resources from Studio Ghibli films","Auth":null,"HTTPS":true,"Link":"https://ghibliapi.herokuapp.com"}],"Anti-Malware":[{"API":"AlienVault Open Threat Exchange (OTX)","Description":"IP/domain/URL reputation","Auth":"apiKey","HTTPS":true,"Link":"https://otx.alienvault.com/api/"},{"API":"Certly","Description":"Certly Link/Domain Flagging","Auth":"apiKey","HTTPS":true,"Link":"https://guard.certly.io/"},{"API":"Google Safe Browsing","Description":"Google Link/Domain Flagging","Auth":"apiKey","HTTPS":true,"Link":"https://developers.google.com/safe-browsing/"},{"API":"Metacert","Description":"Metacert Link Flagging","Auth":"apiKey","HTTPS":true,"Link":"https://metacert.com/"},{"API":"VirusTotal","Description":"VirusTotal File/URL Analysis","Auth":"apiKey","HTTPS":true,"Link":"https://www.virustotal.com/en/documentation/public-api/"},{"API":"Web Of Trust (WOT)","Description":"Website reputation","Auth":"apiKey","HTTPS":true,"Link":"https://www.mywot.com/wiki/API"}],"Art & Design":[{"API":"Behance","Description":"Design","Auth":"apiKey","HTTPS":true,"Link":"https://www.behance.net/dev"},{"API":"Dribbble","Description":"Design","Auth":"OAuth","HTTPS":false,"Link":"http://developer.dribbble.com/v1/"},{"API":"Harvard Art Museums","Description":"Art","Auth":"apiKey","HTTPS":false,"Link":"https://github.com/harvardartmuseums/api-docs"},{"API":"Icons8","Description":"Icons","Auth":"OAuth","HTTPS":true,"Link":"http://docs.icons8.apiary.io/#reference/0/meta"},{"API":"Noun Project","Description":"Icons","Auth":"OAuth","HTTPS":false,"Link":"http://api.thenounproject.com/index.html"},{"API":"Rijksmuseum","Description":"Art","Auth":"apiKey","HTTPS":true,"Link":"https://www.rijksmuseum.nl/en/api"}],"Books":[{"API":"British National Bibliography","Description":"Books","Auth":null,"HTTPS":false,"Link":"http://bnb.data.bl.uk/"},{"API":"Goodreads","Description":"Books","Auth":null,"HTTPS":true,"Link":"https://www.goodreads.com/api"},{"API":"Google Books","Description":"Books","Auth":"OAuth","HTTPS":true,"Link":"https://developers.google.com/books/"}],"Business":[{"API":"mailgun","Description":"Email Service","Auth":"apiKey","HTTPS":true,"Link":"https://www.mailgun.com/"},{"API":"markerapi","Description":"Trademark Search","Auth":null,"HTTPS":false,"Link":"http://www.markerapi.com/"}],"Calendar":[{"API":"Church Calendar","Description":"Catholic liturgical calendar","Auth":null,"HTTPS":false,"Link":"http://calapi.inadiutorium.cz/"},{"API":"Holidays","Description":"Historical data regarding holidays","Auth":"apiKey","HTTPS":true,"Link":"https://holidayapi.com/"},{"API":"LectServe","Description":"Protestant liturgical calendar","Auth":null,"HTTPS":false,"Link":"http://www.lectserve.com"},{"API":"Non-Working Days","Description":"Database of ICS files for non working days","Auth":null,"HTTPS":true,"Link":"https://github.com/gadael/icsdb"}],"Cloud Storage & File Sharing":[{"API":"Box","Description":"File Sharing and Storage","Auth":"OAuth","HTTPS":true,"Link":"https://developer.box.com/"},{"API":"Dropbox","Description":"File Sharing and Storage","Auth":"OAuth","HTTPS":true,"Link":"https://www.dropbox.com/developers"},{"API":"Google Drive","Description":"File Sharing and Storage","Auth":"OAuth","HTTPS":true,"Link":"https://developers.google.com/drive/"},{"API":"OneDrive","Description":"File Sharing and Storage","Auth":"OAuth","HTTPS":true,"Link":"https://dev.onedrive.com/"}],"Currency Exchange":[{"API":"Currencylayer","Description":"Exchange rates and currency conversion","Auth":"apiKey","HTTPS":true,"Link":"https://currencylayer.com/documentation"},{"API":"Fixer.io","Description":"Exchange rates and currency conversion","Auth":null,"HTTPS":true,"Link":"http://fixer.io"}],"Data Access":[{"API":"18F","Description":"US Federal Government /Developer Program","Auth":null,"HTTPS":false,"Link":"http://18f.github.io/API-All-the-X/"},{"API":"Abbreviation","Description":"Get abbreviations and meanings","Auth":"X-Mashape-Key","HTTPS":true,"Link":"https://market.mashape.com/daxeel/abbreviations"},{"API":"CARTO","Description":"Location Information Prediction","Auth":"apiKey","HTTPS":true,"Link":"https://carto.com/"},{"API":"Callook.info","Description":"United States ham radio callsigns","Auth":null,"HTTPS":true,"Link":"https://callook.info"},{"API":"Celebinfo","Description":"Celebrity information","Auth":"X-Mashape-Key","HTTPS":true,"Link":"https://market.mashape.com/daxeel/celebinfo/"},{"API":"Colorado Data Engine","Description":"Formatted and geolocated Colorado public data","Auth":null,"HTTPS":true,"Link":"http://codataengine.org/"},{"API":"Colorado Information Marketplace","Description":"Colorado State Government Open Data","Auth":null,"HTTPS":true,"Link":"https://data.colorado.gov/"},{"API":"Datakick","Description":"The open product database","Auth":"apiKey","HTTPS":true,"Link":"https://www.datakick.org/api"},{"API":"Data USA","Description":"US Public Data","Auth":null,"HTTPS":true,"Link":"https://datausa.io/about/api/"},{"API":"Dronestream","Description":"Tracks United States drone strikes","Auth":null,"HTTPS":true,"Link":"https://dronestre.am/"},{"API":"fonoApi","Description":"Mobile Device Description","Auth":null,"HTTPS":true,"Link":"https://fonoapi.freshpixl.com/"},{"API":"Open Government, Australia","Description":"Australian Government Open Data","Auth":null,"HTTPS":true,"Link":"https://www.data.gov.au/"},{"API":"Open Government, USA","Description":"United States Government Open Data","Auth":null,"HTTPS":true,"Link":"https://www.data.gov/"},{"API":"Open Government, Canada","Description":"Canadian Government Open Data","Auth":null,"HTTPS":false,"Link":"http://open.canada.ca/en"},{"API":"Open Government Data, India","Description":"Indian Government Open Data","Auth":"apiKey","HTTPS":true,"Link":"https://data.gov.in/"},{"API":"Open Government, New Zealand","Description":"New Zealand Government Open Data","Auth":null,"HTTPS":true,"Link":"https://www.data.govt.nz/"},{"API":"Outpan","Description":"A Database of Everything","Auth":"apiKey","HTTPS":true,"Link":"https://outpan.mixnode.com/developers"},{"API":"Pearson","Description":"Dictionary Data","Auth":"apiKey","HTTPS":false,"Link":"http://developer.pearson.com/apis/dictionaries"},{"API":"Prague Opendata","Description":"Prague City Open Data","Auth":null,"HTTPS":false,"Link":"http://opendata.praha.eu/en"},{"API":"Quandl","Description":"Stock Market Data","Auth":null,"HTTPS":true,"Link":"https://www.quandl.com/"},{"API":"Represent by Open North","Description":"Find Canadian Government Representatives","Auth":null,"HTTPS":true,"Link":"https://represent.opennorth.ca/"},{"API":"Scoop.it","Description":"Content Curation Service","Auth":"apiKey","HTTPS":false,"Link":"http://www.scoop.it/dev"},{"API":"Teleport","Description":"Quality of Life Data","Auth":null,"HTTPS":true,"Link":"https://developers.teleport.org/"},{"API":"UPC database","Description":"More than 15 million barcode numbers from all around the world","Auth":"apiKey","HTTPS":true,"Link":"https://upcdatabase.org/api"},{"API":"Wikipedia","Description":"Mediawiki Encyclopedia","Auth":null,"HTTPS":true,"Link":"https://www.mediawiki.org/wiki/API:Main_page"},{"API":"Wordnik","Description":"Dictionary Data","Auth":null,"HTTPS":false,"Link":"http://developer.wordnik.com"},{"API":"Yelp","Description":"Find Local Business","Auth":"OAuth","HTTPS":true,"Link":"https://www.yelp.com/developers/documentation/v3"}],"Data Validation":[{"API":"languagelayer","Description":"Language detection","Auth":null,"HTTPS":true,"Link":"https://languagelayer.com"},{"API":"Lob.com","Description":"US Address Verification","Auth":"apiKey","HTTPS":true,"Link":"https://lob.com/"},{"API":"mailboxlayer","Description":"Email address validation","Auth":null,"HTTPS":true,"Link":"https://mailboxlayer.com"},{"API":"numverify","Description":"Phone number validation","Auth":null,"HTTPS":true,"Link":"https://numverify.com"},{"API":"vatlayer","Description":"VAT number validation","Auth":null,"HTTPS":true,"Link":"https://vatlayer.com"}],"Development":[{"API":"Adorable Avatars","Description":"Generate random cartoon avatars","Auth":null,"HTTPS":true,"Link":"http://avatars.adorable.io"},{"API":"APIs.guru","Description":"Wikipedia for Web APIs, OpenAPI/Swagger specs for public APIs","Auth":null,"HTTPS":true,"Link":"https://apis.guru/api-doc/"},{"API":"BetterMeta","Description":"Return a site's meta tags in JSON format","Auth":"X-Mashape-Key","HTTPS":true,"Link":"http://bettermeta.io"},{"API":"Changelogs.md","Description":"Structured changelog metadata from open source projects","Auth":null,"HTTPS":true,"Link":"https://changelogs.md"},{"API":"CDNJS","Description":"Library info on CDNJS","Auth":null,"HTTPS":true,"Link":"https://api.cdnjs.com/libraries/jquery"},{"API":"Faceplusplus","Description":"A tool to detect face","Auth":"OAuth","HTTPS":true,"Link":"https://www.faceplusplus.com/"},{"API":"Genderize.io","Description":"Determines a gender from a first name","Auth":null,"HTTPS":true,"Link":"https://genderize.io"},{"API":"Github - User Data","Description":"Pull public information for a user's github","Auth":null,"HTTPS":true,"Link":"https://api.github.com/users/hackeryou"},{"API":"Gitter","Description":"Chat for GitHub","Auth":"OAuth","HTTPS":true,"Link":"https://github.com/gitterHQ/docs"},{"API":"HackerRank","Description":"Compile source code and run against a set of provided test cases","Auth":"apiKey","HTTPS":true,"Link":"https://www.hackerrank.com/api/docs"},{"API":"Hipster Ipsum","Description":"Generates Hipster Ipsum text","Auth":null,"HTTPS":false,"Link":"http://hipsterjesus.com/"},{"API":"IPify","Description":"A simple IP Address API","Auth":null,"HTTPS":true,"Link":"https://www.ipify.org/"},{"API":"JSON 2 JSONP","Description":"Convert JSON to JSONP (on-the-fly) for easy cross-domain data requests using client-side JavaScript","Auth":null,"HTTPS":true,"Link":"https://json2jsonp.com/"},{"API":"JSONbin.io","Description":"Free JSON storage service Ideal for small scale Web apps, Websites and Mobile apps","Auth":null,"HTTPS":true,"Link":"https://jsonbin.io"},{"API":"JSONPlaceholder","Description":"Fake data for testing and prototyping","Auth":null,"HTTPS":false,"Link":"http://jsonplaceholder.typicode.com/"},{"API":"Judge0 API","Description":"Compile and run source code","Auth":null,"HTTPS":true,"Link":"https://api.judge0.com/"},{"API":"Kairos","Description":"Face Recognition and Emotion Analysis","Auth":"apiKey","HTTPS":true,"Link":"https://www.kairos.com/features"},{"API":"Let's Validate","Description":"Uncovers the technologies used on websites and URL to thumbnail","Auth":null,"HTTPS":true,"Link":"https://github.com/letsvalidate/api"},{"API":"LiveEdu","Description":"Live Coding Streaming","Auth":"OAuth","HTTPS":true,"Link":"https://www.liveedu.tv/developer/applications/"},{"API":"Lorem Text","Description":"Generates Lorem Ipsum text","Auth":"X-Mashape-Key","HTTPS":true,"Link":"https://market.mashape.com/montanaflynn/lorem-text-generator"},{"API":"Loripsum","Description":"The \"lorem ipsum\" generator that doesn't suck","Auth":null,"HTTPS":false,"Link":"http://loripsum.net/"},{"API":"Myjson","Description":"A simple JSON store for your web or mobile app","Auth":null,"HTTPS":false,"Link":"http://myjson.com/api"},{"API":"Plino","Description":"Spam filtering system","Auth":null,"HTTPS":true,"Link":"https://plino.herokuapp.com/"},{"API":"Public APIs","Description":"A collective list of free JSON APIs for use in web development","Auth":null,"HTTPS":true,"Link":"https://github.com/toddmotto/public-apis/tree/master/json"},{"API":"Random Word","Description":"Generate random word","Auth":null,"HTTPS":false,"Link":"http://www.setgetgo.com/randomword/"},{"API":"RandomUser","Description":"Generates random user data","Auth":null,"HTTPS":true,"Link":"https://randomuser.me"},{"API":"ReqRes","Description":"A hosted REST-API ready to respond to your AJAX requests","Auth":null,"HTTPS":true,"Link":"https://reqres.in/ "},{"API":"RoboHash","Description":"Generate random robot/alien avatars","Auth":null,"HTTPS":true,"Link":"https://robohash.org/"},{"API":"StackExchange","Description":"Q&A forum for developers","Auth":"OAuth","HTTPS":true,"Link":"https://api.stackexchange.com/"},{"API":"Stormpath","Description":"User Authentication","Auth":"apiKey","HTTPS":true,"Link":"https://stormpath.com/"},{"API":"UI Names","Description":"Generate random fake names","Auth":null,"HTTPS":true,"Link":"https://github.com/thm/uinames"},{"API":"Verse","Description":"Check what's the latest version of your favorite open-source project","Auth":null,"HTTPS":true,"Link":"https://verse.pawelad.xyz/"}],"Documents & Productivity":[{"API":"File.io","Description":"File Sharing","Auth":null,"HTTPS":true,"Link":"https://www.file.io"},{"API":"pdflayer API","Description":"HTML/URL to PDF","Auth":null,"HTTPS":true,"Link":"https://pdflayer.com"},{"API":"Pocket","Description":"Bookmarking service","Auth":"OAuth","HTTPS":true,"Link":"https://getpocket.com/developer/"},{"API":"PrexView","Description":"Data from XML or JSON to PDF, HTML or Image","Auth":"apiKey","HTTPS":true,"Link":"https://prexview.com"},{"API":"Todoist","Description":"Todo Lists","Auth":"OAuth","HTTPS":true,"Link":"https://developer.todoist.com"},{"API":"Wunderlist","Description":"Todo Lists","Auth":"OAuth","HTTPS":true,"Link":"https://developer.wunderlist.com/documentation"}],"Environment":[{"API":"AirVisual","Description":"Air quality and weather data","Auth":"apiKey","HTTPS":true,"Link":"https://airvisual.com/api"},{"API":"OpenAQ","Description":"Open air quality data","Auth":"apiKey","HTTPS":true,"Link":"https://docs.openaq.org/"},{"API":"PM2.5.in","Description":"Air quality of China","Auth":"apiKey","HTTPS":false,"Link":"http://www.pm25.in/api_doc"}],"Finance":[{"API":"Barchart OnDemand","Description":"Stock, Futures, and Forex Market Data","Auth":"apiKey","HTTPS":true,"Link":"https://www.barchartondemand.com/free"},{"API":"CoinDesk","Description":"Bitcoin Price Index","Auth":null,"HTTPS":false,"Link":"http://www.coindesk.com/api/"},{"API":"Consumer Financial Protection Bureau","Description":"Financial services consumer complains data","Auth":"apiKey","HTTPS":true,"Link":"https://data.consumerfinance.gov/resource/jhzv-w97w.json"},{"API":"IEX","Description":"Stocks and Market Data","Auth":null,"HTTPS":true,"Link":"https://iextrading.com/developer/"},{"API":"Razorpay IFSC","Description":"Indian Financial Systems Code (Bank Branch Codes)","Auth":null,"HTTPS":true,"Link":"https://ifsc.razorpay.com/"}],"Food & Drink":[{"API":"BigOven","Description":"Recipe Search","Auth":"X-Mashape-Key","HTTPS":false,"Link":"http://api2.bigoven.com/"},{"API":"BreweryDB","Description":"Beer","Auth":"apiKey","HTTPS":false,"Link":"http://www.brewerydb.com/developers"},{"API":"Edamam","Description":"Recipe Search","Auth":"apiKey","HTTPS":true,"Link":"https://developer.edamam.com/"},{"API":"Food2Fork","Description":"Recipe Search","Auth":"apiKey","HTTPS":false,"Link":"http://food2fork.com/about/api"},{"API":"LCBO","Description":"Alcohol","Auth":"apiKey","HTTPS":true,"Link":"https://lcboapi.com/"},{"API":"PunkAPI","Description":"Brewdog Beer Recipes","Auth":null,"HTTPS":true,"Link":"https://punkapi.com/"},{"API":"Recipe Puppy","Description":"Food","Auth":null,"HTTPS":false,"Link":"http://www.recipepuppy.com/about/api/"},{"API":"TacoFancy","Description":"Community-driven taco database","Auth":null,"HTTPS":false,"Link":"https://github.com/evz/tacofancy-api"},{"API":"TheCocktailDB","Description":"Cocktail Recipes","Auth":null,"HTTPS":false,"Link":"http://www.thecocktaildb.com/"},{"API":"The Report of the Week","Description":"Food & Drink Reviews","Auth":null,"HTTPS":true,"Link":"https://github.com/andyklimczak/TheReportOfTheWeek-API"},{"API":"What's on the menu?","Description":"NYPL human-transcribed historical menu collection","Auth":"apiKey","HTTPS":false,"Link":"nypl.github.io/menus-api/"},{"API":"Yummly","Description":"Find food recipes","Auth":null,"HTTPS":true,"Link":"https://developer.yummly.com/"},{"API":"Zomato","Description":"Discover restaurants","Auth":"apiKey","HTTPS":true,"Link":"https://developers.zomato.com/api"}],"Fraud Prevention":[{"API":"Whitepages Pro","Description":"Global identity verification with phone, address, email, and IP","Auth":"apiKey","HTTPS":true,"Link":"https://pro.whitepages.com/developer/documentation/identity-check-api/"},{"API":"Whitepages Pro","Description":"Phone reputation to detect spammy phones","Auth":"apiKey","HTTPS":true,"Link":"https://pro.whitepages.com/developer/documentation/phone-reputation-api/"},{"API":"Whitepages Pro","Description":"Get an owner’s name, address, demographics based on the phone number","Auth":"apiKey","HTTPS":true,"Link":"https://pro.whitepages.com/developer/documentation/reverse-phone-api/"},{"API":"Whitepages Pro","Description":"Phone number validation, line_type, carrier append","Auth":"apiKey","HTTPS":true,"Link":"https://pro.whitepages.com/developer/documentation/phone-intelligence-api/"},{"API":"Whitepages Pro","Description":"Get normalized physical address, residents, address type, and validity","Auth":"apiKey","HTTPS":true,"Link":"https://pro.whitepages.com/developer/documentation/reverse-address-api/"}],"Games & Comics":[{"API":"Battle.net","Description":"Blizzard Entertainment","Auth":null,"HTTPS":true,"Link":"https://dev.battle.net/"},{"API":"Battlefield 4","Description":"Battlefield 4 Information","Auth":null,"HTTPS":true,"Link":"https://bf4stats.com/api"},{"API":"Chuck Norris Database","Description":"Jokes","Auth":null,"HTTPS":false,"Link":"http://www.icndb.com/api/"},{"API":"Clash of Clans","Description":"Clash of Clans Game Information","Auth":null,"HTTPS":true,"Link":"https://developer.clashofclans.com"},{"API":"Clash Royale","Description":"Clash Royale Game Information","Auth":null,"HTTPS":true,"Link":"https://github.com/martincarrera/clash-royale-api"},{"API":"Comic Vine","Description":"Comics","Auth":null,"HTTPS":true,"Link":"https://comicvine.gamespot.com/api/documentation"},{"API":"Deck of Cards","Description":"Deck of Cards","Auth":null,"HTTPS":false,"Link":"http://deckofcardsapi.com/"},{"API":"Destiny The Game","Description":"Bungie Platform API","Auth":"apiKey","HTTPS":true,"Link":"https://www.bungie.net/en/Clan/Post/39966/85087279/0/0"},{"API":"Eve Online","Description":"Third-Party Developer Documentation","Auth":"OAuth","HTTPS":true,"Link":"https://eveonline-third-party-documentation.readthedocs.io/en/latest/"},{"API":"Giant Bomb","Description":"Video Games","Auth":null,"HTTPS":true,"Link":"https://www.giantbomb.com/api/documentation"},{"API":"Guild Wars 2","Description":"Guild Wars 2 Game Information","Auth":"apiKey","HTTPS":true,"Link":"https://wiki.guildwars2.com/wiki/API:Main"},{"API":"Jservice","Description":"Jeopardy Question Database","Auth":null,"HTTPS":false,"Link":"http://jservice.io"},{"API":"Magic The Gathering","Description":"Magic The Gathering Game Information","Auth":null,"HTTPS":false,"Link":"http://magicthegathering.io/"},{"API":"Marvel","Description":"Marvel Comics","Auth":"apiKey","HTTPS":false,"Link":"http://developer.marvel.com"},{"API":"Minecraft","Description":"Minecraft server info & user info)","Auth":null,"HTTPS":true,"Link":"https://mcapi.ca/"},{"API":"Open Trivia","Description":"Trivia Questions","Auth":null,"HTTPS":true,"Link":"https://opentdb.com/api_config.php"},{"API":"PandaScore","Description":"E-sports games and results","Auth":"apiKey","HTTPS":true,"Link":"https://api.pandascore.co"},{"API":"Pokéapi","Description":"Pokémon Information","Auth":null,"HTTPS":false,"Link":"http://pokeapi.co"},{"API":"Qriusity","Description":"Quiz/Trivia Questions","Auth":null,"HTTPS":true,"Link":"https://qriusity.com/"},{"API":"Riot Games","Description":"League of Legends Game Information","Auth":"apiKey","HTTPS":true,"Link":"https://developer.riotgames.com/"},{"API":"Steam","Description":"Steam Client Interaction","Auth":"OAuth","HTTPS":true,"Link":"https://developer.valvesoftware.com/wiki/Steam_Web_API"}],"Geocoding":[{"API":"adresse.data.gouv.fr","Description":"Address database of France, geocoding, and reverse","Auth":null,"HTTPS":true,"Link":"https://adresse.data.gouv.fr"},{"API":"Bing Maps","Description":"Create/customize digital maps based on Bing Maps data","Auth":"apiKey","HTTPS":true,"Link":"https://www.microsoft.com/maps/"},{"API":"Geocode.xyz","Description":"Provides worldwide forward/reverse geocoding, batch geocoding and geoparsing","Auth":null,"HTTPS":true,"Link":"https://geocode.xyz/"},{"API":"GeoNames","Description":"Place names and other geographical data","Auth":null,"HTTPS":false,"Link":"http://www.geonames.org/export/web-services.html"},{"API":"GéoApi","Description":"French geographical data","Auth":null,"HTTPS":true,"Link":"https://api.gouv.fr/api/geoapi.html"},{"API":"Google Maps","Description":"Create/customize digital maps based on Google Maps data","Auth":"apiKey","HTTPS":true,"Link":"https://developers.google.com/maps/"},{"API":"IP 2 Country","Description":"Map an IP to a country","Auth":null,"HTTPS":true,"Link":"https://ip2country.info"},{"API":"IP Address Details","Description":"Find geolocation with ip address","Auth":null,"HTTPS":true,"Link":"https://ipinfo.io/"},{"API":"IP Location","Description":"Find IP address location information","Auth":null,"HTTPS":true,"Link":"https://ipapi.co/"},{"API":"IP Vigilante","Description":"Free IP Geolocation API","Auth":null,"HTTPS":true,"Link":"https://www.ipvigilante.com/"},{"API":"Mapbox","Description":"Create/customize beautiful digital maps","Auth":"apiKey","HTTPS":true,"Link":"https://www.mapbox.com/developers/"},{"API":"Mapzen Search","Description":"Open Source & Open Data Global Geocoding Service","Auth":"apiKey","HTTPS":true,"Link":"https://mapzen.com/products/search/"},{"API":"Mexico","Description":"Mexico RESTful zip codes API","Auth":null,"HTTPS":true,"Link":"https://github.com/IcaliaLabs/sepomex"},{"API":"One Map 2.0, Singapore","Description":"Singapore Land Authority REST API services for Singapore addresses","Auth":"apiKey","HTTPS":true,"Link":"https://docs.onemap.sg/"},{"API":"OnWater","Description":"Determine if a lat/lon is on water or land","Auth":null,"HTTPS":true,"Link":"https://onwater.io/"},{"API":"OpenCage","Description":"Forward and reverse geocoding using open data","Auth":null,"HTTPS":true,"Link":"https://geocoder.opencagedata.com"},{"API":"OpenStreetMap","Description":"Navigation, geolocation and geographical data","Auth":"OAuth","HTTPS":false,"Link":"http://wiki.openstreetmap.org/wiki/API"},{"API":"PostcodeData.nl","Description":"Provide geolocation data based on postcode for Dutch addresses","Auth":null,"HTTPS":false,"Link":"http://api.postcodedata.nl/v1/postcode/?postcode=1211EP&streetnumber=60&ref=domeinnaam.nl&type=json"},{"API":"Postcodes.io","Description":"Postcode lookup & Geolocation for the UK","Auth":null,"HTTPS":true,"Link":"https://postcodes.io"},{"API":"REST Countries","Description":"Get information about countries via a RESTful API","Auth":null,"HTTPS":true,"Link":"https://restcountries.eu"},{"API":"Utah AGRC","Description":"Utah Web API for geocoding Utah addresses","Auth":"apiKey","HTTPS":true,"Link":"https://api.mapserv.utah.gov"},{"API":"ViaCep","Description":"Brazil RESTful zip codes API","Auth":null,"HTTPS":true,"Link":"https://viacep.com.br"},{"API":"Zippopotam","Description":"Get information about place such as country, city, state, etc","Auth":null,"HTTPS":false,"Link":"http://www.zippopotam.us"}],"Health":[{"API":"Diabetes","Description":"Logging and retrieving diabetes information","Auth":null,"HTTPS":false,"Link":"http://predictbgl.com/api/"},{"API":"Flutrack","Description":"Influenza-like symptoms with geotracking","Auth":null,"HTTPS":false,"Link":"http://www.flutrack.org/"},{"API":"Makeup","Description":"Makeup Information","Auth":null,"HTTPS":false,"Link":"http://makeup-api.herokuapp.com/"},{"API":"Medicare","Description":"Access to the data from the CMS - medicaregov","Auth":null,"HTTPS":true,"Link":"https://data.medicare.gov/developers"},{"API":"Nutritionix","Description":"Worlds largest verified nutrition database","Auth":"apiKey","HTTPS":true,"Link":"https://developer.nutritionix.com/"},{"API":"openFDA","Description":"Public FDA data about drugs, devices, and foods","Auth":null,"HTTPS":true,"Link":"https://open.fda.gov/api/"},{"API":"USDA Nutrients","Description":"National Nutrient Database for Standard Reference","Auth":null,"HTTPS":true,"Link":"https://ndb.nal.usda.gov/ndb/doc/index"}],"Machine Learning":[{"API":"API.AI","Description":"Natural Language Processing","Auth":"apiKey","HTTPS":true,"Link":"https://api.ai/"},{"API":"Clarifai","Description":"Computer Vision","Auth":"OAuth","HTTPS":true,"Link":"https://developer.clarifai.com/"},{"API":"Cleverbot","Description":"Web chat bot","Auth":"apiKey","HTTPS":true,"Link":"https://www.cleverbot.com/api/"},{"API":"Keen IO","Description":"Data Analytics","Auth":"apiKey","HTTPS":true,"Link":"https://keen.io/"},{"API":"Unplugg","Description":"Forecasting API for timeseries data","Auth":"apiKey","HTTPS":true,"Link":"https://unplu.gg/test_api.html"},{"API":"Wit.ai","Description":"Natural Language Processing","Auth":"OAuth","HTTPS":true,"Link":"https://wit.ai/"}],"Math":[{"API":"Newton","Description":"Symbolic and Arithmetic Math Calculator","Auth":null,"HTTPS":true,"Link":"https://newton.now.sh/"},{"API":"Numbers API","Description":"Facts about numbers","Auth":null,"HTTPS":false,"Link":"http://numbersapi.com"}],"Music":[{"API":"Bandsintown","Description":"Music Events","Auth":null,"HTTPS":true,"Link":"https://app.swaggerhub.com/apis/Bandsintown/PublicAPI/3.0.0"},{"API":"Deezer","Description":"Music","Auth":"OAuth","HTTPS":false,"Link":"http://developers.deezer.com/login?redirect=/api"},{"API":"Discogs","Description":"Music","Auth":"OAuth","HTTPS":true,"Link":"https://www.discogs.com/developers/"},{"API":"Genius","Description":"Crowdsourced lyrics and music knowledge","Auth":"OAuth","HTTPS":true,"Link":"https://docs.genius.com/"},{"API":"Jamendo","Description":"Music","Auth":"OAuth","HTTPS":true,"Link":"https://developer.jamendo.com/v3.0"},{"API":"iTunes Search","Description":"Software products","Auth":null,"HTTPS":true,"Link":"https://affiliate.itunes.apple.com/resources/documentation/itunes-store-web-service-search-api/"},{"API":"LastFm","Description":"Music","Auth":"apiKey","HTTPS":false,"Link":"http://www.last.fm/api"},{"API":"Mixcloud","Description":"Music","Auth":null,"HTTPS":true,"Link":"https://www.mixcloud.com/developers/"},{"API":"MusicBrainz","Description":"Music","Auth":null,"HTTPS":true,"Link":"https://musicbrainz.org/doc/Development/XML_Web_Service/Version_2"},{"API":"Musikki","Description":"Music","Auth":"apiKey","HTTPS":true,"Link":"https://music-api.musikki.com/reference"},{"API":"Musixmatch","Description":"Music","Auth":"apiKey","HTTPS":true,"Link":"https://developer.musixmatch.com/"},{"API":"Songkick","Description":"Music Events","Auth":"OAuth","HTTPS":true,"Link":"https://www.songkick.com/developer/"},{"API":"Songsterr","Description":"Provides guitar, bass and drums tabs and chords","Auth":null,"HTTPS":true,"Link":"https://www.songsterr.com/a/wa/api/"},{"API":"Soundcloud","Description":"Music","Auth":null,"HTTPS":true,"Link":"https://developers.soundcloud.com/"},{"API":"Spotify","Description":"Music","Auth":"OAuth","HTTPS":true,"Link":"https://developer.spotify.com/web-api/"},{"API":"Vagalume","Description":"Crowdsourced lyrics and music knowledge","Auth":"apiKey","HTTPS":true,"Link":"https://api.vagalume.com.br/docs/"}],"News":[{"API":"Chronicling America","Description":"Provides access to millions of pages of historic US newspapers from the Library of Congress","Auth":null,"HTTPS":false,"Link":"http://chroniclingamerica.loc.gov/about/api/"},{"API":"New York Times","Description":"Provides news","Auth":"apiKey","HTTPS":true,"Link":"https://developer.nytimes.com/"},{"API":"News API","Description":"Headlines currently published on a range of news sources and blogs","Auth":"apiKey","HTTPS":true,"Link":"https://newsapi.org/"},{"API":"The Guardian","Description":"Access all the content the Guardian creates, categorised by tags and section","Auth":"apiKey","HTTPS":true,"Link":"http://open-platform.theguardian.com/"}],"Open Source projects":[{"API":"Countly","Description":"Countly web analytics","Auth":null,"HTTPS":false,"Link":"http://resources.count.ly/docs"},{"API":"Drupal.org","Description":"Drupalorg","Auth":null,"HTTPS":true,"Link":"https://www.drupal.org/drupalorg/docs/api"},{"API":"Libraries.io","Description":"Open source software libraries","Auth":"apiKey","HTTPS":true,"Link":"https://libraries.io/api"}],"Personality":[{"API":"chucknorris.io","Description":"JSON API for hand curated Chuck Norris jokes","Auth":null,"HTTPS":true,"Link":"https://api.chucknorris.io"},{"API":"Forismatic","Description":"Inspirational Quotes","Auth":null,"HTTPS":false,"Link":"http://forismatic.com/en/api/"},{"API":"icanhazdadjoke","Description":"The largest selection of dad jokes on the internet","Auth":null,"HTTPS":true,"Link":"https://icanhazdadjoke.com/api"},{"API":"Medium","Description":"Community of readers and writers offering unique perspectives on ideas","Auth":"OAuth","HTTPS":true,"Link":"https://github.com/Medium/medium-api-docs"},{"API":"Quotes on Design","Description":"Inspirational Quotes","Auth":null,"HTTPS":true,"Link":"https://quotesondesign.com/api-v4-0/"},{"API":"Traitify","Description":"Assess, collect, and analyze Personality","Auth":null,"HTTPS":true,"Link":"https://app.traitify.com/developer"},{"API":"tronalddump.io","Description":"Api & web archive for the things Donald Trump has said","Auth":null,"HTTPS":true,"Link":"https://www.tronalddump.io"}],"Photography":[{"API":"500px","Description":"Photography Community","Auth":"OAuth","HTTPS":true,"Link":"https://github.com/500px/api-documentation"},{"API":"Flickr","Description":"Flickr Services","Auth":"OAuth","HTTPS":true,"Link":"https://www.flickr.com/services/api/"},{"API":"Gfycat","Description":"Jiffier GIFs","Auth":"OAuth","HTTPS":true,"Link":"https://developers.gfycat.com/api/"},{"API":"Giphy","Description":"Get all your gifs","Auth":null,"HTTPS":true,"Link":"https://github.com/Giphy/GiphyAPI"},{"API":"Imgur","Description":"Images","Auth":"OAuth","HTTPS":true,"Link":"https://api.imgur.com/#overview"},{"API":"ScreenShotLayer","Description":"URL 2 Image","Auth":null,"HTTPS":true,"Link":"https://screenshotlayer.com"},{"API":"Unsplash","Description":"Photography","Auth":"OAuth","HTTPS":true,"Link":"https://unsplash.com/developers"},{"API":"PlaceKitten","Description":"Resizable kitten placeholder images","Auth":null,"HTTPS":true,"Link":"https://placekitten.com/"}],"Science":[{"API":"arcsecond.io","Description":"Multiple astronomy data sources","Auth":null,"HTTPS":true,"Link":"https://api.arcsecond.io/"},{"API":"CORE","Description":"Access the world's Open Access research papers","Auth":"apiKey","HTTPS":true,"Link":"https://core.ac.uk/services#api"},{"API":"Fedger.io","Description":"Query machine intelligence data","Auth":null,"HTTPS":true,"Link":"https://dev.fedger.io/docs/"},{"API":"inspirehep.net","Description":"High Energy Physics info system","Auth":null,"HTTPS":true,"Link":"https://inspirehep.net/info/hep/api?ln=en"},{"API":"Launch Library","Description":"Upcoming Space Launches","Auth":null,"HTTPS":true,"Link":"https://launchlibrary.net/1.2/docs/api.html"},{"API":"Minor Planet Center","Description":"Asterankcom Information","Auth":null,"HTTPS":false,"Link":"http://www.asterank.com/mpc"},{"API":"NASA","Description":"NASA data, including imagery","Auth":null,"HTTPS":true,"Link":"https://api.nasa.gov"},{"API":"Open Notify","Description":"ISS astronauts, current location, etc","Auth":null,"HTTPS":false,"Link":"http://open-notify.org/Open-Notify-API/"},{"API":"Sunrise and Sunset","Description":"Sunset and sunrise times for a given latitude and longitude","Auth":null,"HTTPS":true,"Link":"https://sunrise-sunset.org/api"},{"API":"USGS Earthquake Hazards Program","Description":"Earthquakes data real-time","Auth":null,"HTTPS":true,"Link":"https://earthquake.usgs.gov/fdsnws/event/1/"},{"API":"USGS Water Services","Description":"Water quality and level info for rivers and lakes","Auth":null,"HTTPS":true,"Link":"https://waterservices.usgs.gov/"},{"API":"World Bank","Description":"World Data","Auth":null,"HTTPS":false,"Link":"https://datahelpdesk.worldbank.org/knowledgebase/topics/125589"}],"Security":[{"API":"AXFR Database","Description":"AXFR public database","Auth":null,"HTTPS":false,"Link":"http://api.axfrcheck.com"},{"API":"UK Police","Description":"UK Police data","Auth":null,"HTTPS":true,"Link":"https://data.police.uk/docs/"}],"Shopping":[{"API":"eBay","Description":"Sell and Buy on eBay","Auth":"OAuth","HTTPS":true,"Link":"https://go.developer.ebay.com/"}],"Social":[{"API":"Cisco Spark","Description":"Team Collaboration Software","Auth":"OAuth","HTTPS":true,"Link":"https://developer.ciscospark.com"},{"API":"Discord","Description":"Make bots for Discord, integrate Discord onto an external platform","Auth":"OAuth","HTTPS":true,"Link":"https://discordapp.com/developers/docs/intro"},{"API":"DonReach Social Count","Description":"Get the social share count of a URL from every major social network","Auth":null,"HTTPS":true,"Link":"https://donreach.com/social-share-count/"},{"API":"Facebook","Description":"Facebook Login, Share on FB, Social Plugins, Analytics and more","Auth":"OAuth","HTTPS":true,"Link":"https://developers.facebook.com/"},{"API":"Foursquare","Description":"Interact with Foursquare users and places (geolocation-based checkins, photos, tips, events, etc)","Auth":"OAuth","HTTPS":true,"Link":"https://developer.foursquare.com/"},{"API":"Fuck Off as a Service","Description":"Asks someone to fuck off","Auth":null,"HTTPS":true,"Link":"https://www.foaas.com"},{"API":"Full Contact","Description":"Get Social Media profiles and contact Information","Auth":"OAuth","HTTPS":true,"Link":"https://www.fullcontact.com/developer/docs/"},{"API":"HackerNews","Description":"Social news for CS and entrepreneurship","Auth":null,"HTTPS":true,"Link":"https://github.com/HackerNews/API"},{"API":"Instagram","Description":"Instagram Login, Share on Instagram, Social Plugins and more","Auth":"OAuth","HTTPS":true,"Link":"https://www.instagram.com/developer/"},{"API":"LinkedIn","Description":"The foundation of all digital integrations with LinkedIn","Auth":"OAuth","HTTPS":true,"Link":"https://developer.linkedin.com/docs/rest-api"},{"API":"Meetup.com","Description":"Data about Meetups from Meetupcom","Auth":"apiKey","HTTPS":true,"Link":"https://www.meetup.com/meetup_api/"},{"API":"Telegram MTProto","Description":"Read and write Telegram data","Auth":"OAuth","HTTPS":true,"Link":"https://core.telegram.org/api#getting-started"},{"API":"Telegram bot","Description":"Simplified HTTP version of the MTProto API for bots","Auth":"OAuth","HTTPS":true,"Link":"https://core.telegram.org/bots/api"},{"API":"Pinterest","Description":"The world's catalog of ideas","Auth":"OAuth","HTTPS":true,"Link":"https://developers.pinterest.com/"},{"API":"PWRTelegram bot","Description":"Boosted version of the Telegram bot API","Auth":"OAuth","HTTPS":true,"Link":"https://pwrtelegram.xyz"},{"API":"Reddit","Description":"Homepage of the internet","Auth":"OAuth","HTTPS":true,"Link":"https://www.reddit.com/dev/api"},{"API":"Slack","Description":"Team Instant Messaging","Auth":"OAuth","HTTPS":true,"Link":"https://api.slack.com/"},{"API":"Tumblr","Description":"Read and write Tumblr Data","Auth":"OAuth","HTTPS":true,"Link":"https://www.tumblr.com/docs/en/api/v2"},{"API":"Twitch","Description":"Game Streaming API","Auth":"OAuth","HTTPS":true,"Link":"https://github.com/justintv/Twitch-API"},{"API":"Twitter","Description":"Read and write Twitter data","Auth":"OAuth","HTTPS":true,"Link":"https://dev.twitter.com/rest/public"},{"API":"vk","Description":"Read and write vk data","Auth":"OAuth","HTTPS":true,"Link":"https://vk.com/dev/sites"}],"Sports & Fitness":[{"API":"Cartola FC","Description":"The Cartola FC API serves to check the partial points of your team","Auth":null,"HTTPS":true,"Link":"https://github.com/wgenial/cartrolandofc"},{"API":"City Bikes","Description":"City Bikes around the world","Auth":null,"HTTPS":false,"Link":"http://api.citybik.es/v2/"},{"API":"Ergast F1","Description":"F1 data from the beginning of the world championships in 1950","Auth":null,"HTTPS":false,"Link":"http://ergast.com/mrd/"},{"API":"Fitbit","Description":"Fitbit Information","Auth":"OAuth","HTTPS":true,"Link":"https://dev.fitbit.com/"},{"API":"Football-Data.org","Description":"Football Data","Auth":null,"HTTPS":false,"Link":"http://api.football-data.org/index"},{"API":"JCDecaux Bike","Description":"JCDecaux's self-service bicycles","Auth":"apiKey","HTTPS":true,"Link":"https://developer.jcdecaux.com/"},{"API":"Cricket Live Scores","Description":"Live cricket scores","Auth":"X-Mashape-Key","HTTPS":true,"Link":"https://market.mashape.com/dev132/cricket-live-scores"},{"API":"NFL Arrests","Description":"NFL Arrest Data","Auth":null,"HTTPS":false,"Link":"http://nflarrest.com/api/"},{"API":"Pro Motocross","Description":"The RESTful AMA Pro Motocross lap times for every racer on the start gate","Auth":null,"HTTPS":false,"Link":"http://promotocrossapi.com"},{"API":"Strava","Description":"Connect with athletes, activities and more","Auth":"OAuth","HTTPS":true,"Link":"https://strava.github.io/api/"},{"API":"UFC Data","Description":"Ultimate Fighting Championship information for events and fighters","Auth":null,"HTTPS":false,"Link":"http://ufc-data-api.ufc.com/"},{"API":"Wger","Description":"Workout manager data as exercises, muscles or equipment","Auth":"apiKey","HTTPS":true,"Link":"https://wger.de/en/software/api"}],"Tracking":[{"API":"Postmon","Description":"An API to query Brazilian ZIP codes and orders easily, quickly and free","Auth":null,"HTTPS":false,"Link":"http://postmon.com.br"},{"API":"Sweden","Description":"Provides information about parcels in transport","Auth":"apiKey","HTTPS":false,"Link":"https://developer.postnord.com/docs2"}],"Transportation":[{"API":"ADS-B Exchange","Description":"Access real-time and historical data of any and all airbone aircraft","Auth":null,"HTTPS":true,"Link":"https://www.adsbexchange.com/data/"},{"API":"Amadeus Travel Innovation Sandbox","Description":"Travel Search - Limited usage","Auth":"apiKey","HTTPS":true,"Link":"https://sandbox.amadeus.com/"},{"API":"Bay Area Rapid Transit","Description":"Stations and predicted arrivals for BART","Auth":"apiKey","HTTPS":false,"Link":"http://api.bart.gov"},{"API":"Community Transit","Description":"Transitland API","Auth":null,"HTTPS":true,"Link":"https://github.com/transitland/transitland-datastore/blob/master/README.md#api-endpoints"},{"API":"Goibibo","Description":"API for travel search","Auth":"apiKey","HTTPS":true,"Link":"https://developer.goibibo.com/docs"},{"API":"Indian Railways","Description":"Indian Railways Information","Auth":"apiKey","HTTPS":false,"Link":"http://api.erail.in/"},{"API":"Izi","Description":"Audio guide for travellers","Auth":"apiKey","HTTPS":true,"Link":"http://api-docs.izi.travel/"},{"API":"Navitia","Description":"The open API for building cool stuff with transport data","Auth":"apiKey","HTTPS":true,"Link":"https://api.navitia.io/"},{"API":"The Nomad List","Description":"A list of the best places to live/work remotely","Auth":null,"HTTPS":true,"Link":"https://nomadlist.com/faq"},{"API":"Schiphol Airport","Description":"Schiphol","Auth":"apiKey","HTTPS":true,"Link":"https://developer.schiphol.nl/"},{"API":"TransitLand","Description":"Transit Aggregation","Auth":null,"HTTPS":true,"Link":"https://transit.land/documentation/datastore/api-endpoints.html"},{"API":"Transport for Atlanta, US","Description":"Marta","Auth":null,"HTTPS":false,"Link":"http://www.itsmarta.com/app-developer-resources.aspx"},{"API":"Transport for Auckland, New Zealand","Description":"Auckland Transport","Auth":null,"HTTPS":true,"Link":"https://api.at.govt.nz/"},{"API":"Transport for Belgium","Description":"Belgian transport API","Auth":null,"HTTPS":true,"Link":"https://hello.irail.be/api/"},{"API":"Transport for Berlin, Germany","Description":"Third-party VBB API","Auth":null,"HTTPS":true,"Link":"https://github.com/derhuerst/vbb-rest/blob/master/docs/index.md"},{"API":"Transport for Boston, US","Description":"MBTA API","Auth":null,"HTTPS":false,"Link":"http://realtime.mbta.com/Portal/Home/Documents"},{"API":"Transport for Budapest, Hungary","Description":"Budapest public transport API","Auth":null,"HTTPS":true,"Link":"https://apiary.io/"},{"API":"Transport for Chicago, US","Description":"CTA","Auth":null,"HTTPS":false,"Link":"http://www.transitchicago.com/developers/"},{"API":"Transport for Czech Republic","Description":"Czech transport API","Auth":null,"HTTPS":true,"Link":"https://www.chaps.cz/eng/products/idos-internet"},{"API":"Transport for Denver, US","Description":"RTD","Auth":null,"HTTPS":false,"Link":"http://www.rtd-denver.com/gtfs-developer-guide.shtml"},{"API":"Transport for Finland","Description":"Finnish transport API","Auth":null,"HTTPS":true,"Link":"https://digitransit.fi/en/developers/ "},{"API":"Transport for Germany","Description":"Deutsche Bahn (DB) API","Auth":"apiKey","HTTPS":false,"Link":"http://data.deutschebahn.com/dataset/api-fahrplan"},{"API":"Transport for India","Description":"India Public Transport API","Auth":"apiKey","HTTPS":true,"Link":"https://data.gov.in/sector/transport"},{"API":"Transport for London, England","Description":"TfL API","Auth":null,"HTTPS":true,"Link":"https://api.tfl.gov.uk"},{"API":"Transport for Madrid, Spain","Description":"Madrid BUS transport API","Auth":"apiKey","HTTPS":false,"Link":"http://opendata.emtmadrid.es/Servicios-web/BUS"},{"API":"Transport for Minneapolis, US","Description":"NexTrip API","Auth":"OAuth","HTTPS":false,"Link":"http://svc.metrotransit.org/"},{"API":"Transport for The Netherlands","Description":"NS, only trains","Auth":"apiKey","HTTPS":false,"Link":"http://www.ns.nl/reisinformatie/ns-api"},{"API":"Transport for The Netherlands","Description":"OVAPI, country-wide public transport","Auth":null,"HTTPS":true,"Link":"https://github.com/skywave/KV78Turbo-OVAPI/wiki"},{"API":"Transport for New York City, US","Description":"MTA","Auth":"apiKey","HTTPS":false,"Link":"http://datamine.mta.info/"},{"API":"Transport for Norway","Description":"Norwegian transport API","Auth":null,"HTTPS":false,"Link":"http://reisapi.ruter.no/help"},{"API":"Transport for Ottawa, Canada","Description":"OC Transpo next bus arrival API","Auth":null,"HTTPS":false,"Link":"http://www.octranspo.com/index.php/developers"},{"API":"Transport for Paris, France","Description":"RATP Open Data API","Auth":null,"HTTPS":false,"Link":"http://data.ratp.fr/api/v1/console/datasets/1.0/search/"},{"API":"Transport for Paris, France","Description":"Live schedules made simple","Auth":null,"HTTPS":false,"Link":"http://restratpws.azurewebsites.net/swagger/"},{"API":"Transport for Philadelphia, US","Description":"SEPTA APIs","Auth":null,"HTTPS":false,"Link":"http://www3.septa.org/hackathon/"},{"API":"Transport for Rio de Janeiro, Brazil","Description":"Prefeitura do Rio (City Hall)","Auth":null,"HTTPS":false,"Link":"http://data.rio/group/transporte-e-mobilidade"},{"API":"Transport for São Paulo, Brazil","Description":"SPTrans","Auth":"OAuth","HTTPS":false,"Link":"http://www.sptrans.com.br/desenvolvedores/APIOlhoVivo/Documentacao.aspx"},{"API":"Transport for Sweden","Description":"Public Transport consumer","Auth":"OAuth","HTTPS":true,"Link":"https://www.trafiklab.se/api"},{"API":"Transport for Switzerland","Description":"Swiss public transport API","Auth":null,"HTTPS":true,"Link":"https://transport.opendata.ch/"},{"API":"Transport for Switzerland","Description":"Official Swiss Public Transport Open Data","Auth":"apiKey","HTTPS":true,"Link":"https://opentransportdata.swiss/en/"},{"API":"Transport for Tokyo, Japan","Description":"Tokyo Metro","Auth":"apiKey","HTTPS":true,"Link":"https://developer.tokyometroapp.jp/info"},{"API":"Transport for Toronto, Canada","Description":"TTC","Auth":null,"HTTPS":true,"Link":"https://myttc.ca/developers"},{"API":"Transport for Vancouver, Canada","Description":"TransLink","Auth":"OAuth","HTTPS":true,"Link":"https://developer.translink.ca/"},{"API":"Transport for U.S. (multiple locations)","Description":"NextBus API","Auth":null,"HTTPS":false,"Link":"http://www.nextbus.com/xmlFeedDocs/NextBusXMLFeed.pdf"},{"API":"Transport for Victoria, AU","Description":"PTV API","Auth":"apiKey","HTTPS":true,"Link":"https://www.ptv.vic.gov.au/about-ptv/ptv-data-and-reports/digital-products/ptv-timetable-api/"},{"API":"Transport for Washington, US","Description":"Washington Metro transport API","Auth":"OAuth","HTTPS":true,"Link":"https://developer.wmata.com/"},{"API":"Uber","Description":"Request Uber rides, reach riders, transport things, and reward drivers","Auth":"OAuth","HTTPS":true,"Link":"https://developer.uber.com/"},{"API":"WhereIsMyTransport","Description":"Platform for public transport data in emerging cities","Auth":"OAuth","HTTPS":true,"Link":"https://developer.whereismytransport.com/"}],"University":[{"API":"Universities List","Description":"University names, countries and domains","Auth":null,"HTTPS":true,"Link":"https://github.com/Hipo/university-domains-list"}],"Vehicle":[{"API":"Vehicles","Description":"Lot of vehicles information","Auth":"apiKey","HTTPS":false,"Link":"http://developer.edmunds.com/api-documentation/overview/"},{"API":"Brazilian Vehicles and Prices","Description":"Vehicles information from Fundação Instituto de Pesquisas Econômicas - Fipe","Auth":null,"HTTPS":true,"Link":"https://deividfortuna.github.io/fipe/"},{"API":"NHTSA Vehicles","Description":"NHTSA Product Information Catalog and Vehicle Listing","Auth":null,"HTTPS":true,"Link":"https://vpic.nhtsa.dot.gov/api/"}],"Video":[{"API":"An API of Ice And Fire","Description":"Game Of Thrones API","Auth":null,"HTTPS":true,"Link":"https://anapioficeandfire.com/"},{"API":"Dailymotion","Description":"Dailymotion Developer API","Auth":"OAuth","HTTPS":true,"Link":"https://developer.dailymotion.com/"},{"API":"Netflix Roulette","Description":"Netflix database","Auth":null,"HTTPS":true,"Link":"https://netflixroulette.net/api/"},{"API":"Ron Swanson Quotes","Description":"Television","Auth":null,"HTTPS":true,"Link":"https://github.com/jamesseanwright/ron-swanson-quotes#ron-swanson-quotes-api"},{"API":"SWAPI","Description":"Star Wars Information","Auth":null,"HTTPS":true,"Link":"https://swapi.co"},{"API":"TMDb","Description":"Community-based movie data","Auth":"apiKey","HTTPS":true,"Link":"https://www.themoviedb.org/documentation/api"},{"API":"TVMaze","Description":"TV Show Data","Auth":null,"HTTPS":false,"Link":"http://www.tvmaze.com/api"},{"API":"Vimeo","Description":"Vimeo Developer API","Auth":"OAuth","HTTPS":true,"Link":"https://developer.vimeo.com/"},{"API":"YouTube","Description":"Add YouTube functionality to your sites and apps","Auth":"OAuth","HTTPS":true,"Link":"https://developers.google.com/youtube/"}],"Weather":[{"API":"Dark Sky","Description":"Weather","Auth":"apiKey","HTTPS":true,"Link":"https://darksky.net/dev/"},{"API":"MetaWeather","Description":"Weather","Auth":null,"HTTPS":true,"Link":"https://www.metaweather.com/api/"},{"API":"OpenWeatherMap","Description":"Weather","Auth":"apiKey","HTTPS":false,"Link":"http://openweathermap.org/api"},{"API":"Weatherbit","Description":"Weather","Auth":"apiKey","HTTPS":true,"Link":"https://www.weatherbit.io/api"},{"API":"Wunderground","Description":"Weather","Auth":"apiKey","HTTPS":true,"Link":"https://www.wunderground.com/weather/api/"},{"API":"Yahoo! Weather","Description":"Weather","Auth":null,"HTTPS":true,"Link":"https://developer.yahoo.com/weather/"}]} From 1ed2e11c185d7641081593c4447e44d9eb9c5cc7 Mon Sep 17 00:00:00 2001 From: Dave Machado Date: Thu, 3 Aug 2017 15:14:29 -0400 Subject: [PATCH 11/19] Add Markdown condense script --- build/condenseMd.js | 61 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 build/condenseMd.js diff --git a/build/condenseMd.js b/build/condenseMd.js new file mode 100644 index 00000000..df40c5d9 --- /dev/null +++ b/build/condenseMd.js @@ -0,0 +1,61 @@ +fs = require('fs') + +function setupMd(filename, anchor) { + fs.readFile(filename, 'utf8', function (err,text) { + if (err) { + return console.log(err); + } + var lines = text.split("\n"); + var cur_line = 0; + var line = "" + var table_name = ""; + var col_num = 0; + var cols = []; + var rows = []; + + function read_line() { + return lines[cur_line++]; + } + var arr = []; + while (true) { + var cols = []; + var rows = []; + while (line.indexOf(anchor) == -1 && cur_line != lines.length) { + line = read_line(); + } + if (cur_line == lines.length) { + break; + } + table_name = line.split(anchor)[1]; + read_line() + read_line() + while (true) { + line = read_line() + if (line.length < 2 || cur_line == lines.length) { + break + } + if (line.startsWith("|")) { + arr.push(line + table_name) + } + } + + } + console.log(anchor + " entries") + console.log("API | Description | Auth | HTTPS | Link | Section") + console.log("|---|---|---|---|---|---|") + for (i = 0; i < arr.length; i++) { + console.log(arr[i]) + } + }); +} + +if (process.argv.length < 3) { + console.log("No .md file passed!"); + return; +} +if (process.argv.length < 4) { + anchorText = "###"; +} else { + anchorText = process.argv[3]; +} +setupMd(process.argv[2].toString(), anchorText); \ No newline at end of file From a3109a153d4fd0a2e222291ac20cdac1d8085f72 Mon Sep 17 00:00:00 2001 From: Dave Machado Date: Thu, 3 Aug 2017 15:18:08 -0400 Subject: [PATCH 12/19] update build script --- build/build.sh | 3 +- build/mid.md | 346 ++++++++++++ build/single_table.md | 346 ++++++++++++ json/entries.json | 1186 +++++++++++++++++++++++++---------------- json/entries.min.json | 2 +- 5 files changed, 1419 insertions(+), 464 deletions(-) create mode 100644 build/mid.md create mode 100644 build/single_table.md diff --git a/build/build.sh b/build/build.sh index 28be183d..8143315e 100755 --- a/build/build.sh +++ b/build/build.sh @@ -3,6 +3,7 @@ # create json directory if not already present mkdir -p ../json # parse API README and print (minified) JSON to stdout, redirect to /json -node md2json.js ../README.md > ../json/entries.min.json +node condenseMd.js ../README.md > single_table.md +node md2json.js single_table.md > ../json/entries.min.json # beautify the previously created JSON file, redirect to /json python -m json.tool ../json/entries.min.json > ../json/entries.json diff --git a/build/mid.md b/build/mid.md new file mode 100644 index 00000000..3efb3163 --- /dev/null +++ b/build/mid.md @@ -0,0 +1,346 @@ +### entries +API | Description | Auth | HTTPS | Link | Section +|---|---|---|---|---|---| +| Dogs | Based on the [Stanford Dogs Dataset](http://vision.stanford.edu/aditya86/ImageNetDogs/) | No | Yes | [Go!](https://dog.ceo/dog-api/) | Animals +| IUCN | IUCN Red List of Threatened Species | `apiKey` | No | [Go!](http://apiv3.iucnredlist.org/api/v3/docs) | Animals +| Petfinder | Adoption | `apiKey` | Yes | [Go!](https://www.petfinder.com/developers/api-docs/) | Animals +| RescueGroups | Adoption | No | Yes | [Go!](https://userguide.rescuegroups.org/display/APIDG/API+Developers+Guide+Home) | Animals +| AniList | AniList Anime | `OAuth` | No | [Go!](http://anilist-api.readthedocs.io/en/latest/) | Anime +| Jikan | Unofficial MyAnimeList API | No | Yes | [Go!](https://jikan.me) | Anime +| Kitsu | Anime discovery platform | `OAuth` | Yes | [Go!](http://docs.kitsu.apiary.io/) | Anime +| Studio Ghibli | Resources from Studio Ghibli films | No | Yes | [Go!](https://ghibliapi.herokuapp.com) | Anime +| AlienVault Open Threat Exchange (OTX) | IP/domain/URL reputation | `apiKey` | Yes | [Go!](https://otx.alienvault.com/api/) | Anti-Malware +| Certly | Certly Link/Domain Flagging | `apiKey` | Yes | [Go!](https://guard.certly.io/) | Anti-Malware +| Google Safe Browsing | Google Link/Domain Flagging | `apiKey` | Yes | [Go!](https://developers.google.com/safe-browsing/) | Anti-Malware +| Metacert | Metacert Link Flagging | `apiKey` | Yes | [Go!](https://metacert.com/) | Anti-Malware +| VirusTotal | VirusTotal File/URL Analysis | `apiKey` | Yes | [Go!](https://www.virustotal.com/en/documentation/public-api/) | Anti-Malware +| Web Of Trust (WOT) | Website reputation | `apiKey` | Yes | [Go!](https://www.mywot.com/wiki/API) | Anti-Malware +| Behance | Design | `apiKey` | Yes | [Go!](https://www.behance.net/dev) | Art & Design +| Dribbble | Design | `OAuth` | No | [Go!](http://developer.dribbble.com/v1/) | Art & Design +| Harvard Art Museums | Art | `apiKey` | No | [Go!](https://github.com/harvardartmuseums/api-docs) | Art & Design +| Icons8 | Icons | `OAuth` | Yes | [Go!](http://docs.icons8.apiary.io/#reference/0/meta) | Art & Design +| Noun Project | Icons | `OAuth` | No | [Go!](http://api.thenounproject.com/index.html) | Art & Design +| Rijksmuseum | Art | `apiKey` | Yes | [Go!](https://www.rijksmuseum.nl/en/api) | Art & Design +| British National Bibliography | Books | No | No | [Go!](http://bnb.data.bl.uk/) | Books +| Goodreads | Books | No | Yes | [Go!](https://www.goodreads.com/api) | Books +| Google Books | Books | `OAuth` | Yes | [Go!](https://developers.google.com/books/) | Books +| mailgun | Email Service | `apiKey` | Yes | [Go!](https://www.mailgun.com/) | Business +| markerapi | Trademark Search | No | No | [Go!](http://www.markerapi.com/) | Business +| Church Calendar | Catholic liturgical calendar | No | No | [Go!](http://calapi.inadiutorium.cz/) | Calendar +| Holidays | Historical data regarding holidays | `apiKey` | Yes | [Go!](https://holidayapi.com/) | Calendar +| LectServe | Protestant liturgical calendar | No | No | [Go!](http://www.lectserve.com) | Calendar +| Non-Working Days | Database of ICS files for non working days | No | Yes | [Go!](https://github.com/gadael/icsdb) | Calendar +| Box | File Sharing and Storage | `OAuth` | Yes | [Go!](https://developer.box.com/) | Cloud Storage & File Sharing +| Dropbox | File Sharing and Storage | `OAuth` | Yes | [Go!](https://www.dropbox.com/developers) | Cloud Storage & File Sharing +| Google Drive | File Sharing and Storage | `OAuth` | Yes | [Go!](https://developers.google.com/drive/) | Cloud Storage & File Sharing +| OneDrive | File Sharing and Storage | `OAuth` | Yes | [Go!](https://dev.onedrive.com/) | Cloud Storage & File Sharing +| Currencylayer | Exchange rates and currency conversion | `apiKey` | Yes | [Go!](https://currencylayer.com/documentation) | Currency Exchange +| Fixer.io | Exchange rates and currency conversion | No | Yes | [Go!](http://fixer.io) | Currency Exchange +| 18F | US Federal Government /Developer Program | No | No | [Go!](http://18f.github.io/API-All-the-X/) | Data Access +| Abbreviation | Get abbreviations and meanings | `X-Mashape-Key` | Yes | [Go!](https://market.mashape.com/daxeel/abbreviations) | Data Access +| CARTO | Location Information Prediction | `apiKey` | Yes | [Go!](https://carto.com/) | Data Access +| Callook.info | United States ham radio callsigns | No | Yes | [Go!](https://callook.info) | Data Access +| Celebinfo | Celebrity information | `X-Mashape-Key` | Yes | [Go!](https://market.mashape.com/daxeel/celebinfo/) | Data Access +| Colorado Data Engine | Formatted and geolocated Colorado public data | No | Yes | [Go!](http://codataengine.org/) | Data Access +| Colorado Information Marketplace | Colorado State Government Open Data | No | Yes | [Go!](https://data.colorado.gov/) | Data Access +| Datakick | The open product database | `apiKey` | Yes | [Go!](https://www.datakick.org/api) | Data Access +| Data USA | US Public Data | No | Yes | [Go!](https://datausa.io/about/api/) | Data Access +| Dronestream | Tracks United States drone strikes | No | Yes | [Go!](https://dronestre.am/) | Data Access +| fonoApi | Mobile Device Description | No | Yes | [Go!](https://fonoapi.freshpixl.com/) | Data Access +| Open Government, Australia | Australian Government Open Data | No | Yes | [Go!](https://www.data.gov.au/) | Data Access +| Open Government, USA | United States Government Open Data | No | Yes | [Go!](https://www.data.gov/) | Data Access +| Open Government, Canada | Canadian Government Open Data | No | No | [Go!](http://open.canada.ca/en) | Data Access +| Open Government Data, India | Indian Government Open Data | `apiKey` | Yes | [Go!](https://data.gov.in/) | Data Access +| Open Government, New Zealand | New Zealand Government Open Data | No | Yes | [Go!](https://www.data.govt.nz/) | Data Access +| Outpan | A Database of Everything | `apiKey` | Yes | [Go!](https://outpan.mixnode.com/developers) | Data Access +| Pearson | Dictionary Data | `apiKey` | No | [Go!](http://developer.pearson.com/apis/dictionaries) | Data Access +| Prague Opendata | Prague City Open Data | No | No | [Go!](http://opendata.praha.eu/en) | Data Access +| Quandl | Stock Market Data | No | Yes | [Go!](https://www.quandl.com/) | Data Access +| Represent by Open North | Find Canadian Government Representatives | No | Yes | [Go!](https://represent.opennorth.ca/) | Data Access +| Scoop.it | Content Curation Service | `apiKey` | No | [Go!](http://www.scoop.it/dev) | Data Access +| Teleport | Quality of Life Data | No | Yes | [Go!](https://developers.teleport.org/) | Data Access +| UPC database | More than 1.5 million barcode numbers from all around the world | `apiKey` | Yes | [Go!](https://upcdatabase.org/api) | Data Access +| Wikipedia | Mediawiki Encyclopedia | No | Yes | [Go!](https://www.mediawiki.org/wiki/API:Main_page) | Data Access +| Wordnik | Dictionary Data | No | No | [Go!](http://developer.wordnik.com) | Data Access +| Yelp | Find Local Business | `OAuth` | Yes | [Go!](https://www.yelp.com/developers/documentation/v3) | Data Access +| languagelayer | Language detection | No | Yes | [Go!](https://languagelayer.com) | Data Validation +| Lob.com | US Address Verification | `apiKey` | Yes | [Go!](https://lob.com/) | Data Validation +| mailboxlayer | Email address validation | No | Yes | [Go!](https://mailboxlayer.com) | Data Validation +| numverify | Phone number validation | No | Yes | [Go!](https://numverify.com) | Data Validation +| vatlayer | VAT number validation | No | Yes | [Go!](https://vatlayer.com) | Data Validation +| Adorable Avatars | Generate random cartoon avatars | No | Yes | [Go!](http://avatars.adorable.io) | Development +| APIs.guru | Wikipedia for Web APIs, OpenAPI/Swagger specs for public APIs | No | Yes | [Go!](https://apis.guru/api-doc/) | Development +| BetterMeta | Return a site's meta tags in JSON format | X-Mashape-Key | Yes | [Go!](http://bettermeta.io) | Development +| Changelogs.md | Structured changelog metadata from open source projects | No | Yes | [Go!](https://changelogs.md) | Development +| CDNJS | Library info on CDNJS | No | Yes | [Go!](https://api.cdnjs.com/libraries/jquery) | Development +| Faceplusplus | A tool to detect face | `OAuth` | Yes | [Go!](https://www.faceplusplus.com/) | Development +| Genderize.io | Determines a gender from a first name | No | Yes | [Go!](https://genderize.io) | Development +| Github - User Data | Pull public information for a user's github | No | Yes | [Go!](https://api.github.com/users/hackeryou) | Development +| Gitter | Chat for GitHub | `OAuth` | Yes | [Go!](https://github.com/gitterHQ/docs) | Development +| HackerRank | Compile source code and run against a set of provided test cases | `apiKey` | Yes | [Go!](https://www.hackerrank.com/api/docs) | Development +| Hipster Ipsum | Generates Hipster Ipsum text | No | No | [Go!](http://hipsterjesus.com/) | Development +| IPify | A simple IP Address API | No | Yes | [Go!](https://www.ipify.org/) | Development +| JSON 2 JSONP | Convert JSON to JSONP (on-the-fly) for easy cross-domain data requests using client-side JavaScript | No | Yes | [Go!](https://json2jsonp.com/) | Development +| JSONbin.io | Free JSON storage service. Ideal for small scale Web apps, Websites and Mobile apps | No | Yes | [Go!](https://jsonbin.io) | Development +| JSONPlaceholder | Fake data for testing and prototyping | No | No | [Go!](http://jsonplaceholder.typicode.com/) | Development +| Judge0 API | Compile and run source code | No | Yes | [Go!](https://api.judge0.com/) | Development +| Kairos | Face Recognition and Emotion Analysis | `apiKey` | Yes | [Go!](https://www.kairos.com/features) | Development +| Let's Validate | Uncovers the technologies used on websites and URL to thumbnail | No | Yes | [Go!](https://github.com/letsvalidate/api) | Development +| LiveEdu | Live Coding Streaming | `OAuth` | Yes | [Go!](https://www.liveedu.tv/developer/applications/) | Development +| Lorem Text | Generates Lorem Ipsum text | `X-Mashape-Key` | Yes | [Go!](https://market.mashape.com/montanaflynn/lorem-text-generator) | Development +| Loripsum | The "lorem ipsum" generator that doesn't suck | No | No | [Go!](http://loripsum.net/) | Development +| Myjson | A simple JSON store for your web or mobile app | No | No | [Go!](http://myjson.com/api) | Development +| Plino | Spam filtering system | No | Yes | [Go!](https://plino.herokuapp.com/) | Development +| Public APIs | A collective list of free JSON APIs for use in web development | No | Yes | [Go!](https://github.com/toddmotto/public-apis/tree/master/json) | Development +| Random Word | Generate random word | No | No | [Go!](http://www.setgetgo.com/randomword/) | Development +| RandomUser | Generates random user data | No | Yes | [Go!](https://randomuser.me) | Development +| ReqRes | A hosted REST-API ready to respond to your AJAX requests | No | Yes | [Go!](https://reqres.in/ ) | Development +| RoboHash | Generate random robot/alien avatars | No | Yes | [Go!](https://robohash.org/) | Development +| StackExchange | Q&A forum for developers | `OAuth` | Yes | [Go!](https://api.stackexchange.com/) | Development +| Stormpath | User Authentication | `apiKey` | Yes | [Go!](https://stormpath.com/) | Development +| UI Names | Generate random fake names | No | Yes | [Go!](https://github.com/thm/uinames) | Development +| Verse | Check what's the latest version of your favorite open-source project | No | Yes | [Go!](https://verse.pawelad.xyz/) | Development +| File.io | File Sharing | No | Yes | [Go!](https://www.file.io) | Documents & Productivity +| pdflayer API | HTML/URL to PDF | No | Yes | [Go!](https://pdflayer.com) | Documents & Productivity +| Pocket | Bookmarking service | `OAuth` | Yes | [Go!](https://getpocket.com/developer/) | Documents & Productivity +| PrexView | Data from XML or JSON to PDF, HTML or Image | `apiKey` | Yes | [Go!](https://prexview.com) | Documents & Productivity +| Todoist | Todo Lists | `OAuth` | Yes | [Go!](https://developer.todoist.com) | Documents & Productivity +| Wunderlist | Todo Lists | `OAuth` | Yes | [Go!](https://developer.wunderlist.com/documentation) | Documents & Productivity +| AirVisual | Air quality and weather data | `apiKey` | Yes | [Go!](https://airvisual.com/api) | Environment +| OpenAQ | Open air quality data | `apiKey` | Yes | [Go!](https://docs.openaq.org/) | Environment +| PM2.5.in | Air quality of China | `apiKey` | No | [Go!](http://www.pm25.in/api_doc) | Environment +| Barchart OnDemand | Stock, Futures, and Forex Market Data | `apiKey` | Yes | [Go!](https://www.barchartondemand.com/free) | Finance +| CoinDesk | Bitcoin Price Index | No | No | [Go!](http://www.coindesk.com/api/) | Finance +| Consumer Financial Protection Bureau | Financial services consumer complains data | `apiKey` | Yes | [Go!](https://data.consumerfinance.gov/resource/jhzv-w97w.json) | Finance +| IEX | Stocks and Market Data | No | Yes | [Go!](https://iextrading.com/developer/) | Finance +| Razorpay IFSC | Indian Financial Systems Code (Bank Branch Codes) | No | Yes | [Go!](https://ifsc.razorpay.com/) | Finance +| BigOven | Recipe Search | `X-Mashape-Key` | No | [Go!](http://api2.bigoven.com/) | Food & Drink +| BreweryDB | Beer | `apiKey` | No | [Go!](http://www.brewerydb.com/developers) | Food & Drink +| Edamam | Recipe Search | `apiKey` | Yes | [Go!](https://developer.edamam.com/) | Food & Drink +| Food2Fork | Recipe Search | `apiKey` | No | [Go!](http://food2fork.com/about/api) | Food & Drink +| LCBO | Alcohol | `apiKey` | Yes | [Go!](https://lcboapi.com/) | Food & Drink +| PunkAPI | Brewdog Beer Recipes | No | Yes | [Go!](https://punkapi.com/) | Food & Drink +| Recipe Puppy | Food | No | No | [Go!](http://www.recipepuppy.com/about/api/) | Food & Drink +| TacoFancy | Community-driven taco database | No | No | [Go!](https://github.com/evz/tacofancy-api) | Food & Drink +| TheCocktailDB | Cocktail Recipes | No | No | [Go!](http://www.thecocktaildb.com/) | Food & Drink +| The Report of the Week | Food & Drink Reviews | No | Yes | [Go!](https://github.com/andyklimczak/TheReportOfTheWeek-API) | Food & Drink +| What's on the menu? | NYPL human-transcribed historical menu collection | `apiKey` | No | [Go!](nypl.github.io/menus-api/) | Food & Drink +| Yummly | Find food recipes | No | Yes | [Go!](https://developer.yummly.com/) | Food & Drink +| Zomato | Discover restaurants | `apiKey` | Yes | [Go!](https://developers.zomato.com/api) | Food & Drink +| Whitepages Pro | Global identity verification with phone, address, email, and IP | `apiKey` | Yes | [Go!](https://pro.whitepages.com/developer/documentation/identity-check-api/) | Fraud Prevention +| Whitepages Pro | Phone reputation to detect spammy phones | `apiKey` | Yes | [Go!](https://pro.whitepages.com/developer/documentation/phone-reputation-api/) | Fraud Prevention +| Whitepages Pro | Get an owner’s name, address, demographics based on the phone number | `apiKey` | Yes | [Go!](https://pro.whitepages.com/developer/documentation/reverse-phone-api/) | Fraud Prevention +| Whitepages Pro | Phone number validation, line_type, carrier append | `apiKey` | Yes | [Go!](https://pro.whitepages.com/developer/documentation/phone-intelligence-api/) | Fraud Prevention +| Whitepages Pro | Get normalized physical address, residents, address type, and validity | `apiKey` | Yes | [Go!](https://pro.whitepages.com/developer/documentation/reverse-address-api/) | Fraud Prevention +| Battle.net | Blizzard Entertainment | No | Yes | [Go!](https://dev.battle.net/) | Games & Comics +| Battlefield 4 | Battlefield 4 Information | No | Yes | [Go!](https://bf4stats.com/api) | Games & Comics +| Chuck Norris Database | Jokes | No | No | [Go!](http://www.icndb.com/api/) | Games & Comics +| Clash of Clans | Clash of Clans Game Information | No | Yes | [Go!](https://developer.clashofclans.com) | Games & Comics +| Clash Royale | Clash Royale Game Information | No | Yes | [Go!](https://github.com/martincarrera/clash-royale-api) | Games & Comics +| Comic Vine | Comics | No | Yes | [Go!](https://comicvine.gamespot.com/api/documentation) | Games & Comics +| Deck of Cards | Deck of Cards | No | No | [Go!](http://deckofcardsapi.com/) | Games & Comics +| Destiny The Game | Bungie Platform API | `apiKey` | Yes | [Go!](https://www.bungie.net/en/Clan/Post/39966/85087279/0/0) | Games & Comics +| Eve Online | Third-Party Developer Documentation | `OAuth` | Yes | [Go!](https://eveonline-third-party-documentation.readthedocs.io/en/latest/) | Games & Comics +| Giant Bomb | Video Games | No | Yes | [Go!](https://www.giantbomb.com/api/documentation) | Games & Comics +| Guild Wars 2 | Guild Wars 2 Game Information | `apiKey` | Yes | [Go!](https://wiki.guildwars2.com/wiki/API:Main) | Games & Comics +| Jservice | Jeopardy Question Database | No | No | [Go!](http://jservice.io) | Games & Comics +| Magic The Gathering | Magic The Gathering Game Information | No | No | [Go!](http://magicthegathering.io/) | Games & Comics +| Marvel | Marvel Comics | `apiKey` | No | [Go!](http://developer.marvel.com) | Games & Comics +| Minecraft | Minecraft server info & user info) | No | Yes | [Go!](https://mcapi.ca/) | Games & Comics +| Open Trivia | Trivia Questions | No | Yes | [Go!](https://opentdb.com/api_config.php) | Games & Comics +| PandaScore | E-sports games and results | `apiKey` | Yes | [Go!](https://api.pandascore.co) | Games & Comics +| Pokéapi | Pokémon Information | No | No | [Go!](http://pokeapi.co) | Games & Comics +| Qriusity | Quiz/Trivia Questions | No | Yes | [Go!](https://qriusity.com/) | Games & Comics +| Riot Games | League of Legends Game Information | `apiKey` | Yes | [Go!](https://developer.riotgames.com/) | Games & Comics +| Steam | Steam Client Interaction | `OAuth` | Yes | [Go!](https://developer.valvesoftware.com/wiki/Steam_Web_API) | Games & Comics +| adresse.data.gouv.fr | Address database of France, geocoding, and reverse | No | Yes | [Go!](https://adresse.data.gouv.fr) | Geocoding +| Bing Maps | Create/customize digital maps based on Bing Maps data | `apiKey` | Yes | [Go!](https://www.microsoft.com/maps/) | Geocoding +| Geocode.xyz | Provides worldwide forward/reverse geocoding, batch geocoding and geoparsing | No | Yes | [Go!](https://geocode.xyz/) | Geocoding +| GeoNames | Place names and other geographical data | No | No | [Go!](http://www.geonames.org/export/web-services.html) | Geocoding +| GéoApi | French geographical data | No | Yes | [Go!](https://api.gouv.fr/api/geoapi.html) | Geocoding +| Google Maps | Create/customize digital maps based on Google Maps data | `apiKey` | Yes | [Go!](https://developers.google.com/maps/) | Geocoding +| IP 2 Country | Map an IP to a country | No | Yes | [Go!](https://ip2country.info) | Geocoding +| IP Address Details | Find geolocation with ip address | No | Yes | [Go!](https://ipinfo.io/) | Geocoding +| IP Location | Find IP address location information | No | Yes | [Go!](https://ipapi.co/) | Geocoding +| IP Vigilante | Free IP Geolocation API | No | Yes | [Go!](https://www.ipvigilante.com/) | Geocoding +| Mapbox | Create/customize beautiful digital maps | `apiKey` | Yes | [Go!](https://www.mapbox.com/developers/) | Geocoding +| Mapzen Search | Open Source & Open Data Global Geocoding Service | `apiKey` | Yes | [Go!](https://mapzen.com/products/search/) | Geocoding +| Mexico | Mexico RESTful zip codes API | No | Yes | [Go!](https://github.com/IcaliaLabs/sepomex) | Geocoding +| One Map 2.0, Singapore | Singapore Land Authority REST API services for Singapore addresses | `apiKey` | Yes | [Go!](https://docs.onemap.sg/) | Geocoding +| OnWater | Determine if a lat/lon is on water or land | No | Yes | [Go!](https://onwater.io/) | Geocoding +| OpenCage | Forward and reverse geocoding using open data | No | Yes | [Go!](https://geocoder.opencagedata.com) | Geocoding +| OpenStreetMap | Navigation, geolocation and geographical data | `OAuth` | No | [Go!](http://wiki.openstreetmap.org/wiki/API) | Geocoding +| PostcodeData.nl | Provide geolocation data based on postcode for Dutch addresses | No | No | [Go!](http://api.postcodedata.nl/v1/postcode/?postcode=1211EP&streetnumber=60&ref=domeinnaam.nl&type=json) | Geocoding +| Postcodes.io | Postcode lookup & Geolocation for the UK | No | Yes | [Go!](https://postcodes.io) | Geocoding +| REST Countries | Get information about countries via a RESTful API | No | Yes | [Go!](https://restcountries.eu) | Geocoding +| Utah AGRC | Utah Web API for geocoding Utah addresses | `apiKey` | Yes | [Go!](https://api.mapserv.utah.gov) | Geocoding +| ViaCep | Brazil RESTful zip codes API | No | Yes | [Go!](https://viacep.com.br) | Geocoding +| Zippopotam | Get information about place such as country, city, state, etc | No | No | [Go!](http://www.zippopotam.us) | Geocoding +| Diabetes | Logging and retrieving diabetes information | No | No | [Go!](http://predictbgl.com/api/) | Health +| Flutrack | Influenza-like symptoms with geotracking | No | No | [Go!](http://www.flutrack.org/) | Health +| Makeup | Makeup Information | No | No | [Go!](http://makeup-api.herokuapp.com/) | Health +| Medicare | Access to the data from the CMS - medicare.gov | No | Yes | [Go!](https://data.medicare.gov/developers) | Health +| Nutritionix | Worlds largest verified nutrition database | `apiKey` | Yes | [Go!](https://developer.nutritionix.com/) | Health +| openFDA | Public FDA data about drugs, devices, and foods | No | Yes | [Go!](https://open.fda.gov/api/) | Health +| USDA Nutrients | National Nutrient Database for Standard Reference | No | Yes | [Go!](https://ndb.nal.usda.gov/ndb/doc/index) | Health +| API.AI | Natural Language Processing | `apiKey` | Yes | [Go!](https://api.ai/) | Machine Learning +| Clarifai | Computer Vision | `OAuth` | Yes | [Go!](https://developer.clarifai.com/) | Machine Learning +| Cleverbot | Web chat bot | `apiKey` | Yes | [Go!](https://www.cleverbot.com/api/) | Machine Learning +| Keen IO | Data Analytics | `apiKey` | Yes | [Go!](https://keen.io/) | Machine Learning +| Unplugg | Forecasting API for timeseries data | `apiKey` | Yes | [Go!](https://unplu.gg/test_api.html) | Machine Learning +| Wit.ai | Natural Language Processing | `OAuth` | Yes | [Go!](https://wit.ai/) | Machine Learning +| Newton | Symbolic and Arithmetic Math Calculator | No | Yes | [Go!](https://newton.now.sh/) | Math +| Numbers API | Facts about numbers | No | No | [Go!](http://numbersapi.com) | Math +| Bandsintown | Music Events | No | Yes | [Go!](https://app.swaggerhub.com/apis/Bandsintown/PublicAPI/3.0.0) | Music +| Deezer | Music | `OAuth` | No | [Go!](http://developers.deezer.com/login?redirect=/api) | Music +| Discogs | Music | `OAuth` | Yes | [Go!](https://www.discogs.com/developers/) | Music +| Genius | Crowdsourced lyrics and music knowledge | `OAuth` | Yes | [Go!](https://docs.genius.com/) | Music +| Jamendo | Music | `OAuth` | Yes | [Go!](https://developer.jamendo.com/v3.0) | Music +| iTunes Search | Software products | No | Yes | [Go!](https://affiliate.itunes.apple.com/resources/documentation/itunes-store-web-service-search-api/) | Music +| LastFm | Music | `apiKey` | No | [Go!](http://www.last.fm/api) | Music +| Mixcloud | Music | No | Yes | [Go!](https://www.mixcloud.com/developers/) | Music +| MusicBrainz | Music | No | Yes | [Go!](https://musicbrainz.org/doc/Development/XML_Web_Service/Version_2) | Music +| Musikki | Music | `apiKey` | Yes | [Go!](https://music-api.musikki.com/reference) | Music +| Musixmatch | Music | `apiKey` | Yes | [Go!](https://developer.musixmatch.com/) | Music +| Songkick | Music Events | `OAuth` | Yes | [Go!](https://www.songkick.com/developer/) | Music +| Songsterr | Provides guitar, bass and drums tabs and chords | No | Yes | [Go!](https://www.songsterr.com/a/wa/api/) | Music +| Soundcloud | Music | No | Yes | [Go!](https://developers.soundcloud.com/) | Music +| Spotify | Music | `OAuth` | Yes | [Go!](https://developer.spotify.com/web-api/) | Music +| Vagalume | Crowdsourced lyrics and music knowledge | `apiKey` | Yes | [Go!](https://api.vagalume.com.br/docs/) | Music +| Chronicling America | Provides access to millions of pages of historic US newspapers from the Library of Congress | No | No | [Go!](http://chroniclingamerica.loc.gov/about/api/) | News +| New York Times | Provides news | `apiKey` | Yes | [Go!](https://developer.nytimes.com/) | News +| News API | Headlines currently published on a range of news sources and blogs | `apiKey` | Yes | [Go!](https://newsapi.org/) | News +| The Guardian | Access all the content the Guardian creates, categorised by tags and section | `apiKey` | Yes | [Go!](http://open-platform.theguardian.com/) | News +| Countly | Countly web analytics | No | No | [Go!](http://resources.count.ly/docs) | Open Source projects +| Drupal.org | Drupal.org | No | Yes | [Go!](https://www.drupal.org/drupalorg/docs/api) | Open Source projects +| Libraries.io | Open source software libraries | `apiKey` | Yes | [Go!](https://libraries.io/api) | Open Source projects +| chucknorris.io | JSON API for hand curated Chuck Norris jokes | No | Yes | [Go!](https://api.chucknorris.io) | Personality +| Forismatic | Inspirational Quotes | No | No | [Go!](http://forismatic.com/en/api/) | Personality +| icanhazdadjoke | The largest selection of dad jokes on the internet | No | Yes | [Go!](https://icanhazdadjoke.com/api) | Personality +| Medium | Community of readers and writers offering unique perspectives on ideas | `OAuth` | Yes | [Go!](https://github.com/Medium/medium-api-docs) | Personality +| Quotes on Design | Inspirational Quotes | No | Yes | [Go!](https://quotesondesign.com/api-v4-0/) | Personality +| Traitify | Assess, collect, and analyze Personality | No | Yes | [Go!](https://app.traitify.com/developer) | Personality +| tronalddump.io | Api & web archive for the things Donald Trump has said | No | Yes | [Go!](https://www.tronalddump.io) | Personality +| 500px | Photography Community | `OAuth` | Yes | [Go!](https://github.com/500px/api-documentation) | Photography +| Flickr | Flickr Services | `OAuth` | Yes | [Go!](https://www.flickr.com/services/api/) | Photography +| Gfycat | Jiffier GIFs | `OAuth` | Yes | [Go!](https://developers.gfycat.com/api/) | Photography +| Giphy | Get all your gifs | No | Yes | [Go!](https://github.com/Giphy/GiphyAPI) | Photography +| Imgur | Images | `OAuth` | Yes | [Go!](https://api.imgur.com/#overview) | Photography +| ScreenShotLayer | URL 2 Image | No | Yes | [Go!](https://screenshotlayer.com) | Photography +| Unsplash | Photography | `OAuth` | Yes | [Go!](https://unsplash.com/developers) | Photography +| PlaceKitten | Resizable kitten placeholder images | No | Yes | [Go!](https://placekitten.com/) | Photography +| arcsecond.io | Multiple astronomy data sources | No | Yes | [Go!](https://api.arcsecond.io/) | Science +| CORE | Access the world's Open Access research papers | `apiKey` | Yes | [Go!](https://core.ac.uk/services#api) | Science +| Fedger.io | Query machine intelligence data | No | Yes | [Go!](https://dev.fedger.io/docs/) | Science +| inspirehep.net | High Energy Physics info. system | No | Yes | [Go!](https://inspirehep.net/info/hep/api?ln=en) | Science +| Launch Library | Upcoming Space Launches | No | Yes | [Go!](https://launchlibrary.net/1.2/docs/api.html) | Science +| Minor Planet Center | Asterank.com Information | No | No | [Go!](http://www.asterank.com/mpc) | Science +| NASA | NASA data, including imagery | No | Yes | [Go!](https://api.nasa.gov) | Science +| Open Notify | ISS astronauts, current location, etc | No | No | [Go!](http://open-notify.org/Open-Notify-API/) | Science +| Sunrise and Sunset | Sunset and sunrise times for a given latitude and longitude | No | Yes | [Go!](https://sunrise-sunset.org/api) | Science +| USGS Earthquake Hazards Program | Earthquakes data real-time | No | Yes | [Go!](https://earthquake.usgs.gov/fdsnws/event/1/) | Science +| USGS Water Services | Water quality and level info for rivers and lakes | No | Yes | [Go!](https://waterservices.usgs.gov/) | Science +| World Bank | World Data | No | No | [Go!](https://datahelpdesk.worldbank.org/knowledgebase/topics/125589) | Science +| AXFR Database | AXFR public database | No | No | [Go!](http://api.axfrcheck.com) | Security +| UK Police | UK Police data | No | Yes | [Go!](https://data.police.uk/docs/) | Security +| eBay | Sell and Buy on eBay | `OAuth` | Yes | [Go!](https://go.developer.ebay.com/) | Shopping +| Cisco Spark | Team Collaboration Software | `OAuth` | Yes | [Go!](https://developer.ciscospark.com) | Social +| Discord | Make bots for Discord, integrate Discord onto an external platform | `OAuth` | Yes | [Go!](https://discordapp.com/developers/docs/intro) | Social +| DonReach Social Count | Get the social share count of a URL from every major social network | No | Yes | [Go!](https://donreach.com/social-share-count/) | Social +| Facebook | Facebook Login, Share on FB, Social Plugins, Analytics and more | `OAuth` | Yes | [Go!](https://developers.facebook.com/) | Social +| Foursquare | Interact with Foursquare users and places (geolocation-based checkins, photos, tips, events, etc) | `OAuth` | Yes | [Go!](https://developer.foursquare.com/) | Social +| Fuck Off as a Service | Asks someone to fuck off | No | Yes | [Go!](https://www.foaas.com) | Social +| Full Contact | Get Social Media profiles and contact Information | `OAuth` | Yes | [Go!](https://www.fullcontact.com/developer/docs/) | Social +| HackerNews | Social news for CS and entrepreneurship | No | Yes | [Go!](https://github.com/HackerNews/API) | Social +| Instagram | Instagram Login, Share on Instagram, Social Plugins and more | `OAuth` | Yes | [Go!](https://www.instagram.com/developer/) | Social +| LinkedIn | The foundation of all digital integrations with LinkedIn | `OAuth` | Yes | [Go!](https://developer.linkedin.com/docs/rest-api) | Social +| Meetup.com | Data about Meetups from Meetup.com | `apiKey` | Yes | [Go!](https://www.meetup.com/meetup_api/) | Social +| Telegram MTProto | Read and write Telegram data | `OAuth` | Yes | [Go!](https://core.telegram.org/api#getting-started) | Social +| Telegram bot | Simplified HTTP version of the MTProto API for bots | `OAuth` | Yes | [Go!](https://core.telegram.org/bots/api) | Social +| Pinterest | The world's catalog of ideas | `OAuth` | Yes | [Go!](https://developers.pinterest.com/) | Social +| PWRTelegram bot | Boosted version of the Telegram bot API | `OAuth` | Yes | [Go!](https://pwrtelegram.xyz) | Social +| Reddit | Homepage of the internet | `OAuth` | Yes | [Go!](https://www.reddit.com/dev/api) | Social +| Slack | Team Instant Messaging | `OAuth` | Yes | [Go!](https://api.slack.com/) | Social +| Tumblr | Read and write Tumblr Data | `OAuth` | Yes | [Go!](https://www.tumblr.com/docs/en/api/v2) | Social +| Twitch | Game Streaming API | `OAuth` | Yes | [Go!](https://github.com/justintv/Twitch-API) | Social +| Twitter | Read and write Twitter data | `OAuth` | Yes | [Go!](https://dev.twitter.com/rest/public) | Social +| vk | Read and write vk data | `OAuth` | Yes | [Go!](https://vk.com/dev/sites) | Social +| Cartola FC | The Cartola FC API serves to check the partial points of your team | No | Yes | [Go!](https://github.com/wgenial/cartrolandofc) | Sports & Fitness +| City Bikes | City Bikes around the world | No | No | [Go!](http://api.citybik.es/v2/) | Sports & Fitness +| Ergast F1 | F1 data from the beginning of the world championships in 1950 | No | No | [Go!](http://ergast.com/mrd/) | Sports & Fitness +| Fitbit | Fitbit Information | `OAuth` | Yes | [Go!](https://dev.fitbit.com/) | Sports & Fitness +| Football-Data.org | Football Data | No | No | [Go!](http://api.football-data.org/index) | Sports & Fitness +| JCDecaux Bike | JCDecaux's self-service bicycles | `apiKey` | Yes | [Go!](https://developer.jcdecaux.com/) | Sports & Fitness +| Cricket Live Scores | Live cricket scores | `X-Mashape-Key` | Yes | [Go!](https://market.mashape.com/dev132/cricket-live-scores) | Sports & Fitness +| NFL Arrests | NFL Arrest Data | No | No | [Go!](http://nflarrest.com/api/) | Sports & Fitness +| Pro Motocross | The RESTful AMA Pro Motocross lap times for every racer on the start gate | No | No | [Go!](http://promotocrossapi.com) | Sports & Fitness +| Strava | Connect with athletes, activities and more | `OAuth` | Yes | [Go!](https://strava.github.io/api/) | Sports & Fitness +| UFC Data | Ultimate Fighting Championship information for events and fighters | No | No | [Go!](http://ufc-data-api.ufc.com/) | Sports & Fitness +| Wger | Workout manager data as exercises, muscles or equipment | `apiKey` | Yes | [Go!](https://wger.de/en/software/api) | Sports & Fitness +| Postmon | An API to query Brazilian ZIP codes and orders easily, quickly and free | No | No | [Go!](http://postmon.com.br) | Tracking +| Sweden | Provides information about parcels in transport | `apiKey` | No | [Go!](https://developer.postnord.com/docs2) | Tracking +| ADS-B Exchange | Access real-time and historical data of any and all airbone aircraft | No | Yes | [Go!](https://www.adsbexchange.com/data/) | Transportation +| Amadeus Travel Innovation Sandbox | Travel Search - Limited usage | `apiKey` | Yes | [Go!](https://sandbox.amadeus.com/) | Transportation +| Bay Area Rapid Transit | Stations and predicted arrivals for BART | `apiKey` | No | [Go!](http://api.bart.gov) | Transportation +| Community Transit | Transitland API | No | Yes | [Go!](https://github.com/transitland/transitland-datastore/blob/master/README.md#api-endpoints) | Transportation +| Goibibo | API for travel search | `apiKey` | Yes | [Go!](https://developer.goibibo.com/docs) | Transportation +| Indian Railways | Indian Railways Information | `apiKey` | No | [Go!](http://api.erail.in/) | Transportation +| Izi | Audio guide for travellers | `apiKey` | Yes | [Go!](http://api-docs.izi.travel/) | Transportation +| Navitia | The open API for building cool stuff with transport data | `apiKey` | Yes | [Go!](https://api.navitia.io/) | Transportation +| The Nomad List | A list of the best places to live/work remotely | No | Yes | [Go!](https://nomadlist.com/faq) | Transportation +| Schiphol Airport | Schiphol | `apiKey` | Yes | [Go!](https://developer.schiphol.nl/) | Transportation +| TransitLand | Transit Aggregation | No | Yes | [Go!](https://transit.land/documentation/datastore/api-endpoints.html) | Transportation +| Transport for Atlanta, US | Marta | No | No | [Go!](http://www.itsmarta.com/app-developer-resources.aspx) | Transportation +| Transport for Auckland, New Zealand | Auckland Transport | No | Yes | [Go!](https://api.at.govt.nz/) | Transportation +| Transport for Belgium | Belgian transport API | No | Yes | [Go!](https://hello.irail.be/api/) | Transportation +| Transport for Berlin, Germany | Third-party VBB API | No | Yes | [Go!](https://github.com/derhuerst/vbb-rest/blob/master/docs/index.md) | Transportation +| Transport for Boston, US | MBTA API | No | No | [Go!](http://realtime.mbta.com/Portal/Home/Documents) | Transportation +| Transport for Budapest, Hungary | Budapest public transport API | No | Yes | [Go!](https://apiary.io/) | Transportation +| Transport for Chicago, US | CTA | No | No | [Go!](http://www.transitchicago.com/developers/) | Transportation +| Transport for Czech Republic | Czech transport API | No | Yes | [Go!](https://www.chaps.cz/eng/products/idos-internet) | Transportation +| Transport for Denver, US | RTD | No | No | [Go!](http://www.rtd-denver.com/gtfs-developer-guide.shtml) | Transportation +| Transport for Finland | Finnish transport API | No | Yes | [Go!](https://digitransit.fi/en/developers/ ) | Transportation +| Transport for Germany | Deutsche Bahn (DB) API | `apiKey` | No | [Go!](http://data.deutschebahn.com/dataset/api-fahrplan) | Transportation +| Transport for India | India Public Transport API | `apiKey` | Yes | [Go!](https://data.gov.in/sector/transport) | Transportation +| Transport for London, England | TfL API | No | Yes | [Go!](https://api.tfl.gov.uk) | Transportation +| Transport for Madrid, Spain | Madrid BUS transport API | `apiKey` | No | [Go!](http://opendata.emtmadrid.es/Servicios-web/BUS) | Transportation +| Transport for Minneapolis, US | NexTrip API | `OAuth` | No | [Go!](http://svc.metrotransit.org/) | Transportation +| Transport for The Netherlands | NS, only trains | `apiKey` | No | [Go!](http://www.ns.nl/reisinformatie/ns-api) | Transportation +| Transport for The Netherlands | OVAPI, country-wide public transport | No | Yes | [Go!](https://github.com/skywave/KV78Turbo-OVAPI/wiki) | Transportation +| Transport for New York City, US | MTA | `apiKey` | No | [Go!](http://datamine.mta.info/) | Transportation +| Transport for Norway | Norwegian transport API | No | No | [Go!](http://reisapi.ruter.no/help) | Transportation +| Transport for Ottawa, Canada | OC Transpo next bus arrival API | No | No | [Go!](http://www.octranspo.com/index.php/developers) | Transportation +| Transport for Paris, France | RATP Open Data API | No | No | [Go!](http://data.ratp.fr/api/v1/console/datasets/1.0/search/) | Transportation +| Transport for Paris, France | Live schedules made simple | No | No | [Go!](http://restratpws.azurewebsites.net/swagger/) | Transportation +| Transport for Philadelphia, US | SEPTA APIs | No | No | [Go!](http://www3.septa.org/hackathon/) | Transportation +| Transport for Rio de Janeiro, Brazil | Prefeitura do Rio (City Hall) | No | No | [Go!](http://data.rio/group/transporte-e-mobilidade) | Transportation +| Transport for São Paulo, Brazil | SPTrans | `OAuth` | No | [Go!](http://www.sptrans.com.br/desenvolvedores/APIOlhoVivo/Documentacao.aspx) | Transportation +| Transport for Sweden | Public Transport consumer | `OAuth` | Yes | [Go!](https://www.trafiklab.se/api) | Transportation +| Transport for Switzerland | Swiss public transport API | No | Yes | [Go!](https://transport.opendata.ch/) | Transportation +| Transport for Switzerland | Official Swiss Public Transport Open Data | `apiKey` | Yes | [Go!](https://opentransportdata.swiss/en/) | Transportation +| Transport for Tokyo, Japan | Tokyo Metro | `apiKey` | Yes | [Go!](https://developer.tokyometroapp.jp/info) | Transportation +| Transport for Toronto, Canada | TTC | No | Yes | [Go!](https://myttc.ca/developers) | Transportation +| Transport for Vancouver, Canada | TransLink | `OAuth` | Yes | [Go!](https://developer.translink.ca/) | Transportation +| Transport for U.S. (multiple locations) | NextBus API | No | No | [Go!](http://www.nextbus.com/xmlFeedDocs/NextBusXMLFeed.pdf) | Transportation +| Transport for Victoria, AU | PTV API | `apiKey` | Yes | [Go!](https://www.ptv.vic.gov.au/about-ptv/ptv-data-and-reports/digital-products/ptv-timetable-api/) | Transportation +| Transport for Washington, US | Washington Metro transport API | `OAuth` | Yes | [Go!](https://developer.wmata.com/) | Transportation +| Uber | Request Uber rides, reach riders, transport things, and reward drivers | `OAuth` | Yes | [Go!](https://developer.uber.com/) | Transportation +| WhereIsMyTransport | Platform for public transport data in emerging cities | `OAuth` | Yes | [Go!](https://developer.whereismytransport.com/) | Transportation +| Universities List | University names, countries and domains | No | Yes | [Go!](https://github.com/Hipo/university-domains-list) | University +| Vehicles | Lot of vehicles information | `apiKey` | No | [Go!](http://developer.edmunds.com/api-documentation/overview/) | Vehicle +| Brazilian Vehicles and Prices | Vehicles information from Fundação Instituto de Pesquisas Econômicas - Fipe | No | Yes | [Go!](https://deividfortuna.github.io/fipe/) | Vehicle +| NHTSA Vehicles | NHTSA Product Information Catalog and Vehicle Listing | No | Yes | [Go!](https://vpic.nhtsa.dot.gov/api/) | Vehicle +| An API of Ice And Fire | Game Of Thrones API | No | Yes | [Go!](https://anapioficeandfire.com/) | Video +| Dailymotion | Dailymotion Developer API | `OAuth` | Yes | [Go!](https://developer.dailymotion.com/) | Video +| Netflix Roulette | Netflix database | No | Yes | [Go!](https://netflixroulette.net/api/) | Video +| Ron Swanson Quotes | Television | No | Yes | [Go!](https://github.com/jamesseanwright/ron-swanson-quotes#ron-swanson-quotes-api) | Video +| SWAPI | Star Wars Information | No | Yes | [Go!](https://swapi.co) | Video +| TMDb | Community-based movie data | `apiKey` | Yes | [Go!](https://www.themoviedb.org/documentation/api) | Video +| TVMaze | TV Show Data | No | No | [Go!](http://www.tvmaze.com/api) | Video +| Vimeo | Vimeo Developer API | `OAuth` | Yes | [Go!](https://developer.vimeo.com/) | Video +| YouTube | Add YouTube functionality to your sites and apps | `OAuth` | Yes | [Go!](https://developers.google.com/youtube/) | Video +| Dark Sky | Weather | `apiKey` | Yes | [Go!](https://darksky.net/dev/) | Weather +| MetaWeather | Weather | No | Yes | [Go!](https://www.metaweather.com/api/) | Weather +| OpenWeatherMap | Weather | `apiKey` | No | [Go!](http://openweathermap.org/api) | Weather +| Weatherbit | Weather | `apiKey` | Yes | [Go!](https://www.weatherbit.io/api) | Weather +| Wunderground | Weather | `apiKey` | Yes | [Go!](https://www.wunderground.com/weather/api/) | Weather diff --git a/build/single_table.md b/build/single_table.md new file mode 100644 index 00000000..3efb3163 --- /dev/null +++ b/build/single_table.md @@ -0,0 +1,346 @@ +### entries +API | Description | Auth | HTTPS | Link | Section +|---|---|---|---|---|---| +| Dogs | Based on the [Stanford Dogs Dataset](http://vision.stanford.edu/aditya86/ImageNetDogs/) | No | Yes | [Go!](https://dog.ceo/dog-api/) | Animals +| IUCN | IUCN Red List of Threatened Species | `apiKey` | No | [Go!](http://apiv3.iucnredlist.org/api/v3/docs) | Animals +| Petfinder | Adoption | `apiKey` | Yes | [Go!](https://www.petfinder.com/developers/api-docs/) | Animals +| RescueGroups | Adoption | No | Yes | [Go!](https://userguide.rescuegroups.org/display/APIDG/API+Developers+Guide+Home) | Animals +| AniList | AniList Anime | `OAuth` | No | [Go!](http://anilist-api.readthedocs.io/en/latest/) | Anime +| Jikan | Unofficial MyAnimeList API | No | Yes | [Go!](https://jikan.me) | Anime +| Kitsu | Anime discovery platform | `OAuth` | Yes | [Go!](http://docs.kitsu.apiary.io/) | Anime +| Studio Ghibli | Resources from Studio Ghibli films | No | Yes | [Go!](https://ghibliapi.herokuapp.com) | Anime +| AlienVault Open Threat Exchange (OTX) | IP/domain/URL reputation | `apiKey` | Yes | [Go!](https://otx.alienvault.com/api/) | Anti-Malware +| Certly | Certly Link/Domain Flagging | `apiKey` | Yes | [Go!](https://guard.certly.io/) | Anti-Malware +| Google Safe Browsing | Google Link/Domain Flagging | `apiKey` | Yes | [Go!](https://developers.google.com/safe-browsing/) | Anti-Malware +| Metacert | Metacert Link Flagging | `apiKey` | Yes | [Go!](https://metacert.com/) | Anti-Malware +| VirusTotal | VirusTotal File/URL Analysis | `apiKey` | Yes | [Go!](https://www.virustotal.com/en/documentation/public-api/) | Anti-Malware +| Web Of Trust (WOT) | Website reputation | `apiKey` | Yes | [Go!](https://www.mywot.com/wiki/API) | Anti-Malware +| Behance | Design | `apiKey` | Yes | [Go!](https://www.behance.net/dev) | Art & Design +| Dribbble | Design | `OAuth` | No | [Go!](http://developer.dribbble.com/v1/) | Art & Design +| Harvard Art Museums | Art | `apiKey` | No | [Go!](https://github.com/harvardartmuseums/api-docs) | Art & Design +| Icons8 | Icons | `OAuth` | Yes | [Go!](http://docs.icons8.apiary.io/#reference/0/meta) | Art & Design +| Noun Project | Icons | `OAuth` | No | [Go!](http://api.thenounproject.com/index.html) | Art & Design +| Rijksmuseum | Art | `apiKey` | Yes | [Go!](https://www.rijksmuseum.nl/en/api) | Art & Design +| British National Bibliography | Books | No | No | [Go!](http://bnb.data.bl.uk/) | Books +| Goodreads | Books | No | Yes | [Go!](https://www.goodreads.com/api) | Books +| Google Books | Books | `OAuth` | Yes | [Go!](https://developers.google.com/books/) | Books +| mailgun | Email Service | `apiKey` | Yes | [Go!](https://www.mailgun.com/) | Business +| markerapi | Trademark Search | No | No | [Go!](http://www.markerapi.com/) | Business +| Church Calendar | Catholic liturgical calendar | No | No | [Go!](http://calapi.inadiutorium.cz/) | Calendar +| Holidays | Historical data regarding holidays | `apiKey` | Yes | [Go!](https://holidayapi.com/) | Calendar +| LectServe | Protestant liturgical calendar | No | No | [Go!](http://www.lectserve.com) | Calendar +| Non-Working Days | Database of ICS files for non working days | No | Yes | [Go!](https://github.com/gadael/icsdb) | Calendar +| Box | File Sharing and Storage | `OAuth` | Yes | [Go!](https://developer.box.com/) | Cloud Storage & File Sharing +| Dropbox | File Sharing and Storage | `OAuth` | Yes | [Go!](https://www.dropbox.com/developers) | Cloud Storage & File Sharing +| Google Drive | File Sharing and Storage | `OAuth` | Yes | [Go!](https://developers.google.com/drive/) | Cloud Storage & File Sharing +| OneDrive | File Sharing and Storage | `OAuth` | Yes | [Go!](https://dev.onedrive.com/) | Cloud Storage & File Sharing +| Currencylayer | Exchange rates and currency conversion | `apiKey` | Yes | [Go!](https://currencylayer.com/documentation) | Currency Exchange +| Fixer.io | Exchange rates and currency conversion | No | Yes | [Go!](http://fixer.io) | Currency Exchange +| 18F | US Federal Government /Developer Program | No | No | [Go!](http://18f.github.io/API-All-the-X/) | Data Access +| Abbreviation | Get abbreviations and meanings | `X-Mashape-Key` | Yes | [Go!](https://market.mashape.com/daxeel/abbreviations) | Data Access +| CARTO | Location Information Prediction | `apiKey` | Yes | [Go!](https://carto.com/) | Data Access +| Callook.info | United States ham radio callsigns | No | Yes | [Go!](https://callook.info) | Data Access +| Celebinfo | Celebrity information | `X-Mashape-Key` | Yes | [Go!](https://market.mashape.com/daxeel/celebinfo/) | Data Access +| Colorado Data Engine | Formatted and geolocated Colorado public data | No | Yes | [Go!](http://codataengine.org/) | Data Access +| Colorado Information Marketplace | Colorado State Government Open Data | No | Yes | [Go!](https://data.colorado.gov/) | Data Access +| Datakick | The open product database | `apiKey` | Yes | [Go!](https://www.datakick.org/api) | Data Access +| Data USA | US Public Data | No | Yes | [Go!](https://datausa.io/about/api/) | Data Access +| Dronestream | Tracks United States drone strikes | No | Yes | [Go!](https://dronestre.am/) | Data Access +| fonoApi | Mobile Device Description | No | Yes | [Go!](https://fonoapi.freshpixl.com/) | Data Access +| Open Government, Australia | Australian Government Open Data | No | Yes | [Go!](https://www.data.gov.au/) | Data Access +| Open Government, USA | United States Government Open Data | No | Yes | [Go!](https://www.data.gov/) | Data Access +| Open Government, Canada | Canadian Government Open Data | No | No | [Go!](http://open.canada.ca/en) | Data Access +| Open Government Data, India | Indian Government Open Data | `apiKey` | Yes | [Go!](https://data.gov.in/) | Data Access +| Open Government, New Zealand | New Zealand Government Open Data | No | Yes | [Go!](https://www.data.govt.nz/) | Data Access +| Outpan | A Database of Everything | `apiKey` | Yes | [Go!](https://outpan.mixnode.com/developers) | Data Access +| Pearson | Dictionary Data | `apiKey` | No | [Go!](http://developer.pearson.com/apis/dictionaries) | Data Access +| Prague Opendata | Prague City Open Data | No | No | [Go!](http://opendata.praha.eu/en) | Data Access +| Quandl | Stock Market Data | No | Yes | [Go!](https://www.quandl.com/) | Data Access +| Represent by Open North | Find Canadian Government Representatives | No | Yes | [Go!](https://represent.opennorth.ca/) | Data Access +| Scoop.it | Content Curation Service | `apiKey` | No | [Go!](http://www.scoop.it/dev) | Data Access +| Teleport | Quality of Life Data | No | Yes | [Go!](https://developers.teleport.org/) | Data Access +| UPC database | More than 1.5 million barcode numbers from all around the world | `apiKey` | Yes | [Go!](https://upcdatabase.org/api) | Data Access +| Wikipedia | Mediawiki Encyclopedia | No | Yes | [Go!](https://www.mediawiki.org/wiki/API:Main_page) | Data Access +| Wordnik | Dictionary Data | No | No | [Go!](http://developer.wordnik.com) | Data Access +| Yelp | Find Local Business | `OAuth` | Yes | [Go!](https://www.yelp.com/developers/documentation/v3) | Data Access +| languagelayer | Language detection | No | Yes | [Go!](https://languagelayer.com) | Data Validation +| Lob.com | US Address Verification | `apiKey` | Yes | [Go!](https://lob.com/) | Data Validation +| mailboxlayer | Email address validation | No | Yes | [Go!](https://mailboxlayer.com) | Data Validation +| numverify | Phone number validation | No | Yes | [Go!](https://numverify.com) | Data Validation +| vatlayer | VAT number validation | No | Yes | [Go!](https://vatlayer.com) | Data Validation +| Adorable Avatars | Generate random cartoon avatars | No | Yes | [Go!](http://avatars.adorable.io) | Development +| APIs.guru | Wikipedia for Web APIs, OpenAPI/Swagger specs for public APIs | No | Yes | [Go!](https://apis.guru/api-doc/) | Development +| BetterMeta | Return a site's meta tags in JSON format | X-Mashape-Key | Yes | [Go!](http://bettermeta.io) | Development +| Changelogs.md | Structured changelog metadata from open source projects | No | Yes | [Go!](https://changelogs.md) | Development +| CDNJS | Library info on CDNJS | No | Yes | [Go!](https://api.cdnjs.com/libraries/jquery) | Development +| Faceplusplus | A tool to detect face | `OAuth` | Yes | [Go!](https://www.faceplusplus.com/) | Development +| Genderize.io | Determines a gender from a first name | No | Yes | [Go!](https://genderize.io) | Development +| Github - User Data | Pull public information for a user's github | No | Yes | [Go!](https://api.github.com/users/hackeryou) | Development +| Gitter | Chat for GitHub | `OAuth` | Yes | [Go!](https://github.com/gitterHQ/docs) | Development +| HackerRank | Compile source code and run against a set of provided test cases | `apiKey` | Yes | [Go!](https://www.hackerrank.com/api/docs) | Development +| Hipster Ipsum | Generates Hipster Ipsum text | No | No | [Go!](http://hipsterjesus.com/) | Development +| IPify | A simple IP Address API | No | Yes | [Go!](https://www.ipify.org/) | Development +| JSON 2 JSONP | Convert JSON to JSONP (on-the-fly) for easy cross-domain data requests using client-side JavaScript | No | Yes | [Go!](https://json2jsonp.com/) | Development +| JSONbin.io | Free JSON storage service. Ideal for small scale Web apps, Websites and Mobile apps | No | Yes | [Go!](https://jsonbin.io) | Development +| JSONPlaceholder | Fake data for testing and prototyping | No | No | [Go!](http://jsonplaceholder.typicode.com/) | Development +| Judge0 API | Compile and run source code | No | Yes | [Go!](https://api.judge0.com/) | Development +| Kairos | Face Recognition and Emotion Analysis | `apiKey` | Yes | [Go!](https://www.kairos.com/features) | Development +| Let's Validate | Uncovers the technologies used on websites and URL to thumbnail | No | Yes | [Go!](https://github.com/letsvalidate/api) | Development +| LiveEdu | Live Coding Streaming | `OAuth` | Yes | [Go!](https://www.liveedu.tv/developer/applications/) | Development +| Lorem Text | Generates Lorem Ipsum text | `X-Mashape-Key` | Yes | [Go!](https://market.mashape.com/montanaflynn/lorem-text-generator) | Development +| Loripsum | The "lorem ipsum" generator that doesn't suck | No | No | [Go!](http://loripsum.net/) | Development +| Myjson | A simple JSON store for your web or mobile app | No | No | [Go!](http://myjson.com/api) | Development +| Plino | Spam filtering system | No | Yes | [Go!](https://plino.herokuapp.com/) | Development +| Public APIs | A collective list of free JSON APIs for use in web development | No | Yes | [Go!](https://github.com/toddmotto/public-apis/tree/master/json) | Development +| Random Word | Generate random word | No | No | [Go!](http://www.setgetgo.com/randomword/) | Development +| RandomUser | Generates random user data | No | Yes | [Go!](https://randomuser.me) | Development +| ReqRes | A hosted REST-API ready to respond to your AJAX requests | No | Yes | [Go!](https://reqres.in/ ) | Development +| RoboHash | Generate random robot/alien avatars | No | Yes | [Go!](https://robohash.org/) | Development +| StackExchange | Q&A forum for developers | `OAuth` | Yes | [Go!](https://api.stackexchange.com/) | Development +| Stormpath | User Authentication | `apiKey` | Yes | [Go!](https://stormpath.com/) | Development +| UI Names | Generate random fake names | No | Yes | [Go!](https://github.com/thm/uinames) | Development +| Verse | Check what's the latest version of your favorite open-source project | No | Yes | [Go!](https://verse.pawelad.xyz/) | Development +| File.io | File Sharing | No | Yes | [Go!](https://www.file.io) | Documents & Productivity +| pdflayer API | HTML/URL to PDF | No | Yes | [Go!](https://pdflayer.com) | Documents & Productivity +| Pocket | Bookmarking service | `OAuth` | Yes | [Go!](https://getpocket.com/developer/) | Documents & Productivity +| PrexView | Data from XML or JSON to PDF, HTML or Image | `apiKey` | Yes | [Go!](https://prexview.com) | Documents & Productivity +| Todoist | Todo Lists | `OAuth` | Yes | [Go!](https://developer.todoist.com) | Documents & Productivity +| Wunderlist | Todo Lists | `OAuth` | Yes | [Go!](https://developer.wunderlist.com/documentation) | Documents & Productivity +| AirVisual | Air quality and weather data | `apiKey` | Yes | [Go!](https://airvisual.com/api) | Environment +| OpenAQ | Open air quality data | `apiKey` | Yes | [Go!](https://docs.openaq.org/) | Environment +| PM2.5.in | Air quality of China | `apiKey` | No | [Go!](http://www.pm25.in/api_doc) | Environment +| Barchart OnDemand | Stock, Futures, and Forex Market Data | `apiKey` | Yes | [Go!](https://www.barchartondemand.com/free) | Finance +| CoinDesk | Bitcoin Price Index | No | No | [Go!](http://www.coindesk.com/api/) | Finance +| Consumer Financial Protection Bureau | Financial services consumer complains data | `apiKey` | Yes | [Go!](https://data.consumerfinance.gov/resource/jhzv-w97w.json) | Finance +| IEX | Stocks and Market Data | No | Yes | [Go!](https://iextrading.com/developer/) | Finance +| Razorpay IFSC | Indian Financial Systems Code (Bank Branch Codes) | No | Yes | [Go!](https://ifsc.razorpay.com/) | Finance +| BigOven | Recipe Search | `X-Mashape-Key` | No | [Go!](http://api2.bigoven.com/) | Food & Drink +| BreweryDB | Beer | `apiKey` | No | [Go!](http://www.brewerydb.com/developers) | Food & Drink +| Edamam | Recipe Search | `apiKey` | Yes | [Go!](https://developer.edamam.com/) | Food & Drink +| Food2Fork | Recipe Search | `apiKey` | No | [Go!](http://food2fork.com/about/api) | Food & Drink +| LCBO | Alcohol | `apiKey` | Yes | [Go!](https://lcboapi.com/) | Food & Drink +| PunkAPI | Brewdog Beer Recipes | No | Yes | [Go!](https://punkapi.com/) | Food & Drink +| Recipe Puppy | Food | No | No | [Go!](http://www.recipepuppy.com/about/api/) | Food & Drink +| TacoFancy | Community-driven taco database | No | No | [Go!](https://github.com/evz/tacofancy-api) | Food & Drink +| TheCocktailDB | Cocktail Recipes | No | No | [Go!](http://www.thecocktaildb.com/) | Food & Drink +| The Report of the Week | Food & Drink Reviews | No | Yes | [Go!](https://github.com/andyklimczak/TheReportOfTheWeek-API) | Food & Drink +| What's on the menu? | NYPL human-transcribed historical menu collection | `apiKey` | No | [Go!](nypl.github.io/menus-api/) | Food & Drink +| Yummly | Find food recipes | No | Yes | [Go!](https://developer.yummly.com/) | Food & Drink +| Zomato | Discover restaurants | `apiKey` | Yes | [Go!](https://developers.zomato.com/api) | Food & Drink +| Whitepages Pro | Global identity verification with phone, address, email, and IP | `apiKey` | Yes | [Go!](https://pro.whitepages.com/developer/documentation/identity-check-api/) | Fraud Prevention +| Whitepages Pro | Phone reputation to detect spammy phones | `apiKey` | Yes | [Go!](https://pro.whitepages.com/developer/documentation/phone-reputation-api/) | Fraud Prevention +| Whitepages Pro | Get an owner’s name, address, demographics based on the phone number | `apiKey` | Yes | [Go!](https://pro.whitepages.com/developer/documentation/reverse-phone-api/) | Fraud Prevention +| Whitepages Pro | Phone number validation, line_type, carrier append | `apiKey` | Yes | [Go!](https://pro.whitepages.com/developer/documentation/phone-intelligence-api/) | Fraud Prevention +| Whitepages Pro | Get normalized physical address, residents, address type, and validity | `apiKey` | Yes | [Go!](https://pro.whitepages.com/developer/documentation/reverse-address-api/) | Fraud Prevention +| Battle.net | Blizzard Entertainment | No | Yes | [Go!](https://dev.battle.net/) | Games & Comics +| Battlefield 4 | Battlefield 4 Information | No | Yes | [Go!](https://bf4stats.com/api) | Games & Comics +| Chuck Norris Database | Jokes | No | No | [Go!](http://www.icndb.com/api/) | Games & Comics +| Clash of Clans | Clash of Clans Game Information | No | Yes | [Go!](https://developer.clashofclans.com) | Games & Comics +| Clash Royale | Clash Royale Game Information | No | Yes | [Go!](https://github.com/martincarrera/clash-royale-api) | Games & Comics +| Comic Vine | Comics | No | Yes | [Go!](https://comicvine.gamespot.com/api/documentation) | Games & Comics +| Deck of Cards | Deck of Cards | No | No | [Go!](http://deckofcardsapi.com/) | Games & Comics +| Destiny The Game | Bungie Platform API | `apiKey` | Yes | [Go!](https://www.bungie.net/en/Clan/Post/39966/85087279/0/0) | Games & Comics +| Eve Online | Third-Party Developer Documentation | `OAuth` | Yes | [Go!](https://eveonline-third-party-documentation.readthedocs.io/en/latest/) | Games & Comics +| Giant Bomb | Video Games | No | Yes | [Go!](https://www.giantbomb.com/api/documentation) | Games & Comics +| Guild Wars 2 | Guild Wars 2 Game Information | `apiKey` | Yes | [Go!](https://wiki.guildwars2.com/wiki/API:Main) | Games & Comics +| Jservice | Jeopardy Question Database | No | No | [Go!](http://jservice.io) | Games & Comics +| Magic The Gathering | Magic The Gathering Game Information | No | No | [Go!](http://magicthegathering.io/) | Games & Comics +| Marvel | Marvel Comics | `apiKey` | No | [Go!](http://developer.marvel.com) | Games & Comics +| Minecraft | Minecraft server info & user info) | No | Yes | [Go!](https://mcapi.ca/) | Games & Comics +| Open Trivia | Trivia Questions | No | Yes | [Go!](https://opentdb.com/api_config.php) | Games & Comics +| PandaScore | E-sports games and results | `apiKey` | Yes | [Go!](https://api.pandascore.co) | Games & Comics +| Pokéapi | Pokémon Information | No | No | [Go!](http://pokeapi.co) | Games & Comics +| Qriusity | Quiz/Trivia Questions | No | Yes | [Go!](https://qriusity.com/) | Games & Comics +| Riot Games | League of Legends Game Information | `apiKey` | Yes | [Go!](https://developer.riotgames.com/) | Games & Comics +| Steam | Steam Client Interaction | `OAuth` | Yes | [Go!](https://developer.valvesoftware.com/wiki/Steam_Web_API) | Games & Comics +| adresse.data.gouv.fr | Address database of France, geocoding, and reverse | No | Yes | [Go!](https://adresse.data.gouv.fr) | Geocoding +| Bing Maps | Create/customize digital maps based on Bing Maps data | `apiKey` | Yes | [Go!](https://www.microsoft.com/maps/) | Geocoding +| Geocode.xyz | Provides worldwide forward/reverse geocoding, batch geocoding and geoparsing | No | Yes | [Go!](https://geocode.xyz/) | Geocoding +| GeoNames | Place names and other geographical data | No | No | [Go!](http://www.geonames.org/export/web-services.html) | Geocoding +| GéoApi | French geographical data | No | Yes | [Go!](https://api.gouv.fr/api/geoapi.html) | Geocoding +| Google Maps | Create/customize digital maps based on Google Maps data | `apiKey` | Yes | [Go!](https://developers.google.com/maps/) | Geocoding +| IP 2 Country | Map an IP to a country | No | Yes | [Go!](https://ip2country.info) | Geocoding +| IP Address Details | Find geolocation with ip address | No | Yes | [Go!](https://ipinfo.io/) | Geocoding +| IP Location | Find IP address location information | No | Yes | [Go!](https://ipapi.co/) | Geocoding +| IP Vigilante | Free IP Geolocation API | No | Yes | [Go!](https://www.ipvigilante.com/) | Geocoding +| Mapbox | Create/customize beautiful digital maps | `apiKey` | Yes | [Go!](https://www.mapbox.com/developers/) | Geocoding +| Mapzen Search | Open Source & Open Data Global Geocoding Service | `apiKey` | Yes | [Go!](https://mapzen.com/products/search/) | Geocoding +| Mexico | Mexico RESTful zip codes API | No | Yes | [Go!](https://github.com/IcaliaLabs/sepomex) | Geocoding +| One Map 2.0, Singapore | Singapore Land Authority REST API services for Singapore addresses | `apiKey` | Yes | [Go!](https://docs.onemap.sg/) | Geocoding +| OnWater | Determine if a lat/lon is on water or land | No | Yes | [Go!](https://onwater.io/) | Geocoding +| OpenCage | Forward and reverse geocoding using open data | No | Yes | [Go!](https://geocoder.opencagedata.com) | Geocoding +| OpenStreetMap | Navigation, geolocation and geographical data | `OAuth` | No | [Go!](http://wiki.openstreetmap.org/wiki/API) | Geocoding +| PostcodeData.nl | Provide geolocation data based on postcode for Dutch addresses | No | No | [Go!](http://api.postcodedata.nl/v1/postcode/?postcode=1211EP&streetnumber=60&ref=domeinnaam.nl&type=json) | Geocoding +| Postcodes.io | Postcode lookup & Geolocation for the UK | No | Yes | [Go!](https://postcodes.io) | Geocoding +| REST Countries | Get information about countries via a RESTful API | No | Yes | [Go!](https://restcountries.eu) | Geocoding +| Utah AGRC | Utah Web API for geocoding Utah addresses | `apiKey` | Yes | [Go!](https://api.mapserv.utah.gov) | Geocoding +| ViaCep | Brazil RESTful zip codes API | No | Yes | [Go!](https://viacep.com.br) | Geocoding +| Zippopotam | Get information about place such as country, city, state, etc | No | No | [Go!](http://www.zippopotam.us) | Geocoding +| Diabetes | Logging and retrieving diabetes information | No | No | [Go!](http://predictbgl.com/api/) | Health +| Flutrack | Influenza-like symptoms with geotracking | No | No | [Go!](http://www.flutrack.org/) | Health +| Makeup | Makeup Information | No | No | [Go!](http://makeup-api.herokuapp.com/) | Health +| Medicare | Access to the data from the CMS - medicare.gov | No | Yes | [Go!](https://data.medicare.gov/developers) | Health +| Nutritionix | Worlds largest verified nutrition database | `apiKey` | Yes | [Go!](https://developer.nutritionix.com/) | Health +| openFDA | Public FDA data about drugs, devices, and foods | No | Yes | [Go!](https://open.fda.gov/api/) | Health +| USDA Nutrients | National Nutrient Database for Standard Reference | No | Yes | [Go!](https://ndb.nal.usda.gov/ndb/doc/index) | Health +| API.AI | Natural Language Processing | `apiKey` | Yes | [Go!](https://api.ai/) | Machine Learning +| Clarifai | Computer Vision | `OAuth` | Yes | [Go!](https://developer.clarifai.com/) | Machine Learning +| Cleverbot | Web chat bot | `apiKey` | Yes | [Go!](https://www.cleverbot.com/api/) | Machine Learning +| Keen IO | Data Analytics | `apiKey` | Yes | [Go!](https://keen.io/) | Machine Learning +| Unplugg | Forecasting API for timeseries data | `apiKey` | Yes | [Go!](https://unplu.gg/test_api.html) | Machine Learning +| Wit.ai | Natural Language Processing | `OAuth` | Yes | [Go!](https://wit.ai/) | Machine Learning +| Newton | Symbolic and Arithmetic Math Calculator | No | Yes | [Go!](https://newton.now.sh/) | Math +| Numbers API | Facts about numbers | No | No | [Go!](http://numbersapi.com) | Math +| Bandsintown | Music Events | No | Yes | [Go!](https://app.swaggerhub.com/apis/Bandsintown/PublicAPI/3.0.0) | Music +| Deezer | Music | `OAuth` | No | [Go!](http://developers.deezer.com/login?redirect=/api) | Music +| Discogs | Music | `OAuth` | Yes | [Go!](https://www.discogs.com/developers/) | Music +| Genius | Crowdsourced lyrics and music knowledge | `OAuth` | Yes | [Go!](https://docs.genius.com/) | Music +| Jamendo | Music | `OAuth` | Yes | [Go!](https://developer.jamendo.com/v3.0) | Music +| iTunes Search | Software products | No | Yes | [Go!](https://affiliate.itunes.apple.com/resources/documentation/itunes-store-web-service-search-api/) | Music +| LastFm | Music | `apiKey` | No | [Go!](http://www.last.fm/api) | Music +| Mixcloud | Music | No | Yes | [Go!](https://www.mixcloud.com/developers/) | Music +| MusicBrainz | Music | No | Yes | [Go!](https://musicbrainz.org/doc/Development/XML_Web_Service/Version_2) | Music +| Musikki | Music | `apiKey` | Yes | [Go!](https://music-api.musikki.com/reference) | Music +| Musixmatch | Music | `apiKey` | Yes | [Go!](https://developer.musixmatch.com/) | Music +| Songkick | Music Events | `OAuth` | Yes | [Go!](https://www.songkick.com/developer/) | Music +| Songsterr | Provides guitar, bass and drums tabs and chords | No | Yes | [Go!](https://www.songsterr.com/a/wa/api/) | Music +| Soundcloud | Music | No | Yes | [Go!](https://developers.soundcloud.com/) | Music +| Spotify | Music | `OAuth` | Yes | [Go!](https://developer.spotify.com/web-api/) | Music +| Vagalume | Crowdsourced lyrics and music knowledge | `apiKey` | Yes | [Go!](https://api.vagalume.com.br/docs/) | Music +| Chronicling America | Provides access to millions of pages of historic US newspapers from the Library of Congress | No | No | [Go!](http://chroniclingamerica.loc.gov/about/api/) | News +| New York Times | Provides news | `apiKey` | Yes | [Go!](https://developer.nytimes.com/) | News +| News API | Headlines currently published on a range of news sources and blogs | `apiKey` | Yes | [Go!](https://newsapi.org/) | News +| The Guardian | Access all the content the Guardian creates, categorised by tags and section | `apiKey` | Yes | [Go!](http://open-platform.theguardian.com/) | News +| Countly | Countly web analytics | No | No | [Go!](http://resources.count.ly/docs) | Open Source projects +| Drupal.org | Drupal.org | No | Yes | [Go!](https://www.drupal.org/drupalorg/docs/api) | Open Source projects +| Libraries.io | Open source software libraries | `apiKey` | Yes | [Go!](https://libraries.io/api) | Open Source projects +| chucknorris.io | JSON API for hand curated Chuck Norris jokes | No | Yes | [Go!](https://api.chucknorris.io) | Personality +| Forismatic | Inspirational Quotes | No | No | [Go!](http://forismatic.com/en/api/) | Personality +| icanhazdadjoke | The largest selection of dad jokes on the internet | No | Yes | [Go!](https://icanhazdadjoke.com/api) | Personality +| Medium | Community of readers and writers offering unique perspectives on ideas | `OAuth` | Yes | [Go!](https://github.com/Medium/medium-api-docs) | Personality +| Quotes on Design | Inspirational Quotes | No | Yes | [Go!](https://quotesondesign.com/api-v4-0/) | Personality +| Traitify | Assess, collect, and analyze Personality | No | Yes | [Go!](https://app.traitify.com/developer) | Personality +| tronalddump.io | Api & web archive for the things Donald Trump has said | No | Yes | [Go!](https://www.tronalddump.io) | Personality +| 500px | Photography Community | `OAuth` | Yes | [Go!](https://github.com/500px/api-documentation) | Photography +| Flickr | Flickr Services | `OAuth` | Yes | [Go!](https://www.flickr.com/services/api/) | Photography +| Gfycat | Jiffier GIFs | `OAuth` | Yes | [Go!](https://developers.gfycat.com/api/) | Photography +| Giphy | Get all your gifs | No | Yes | [Go!](https://github.com/Giphy/GiphyAPI) | Photography +| Imgur | Images | `OAuth` | Yes | [Go!](https://api.imgur.com/#overview) | Photography +| ScreenShotLayer | URL 2 Image | No | Yes | [Go!](https://screenshotlayer.com) | Photography +| Unsplash | Photography | `OAuth` | Yes | [Go!](https://unsplash.com/developers) | Photography +| PlaceKitten | Resizable kitten placeholder images | No | Yes | [Go!](https://placekitten.com/) | Photography +| arcsecond.io | Multiple astronomy data sources | No | Yes | [Go!](https://api.arcsecond.io/) | Science +| CORE | Access the world's Open Access research papers | `apiKey` | Yes | [Go!](https://core.ac.uk/services#api) | Science +| Fedger.io | Query machine intelligence data | No | Yes | [Go!](https://dev.fedger.io/docs/) | Science +| inspirehep.net | High Energy Physics info. system | No | Yes | [Go!](https://inspirehep.net/info/hep/api?ln=en) | Science +| Launch Library | Upcoming Space Launches | No | Yes | [Go!](https://launchlibrary.net/1.2/docs/api.html) | Science +| Minor Planet Center | Asterank.com Information | No | No | [Go!](http://www.asterank.com/mpc) | Science +| NASA | NASA data, including imagery | No | Yes | [Go!](https://api.nasa.gov) | Science +| Open Notify | ISS astronauts, current location, etc | No | No | [Go!](http://open-notify.org/Open-Notify-API/) | Science +| Sunrise and Sunset | Sunset and sunrise times for a given latitude and longitude | No | Yes | [Go!](https://sunrise-sunset.org/api) | Science +| USGS Earthquake Hazards Program | Earthquakes data real-time | No | Yes | [Go!](https://earthquake.usgs.gov/fdsnws/event/1/) | Science +| USGS Water Services | Water quality and level info for rivers and lakes | No | Yes | [Go!](https://waterservices.usgs.gov/) | Science +| World Bank | World Data | No | No | [Go!](https://datahelpdesk.worldbank.org/knowledgebase/topics/125589) | Science +| AXFR Database | AXFR public database | No | No | [Go!](http://api.axfrcheck.com) | Security +| UK Police | UK Police data | No | Yes | [Go!](https://data.police.uk/docs/) | Security +| eBay | Sell and Buy on eBay | `OAuth` | Yes | [Go!](https://go.developer.ebay.com/) | Shopping +| Cisco Spark | Team Collaboration Software | `OAuth` | Yes | [Go!](https://developer.ciscospark.com) | Social +| Discord | Make bots for Discord, integrate Discord onto an external platform | `OAuth` | Yes | [Go!](https://discordapp.com/developers/docs/intro) | Social +| DonReach Social Count | Get the social share count of a URL from every major social network | No | Yes | [Go!](https://donreach.com/social-share-count/) | Social +| Facebook | Facebook Login, Share on FB, Social Plugins, Analytics and more | `OAuth` | Yes | [Go!](https://developers.facebook.com/) | Social +| Foursquare | Interact with Foursquare users and places (geolocation-based checkins, photos, tips, events, etc) | `OAuth` | Yes | [Go!](https://developer.foursquare.com/) | Social +| Fuck Off as a Service | Asks someone to fuck off | No | Yes | [Go!](https://www.foaas.com) | Social +| Full Contact | Get Social Media profiles and contact Information | `OAuth` | Yes | [Go!](https://www.fullcontact.com/developer/docs/) | Social +| HackerNews | Social news for CS and entrepreneurship | No | Yes | [Go!](https://github.com/HackerNews/API) | Social +| Instagram | Instagram Login, Share on Instagram, Social Plugins and more | `OAuth` | Yes | [Go!](https://www.instagram.com/developer/) | Social +| LinkedIn | The foundation of all digital integrations with LinkedIn | `OAuth` | Yes | [Go!](https://developer.linkedin.com/docs/rest-api) | Social +| Meetup.com | Data about Meetups from Meetup.com | `apiKey` | Yes | [Go!](https://www.meetup.com/meetup_api/) | Social +| Telegram MTProto | Read and write Telegram data | `OAuth` | Yes | [Go!](https://core.telegram.org/api#getting-started) | Social +| Telegram bot | Simplified HTTP version of the MTProto API for bots | `OAuth` | Yes | [Go!](https://core.telegram.org/bots/api) | Social +| Pinterest | The world's catalog of ideas | `OAuth` | Yes | [Go!](https://developers.pinterest.com/) | Social +| PWRTelegram bot | Boosted version of the Telegram bot API | `OAuth` | Yes | [Go!](https://pwrtelegram.xyz) | Social +| Reddit | Homepage of the internet | `OAuth` | Yes | [Go!](https://www.reddit.com/dev/api) | Social +| Slack | Team Instant Messaging | `OAuth` | Yes | [Go!](https://api.slack.com/) | Social +| Tumblr | Read and write Tumblr Data | `OAuth` | Yes | [Go!](https://www.tumblr.com/docs/en/api/v2) | Social +| Twitch | Game Streaming API | `OAuth` | Yes | [Go!](https://github.com/justintv/Twitch-API) | Social +| Twitter | Read and write Twitter data | `OAuth` | Yes | [Go!](https://dev.twitter.com/rest/public) | Social +| vk | Read and write vk data | `OAuth` | Yes | [Go!](https://vk.com/dev/sites) | Social +| Cartola FC | The Cartola FC API serves to check the partial points of your team | No | Yes | [Go!](https://github.com/wgenial/cartrolandofc) | Sports & Fitness +| City Bikes | City Bikes around the world | No | No | [Go!](http://api.citybik.es/v2/) | Sports & Fitness +| Ergast F1 | F1 data from the beginning of the world championships in 1950 | No | No | [Go!](http://ergast.com/mrd/) | Sports & Fitness +| Fitbit | Fitbit Information | `OAuth` | Yes | [Go!](https://dev.fitbit.com/) | Sports & Fitness +| Football-Data.org | Football Data | No | No | [Go!](http://api.football-data.org/index) | Sports & Fitness +| JCDecaux Bike | JCDecaux's self-service bicycles | `apiKey` | Yes | [Go!](https://developer.jcdecaux.com/) | Sports & Fitness +| Cricket Live Scores | Live cricket scores | `X-Mashape-Key` | Yes | [Go!](https://market.mashape.com/dev132/cricket-live-scores) | Sports & Fitness +| NFL Arrests | NFL Arrest Data | No | No | [Go!](http://nflarrest.com/api/) | Sports & Fitness +| Pro Motocross | The RESTful AMA Pro Motocross lap times for every racer on the start gate | No | No | [Go!](http://promotocrossapi.com) | Sports & Fitness +| Strava | Connect with athletes, activities and more | `OAuth` | Yes | [Go!](https://strava.github.io/api/) | Sports & Fitness +| UFC Data | Ultimate Fighting Championship information for events and fighters | No | No | [Go!](http://ufc-data-api.ufc.com/) | Sports & Fitness +| Wger | Workout manager data as exercises, muscles or equipment | `apiKey` | Yes | [Go!](https://wger.de/en/software/api) | Sports & Fitness +| Postmon | An API to query Brazilian ZIP codes and orders easily, quickly and free | No | No | [Go!](http://postmon.com.br) | Tracking +| Sweden | Provides information about parcels in transport | `apiKey` | No | [Go!](https://developer.postnord.com/docs2) | Tracking +| ADS-B Exchange | Access real-time and historical data of any and all airbone aircraft | No | Yes | [Go!](https://www.adsbexchange.com/data/) | Transportation +| Amadeus Travel Innovation Sandbox | Travel Search - Limited usage | `apiKey` | Yes | [Go!](https://sandbox.amadeus.com/) | Transportation +| Bay Area Rapid Transit | Stations and predicted arrivals for BART | `apiKey` | No | [Go!](http://api.bart.gov) | Transportation +| Community Transit | Transitland API | No | Yes | [Go!](https://github.com/transitland/transitland-datastore/blob/master/README.md#api-endpoints) | Transportation +| Goibibo | API for travel search | `apiKey` | Yes | [Go!](https://developer.goibibo.com/docs) | Transportation +| Indian Railways | Indian Railways Information | `apiKey` | No | [Go!](http://api.erail.in/) | Transportation +| Izi | Audio guide for travellers | `apiKey` | Yes | [Go!](http://api-docs.izi.travel/) | Transportation +| Navitia | The open API for building cool stuff with transport data | `apiKey` | Yes | [Go!](https://api.navitia.io/) | Transportation +| The Nomad List | A list of the best places to live/work remotely | No | Yes | [Go!](https://nomadlist.com/faq) | Transportation +| Schiphol Airport | Schiphol | `apiKey` | Yes | [Go!](https://developer.schiphol.nl/) | Transportation +| TransitLand | Transit Aggregation | No | Yes | [Go!](https://transit.land/documentation/datastore/api-endpoints.html) | Transportation +| Transport for Atlanta, US | Marta | No | No | [Go!](http://www.itsmarta.com/app-developer-resources.aspx) | Transportation +| Transport for Auckland, New Zealand | Auckland Transport | No | Yes | [Go!](https://api.at.govt.nz/) | Transportation +| Transport for Belgium | Belgian transport API | No | Yes | [Go!](https://hello.irail.be/api/) | Transportation +| Transport for Berlin, Germany | Third-party VBB API | No | Yes | [Go!](https://github.com/derhuerst/vbb-rest/blob/master/docs/index.md) | Transportation +| Transport for Boston, US | MBTA API | No | No | [Go!](http://realtime.mbta.com/Portal/Home/Documents) | Transportation +| Transport for Budapest, Hungary | Budapest public transport API | No | Yes | [Go!](https://apiary.io/) | Transportation +| Transport for Chicago, US | CTA | No | No | [Go!](http://www.transitchicago.com/developers/) | Transportation +| Transport for Czech Republic | Czech transport API | No | Yes | [Go!](https://www.chaps.cz/eng/products/idos-internet) | Transportation +| Transport for Denver, US | RTD | No | No | [Go!](http://www.rtd-denver.com/gtfs-developer-guide.shtml) | Transportation +| Transport for Finland | Finnish transport API | No | Yes | [Go!](https://digitransit.fi/en/developers/ ) | Transportation +| Transport for Germany | Deutsche Bahn (DB) API | `apiKey` | No | [Go!](http://data.deutschebahn.com/dataset/api-fahrplan) | Transportation +| Transport for India | India Public Transport API | `apiKey` | Yes | [Go!](https://data.gov.in/sector/transport) | Transportation +| Transport for London, England | TfL API | No | Yes | [Go!](https://api.tfl.gov.uk) | Transportation +| Transport for Madrid, Spain | Madrid BUS transport API | `apiKey` | No | [Go!](http://opendata.emtmadrid.es/Servicios-web/BUS) | Transportation +| Transport for Minneapolis, US | NexTrip API | `OAuth` | No | [Go!](http://svc.metrotransit.org/) | Transportation +| Transport for The Netherlands | NS, only trains | `apiKey` | No | [Go!](http://www.ns.nl/reisinformatie/ns-api) | Transportation +| Transport for The Netherlands | OVAPI, country-wide public transport | No | Yes | [Go!](https://github.com/skywave/KV78Turbo-OVAPI/wiki) | Transportation +| Transport for New York City, US | MTA | `apiKey` | No | [Go!](http://datamine.mta.info/) | Transportation +| Transport for Norway | Norwegian transport API | No | No | [Go!](http://reisapi.ruter.no/help) | Transportation +| Transport for Ottawa, Canada | OC Transpo next bus arrival API | No | No | [Go!](http://www.octranspo.com/index.php/developers) | Transportation +| Transport for Paris, France | RATP Open Data API | No | No | [Go!](http://data.ratp.fr/api/v1/console/datasets/1.0/search/) | Transportation +| Transport for Paris, France | Live schedules made simple | No | No | [Go!](http://restratpws.azurewebsites.net/swagger/) | Transportation +| Transport for Philadelphia, US | SEPTA APIs | No | No | [Go!](http://www3.septa.org/hackathon/) | Transportation +| Transport for Rio de Janeiro, Brazil | Prefeitura do Rio (City Hall) | No | No | [Go!](http://data.rio/group/transporte-e-mobilidade) | Transportation +| Transport for São Paulo, Brazil | SPTrans | `OAuth` | No | [Go!](http://www.sptrans.com.br/desenvolvedores/APIOlhoVivo/Documentacao.aspx) | Transportation +| Transport for Sweden | Public Transport consumer | `OAuth` | Yes | [Go!](https://www.trafiklab.se/api) | Transportation +| Transport for Switzerland | Swiss public transport API | No | Yes | [Go!](https://transport.opendata.ch/) | Transportation +| Transport for Switzerland | Official Swiss Public Transport Open Data | `apiKey` | Yes | [Go!](https://opentransportdata.swiss/en/) | Transportation +| Transport for Tokyo, Japan | Tokyo Metro | `apiKey` | Yes | [Go!](https://developer.tokyometroapp.jp/info) | Transportation +| Transport for Toronto, Canada | TTC | No | Yes | [Go!](https://myttc.ca/developers) | Transportation +| Transport for Vancouver, Canada | TransLink | `OAuth` | Yes | [Go!](https://developer.translink.ca/) | Transportation +| Transport for U.S. (multiple locations) | NextBus API | No | No | [Go!](http://www.nextbus.com/xmlFeedDocs/NextBusXMLFeed.pdf) | Transportation +| Transport for Victoria, AU | PTV API | `apiKey` | Yes | [Go!](https://www.ptv.vic.gov.au/about-ptv/ptv-data-and-reports/digital-products/ptv-timetable-api/) | Transportation +| Transport for Washington, US | Washington Metro transport API | `OAuth` | Yes | [Go!](https://developer.wmata.com/) | Transportation +| Uber | Request Uber rides, reach riders, transport things, and reward drivers | `OAuth` | Yes | [Go!](https://developer.uber.com/) | Transportation +| WhereIsMyTransport | Platform for public transport data in emerging cities | `OAuth` | Yes | [Go!](https://developer.whereismytransport.com/) | Transportation +| Universities List | University names, countries and domains | No | Yes | [Go!](https://github.com/Hipo/university-domains-list) | University +| Vehicles | Lot of vehicles information | `apiKey` | No | [Go!](http://developer.edmunds.com/api-documentation/overview/) | Vehicle +| Brazilian Vehicles and Prices | Vehicles information from Fundação Instituto de Pesquisas Econômicas - Fipe | No | Yes | [Go!](https://deividfortuna.github.io/fipe/) | Vehicle +| NHTSA Vehicles | NHTSA Product Information Catalog and Vehicle Listing | No | Yes | [Go!](https://vpic.nhtsa.dot.gov/api/) | Vehicle +| An API of Ice And Fire | Game Of Thrones API | No | Yes | [Go!](https://anapioficeandfire.com/) | Video +| Dailymotion | Dailymotion Developer API | `OAuth` | Yes | [Go!](https://developer.dailymotion.com/) | Video +| Netflix Roulette | Netflix database | No | Yes | [Go!](https://netflixroulette.net/api/) | Video +| Ron Swanson Quotes | Television | No | Yes | [Go!](https://github.com/jamesseanwright/ron-swanson-quotes#ron-swanson-quotes-api) | Video +| SWAPI | Star Wars Information | No | Yes | [Go!](https://swapi.co) | Video +| TMDb | Community-based movie data | `apiKey` | Yes | [Go!](https://www.themoviedb.org/documentation/api) | Video +| TVMaze | TV Show Data | No | No | [Go!](http://www.tvmaze.com/api) | Video +| Vimeo | Vimeo Developer API | `OAuth` | Yes | [Go!](https://developer.vimeo.com/) | Video +| YouTube | Add YouTube functionality to your sites and apps | `OAuth` | Yes | [Go!](https://developers.google.com/youtube/) | Video +| Dark Sky | Weather | `apiKey` | Yes | [Go!](https://darksky.net/dev/) | Weather +| MetaWeather | Weather | No | Yes | [Go!](https://www.metaweather.com/api/) | Weather +| OpenWeatherMap | Weather | `apiKey` | No | [Go!](http://openweathermap.org/api) | Weather +| Weatherbit | Weather | `apiKey` | Yes | [Go!](https://www.weatherbit.io/api) | Weather +| Wunderground | Weather | `apiKey` | Yes | [Go!](https://www.wunderground.com/weather/api/) | Weather diff --git a/json/entries.json b/json/entries.json index 23b84849..60159485 100644 --- a/json/entries.json +++ b/json/entries.json @@ -1,2486 +1,2748 @@ { - "Animals": [ + "entries": [ { "API": "Dogs", "Auth": null, "Description": "Based on the [Stanford Dogs Dataset](http://visionstanford.edu/aditya86/ImageNetDogs/)", "HTTPS": true, - "Link": "https://dog.ceo/dog-api/" + "Link": "https://dog.ceo/dog-api/", + "Section": "Animals" }, { "API": "IUCN", "Auth": "apiKey", "Description": "IUCN Red List of Threatened Species", "HTTPS": false, - "Link": "http://apiv3.iucnredlist.org/api/v3/docs" + "Link": "http://apiv3.iucnredlist.org/api/v3/docs", + "Section": "Animals" }, { "API": "Petfinder", "Auth": "apiKey", "Description": "Adoption", "HTTPS": true, - "Link": "https://www.petfinder.com/developers/api-docs/" + "Link": "https://www.petfinder.com/developers/api-docs/", + "Section": "Animals" }, { "API": "RescueGroups", "Auth": null, "Description": "Adoption", "HTTPS": true, - "Link": "https://userguide.rescuegroups.org/display/APIDG/API+Developers+Guide+Home" - } - ], - "Anime": [ + "Link": "https://userguide.rescuegroups.org/display/APIDG/API+Developers+Guide+Home", + "Section": "Animals" + }, { "API": "AniList", "Auth": "OAuth", "Description": "AniList Anime", "HTTPS": false, - "Link": "http://anilist-api.readthedocs.io/en/latest/" + "Link": "http://anilist-api.readthedocs.io/en/latest/", + "Section": "Anime" }, { "API": "Jikan", "Auth": null, "Description": "Unofficial MyAnimeList API", "HTTPS": true, - "Link": "https://jikan.me" + "Link": "https://jikan.me", + "Section": "Anime" }, { "API": "Kitsu", "Auth": "OAuth", "Description": "Anime discovery platform", "HTTPS": true, - "Link": "http://docs.kitsu.apiary.io/" + "Link": "http://docs.kitsu.apiary.io/", + "Section": "Anime" }, { "API": "Studio Ghibli", "Auth": null, "Description": "Resources from Studio Ghibli films", "HTTPS": true, - "Link": "https://ghibliapi.herokuapp.com" - } - ], - "Anti-Malware": [ + "Link": "https://ghibliapi.herokuapp.com", + "Section": "Anime" + }, { "API": "AlienVault Open Threat Exchange (OTX)", "Auth": "apiKey", "Description": "IP/domain/URL reputation", "HTTPS": true, - "Link": "https://otx.alienvault.com/api/" + "Link": "https://otx.alienvault.com/api/", + "Section": "Anti-Malware" }, { "API": "Certly", "Auth": "apiKey", "Description": "Certly Link/Domain Flagging", "HTTPS": true, - "Link": "https://guard.certly.io/" + "Link": "https://guard.certly.io/", + "Section": "Anti-Malware" }, { "API": "Google Safe Browsing", "Auth": "apiKey", "Description": "Google Link/Domain Flagging", "HTTPS": true, - "Link": "https://developers.google.com/safe-browsing/" + "Link": "https://developers.google.com/safe-browsing/", + "Section": "Anti-Malware" }, { "API": "Metacert", "Auth": "apiKey", "Description": "Metacert Link Flagging", "HTTPS": true, - "Link": "https://metacert.com/" + "Link": "https://metacert.com/", + "Section": "Anti-Malware" }, { "API": "VirusTotal", "Auth": "apiKey", "Description": "VirusTotal File/URL Analysis", "HTTPS": true, - "Link": "https://www.virustotal.com/en/documentation/public-api/" + "Link": "https://www.virustotal.com/en/documentation/public-api/", + "Section": "Anti-Malware" }, { "API": "Web Of Trust (WOT)", "Auth": "apiKey", "Description": "Website reputation", "HTTPS": true, - "Link": "https://www.mywot.com/wiki/API" - } - ], - "Art & Design": [ + "Link": "https://www.mywot.com/wiki/API", + "Section": "Anti-Malware" + }, { "API": "Behance", "Auth": "apiKey", "Description": "Design", "HTTPS": true, - "Link": "https://www.behance.net/dev" + "Link": "https://www.behance.net/dev", + "Section": "Art & Design" }, { "API": "Dribbble", "Auth": "OAuth", "Description": "Design", "HTTPS": false, - "Link": "http://developer.dribbble.com/v1/" + "Link": "http://developer.dribbble.com/v1/", + "Section": "Art & Design" }, { "API": "Harvard Art Museums", "Auth": "apiKey", "Description": "Art", "HTTPS": false, - "Link": "https://github.com/harvardartmuseums/api-docs" + "Link": "https://github.com/harvardartmuseums/api-docs", + "Section": "Art & Design" }, { "API": "Icons8", "Auth": "OAuth", "Description": "Icons", "HTTPS": true, - "Link": "http://docs.icons8.apiary.io/#reference/0/meta" + "Link": "http://docs.icons8.apiary.io/#reference/0/meta", + "Section": "Art & Design" }, { "API": "Noun Project", "Auth": "OAuth", "Description": "Icons", "HTTPS": false, - "Link": "http://api.thenounproject.com/index.html" + "Link": "http://api.thenounproject.com/index.html", + "Section": "Art & Design" }, { "API": "Rijksmuseum", "Auth": "apiKey", "Description": "Art", "HTTPS": true, - "Link": "https://www.rijksmuseum.nl/en/api" - } - ], - "Books": [ + "Link": "https://www.rijksmuseum.nl/en/api", + "Section": "Art & Design" + }, { "API": "British National Bibliography", "Auth": null, "Description": "Books", "HTTPS": false, - "Link": "http://bnb.data.bl.uk/" + "Link": "http://bnb.data.bl.uk/", + "Section": "Books" }, { "API": "Goodreads", "Auth": null, "Description": "Books", "HTTPS": true, - "Link": "https://www.goodreads.com/api" + "Link": "https://www.goodreads.com/api", + "Section": "Books" }, { "API": "Google Books", "Auth": "OAuth", "Description": "Books", "HTTPS": true, - "Link": "https://developers.google.com/books/" - } - ], - "Business": [ + "Link": "https://developers.google.com/books/", + "Section": "Books" + }, { "API": "mailgun", "Auth": "apiKey", "Description": "Email Service", "HTTPS": true, - "Link": "https://www.mailgun.com/" + "Link": "https://www.mailgun.com/", + "Section": "Business" }, { "API": "markerapi", "Auth": null, "Description": "Trademark Search", "HTTPS": false, - "Link": "http://www.markerapi.com/" - } - ], - "Calendar": [ + "Link": "http://www.markerapi.com/", + "Section": "Business" + }, { "API": "Church Calendar", "Auth": null, "Description": "Catholic liturgical calendar", "HTTPS": false, - "Link": "http://calapi.inadiutorium.cz/" + "Link": "http://calapi.inadiutorium.cz/", + "Section": "Calendar" }, { "API": "Holidays", "Auth": "apiKey", "Description": "Historical data regarding holidays", "HTTPS": true, - "Link": "https://holidayapi.com/" + "Link": "https://holidayapi.com/", + "Section": "Calendar" }, { "API": "LectServe", "Auth": null, "Description": "Protestant liturgical calendar", "HTTPS": false, - "Link": "http://www.lectserve.com" + "Link": "http://www.lectserve.com", + "Section": "Calendar" }, { "API": "Non-Working Days", "Auth": null, "Description": "Database of ICS files for non working days", "HTTPS": true, - "Link": "https://github.com/gadael/icsdb" - } - ], - "Cloud Storage & File Sharing": [ + "Link": "https://github.com/gadael/icsdb", + "Section": "Calendar" + }, { "API": "Box", "Auth": "OAuth", "Description": "File Sharing and Storage", "HTTPS": true, - "Link": "https://developer.box.com/" + "Link": "https://developer.box.com/", + "Section": "Cloud Storage & File Sharing" }, { "API": "Dropbox", "Auth": "OAuth", "Description": "File Sharing and Storage", "HTTPS": true, - "Link": "https://www.dropbox.com/developers" + "Link": "https://www.dropbox.com/developers", + "Section": "Cloud Storage & File Sharing" }, { "API": "Google Drive", "Auth": "OAuth", "Description": "File Sharing and Storage", "HTTPS": true, - "Link": "https://developers.google.com/drive/" + "Link": "https://developers.google.com/drive/", + "Section": "Cloud Storage & File Sharing" }, { "API": "OneDrive", "Auth": "OAuth", "Description": "File Sharing and Storage", "HTTPS": true, - "Link": "https://dev.onedrive.com/" - } - ], - "Currency Exchange": [ + "Link": "https://dev.onedrive.com/", + "Section": "Cloud Storage & File Sharing" + }, { "API": "Currencylayer", "Auth": "apiKey", "Description": "Exchange rates and currency conversion", "HTTPS": true, - "Link": "https://currencylayer.com/documentation" + "Link": "https://currencylayer.com/documentation", + "Section": "Currency Exchange" }, { "API": "Fixer.io", "Auth": null, "Description": "Exchange rates and currency conversion", "HTTPS": true, - "Link": "http://fixer.io" - } - ], - "Data Access": [ + "Link": "http://fixer.io", + "Section": "Currency Exchange" + }, { "API": "18F", "Auth": null, "Description": "US Federal Government /Developer Program", "HTTPS": false, - "Link": "http://18f.github.io/API-All-the-X/" + "Link": "http://18f.github.io/API-All-the-X/", + "Section": "Data Access" }, { "API": "Abbreviation", "Auth": "X-Mashape-Key", "Description": "Get abbreviations and meanings", "HTTPS": true, - "Link": "https://market.mashape.com/daxeel/abbreviations" + "Link": "https://market.mashape.com/daxeel/abbreviations", + "Section": "Data Access" }, { "API": "CARTO", "Auth": "apiKey", "Description": "Location Information Prediction", "HTTPS": true, - "Link": "https://carto.com/" + "Link": "https://carto.com/", + "Section": "Data Access" }, { "API": "Callook.info", "Auth": null, "Description": "United States ham radio callsigns", "HTTPS": true, - "Link": "https://callook.info" + "Link": "https://callook.info", + "Section": "Data Access" }, { "API": "Celebinfo", "Auth": "X-Mashape-Key", "Description": "Celebrity information", "HTTPS": true, - "Link": "https://market.mashape.com/daxeel/celebinfo/" + "Link": "https://market.mashape.com/daxeel/celebinfo/", + "Section": "Data Access" }, { "API": "Colorado Data Engine", "Auth": null, "Description": "Formatted and geolocated Colorado public data", "HTTPS": true, - "Link": "http://codataengine.org/" + "Link": "http://codataengine.org/", + "Section": "Data Access" }, { "API": "Colorado Information Marketplace", "Auth": null, "Description": "Colorado State Government Open Data", "HTTPS": true, - "Link": "https://data.colorado.gov/" + "Link": "https://data.colorado.gov/", + "Section": "Data Access" }, { "API": "Datakick", "Auth": "apiKey", "Description": "The open product database", "HTTPS": true, - "Link": "https://www.datakick.org/api" + "Link": "https://www.datakick.org/api", + "Section": "Data Access" }, { "API": "Data USA", "Auth": null, "Description": "US Public Data", "HTTPS": true, - "Link": "https://datausa.io/about/api/" + "Link": "https://datausa.io/about/api/", + "Section": "Data Access" }, { "API": "Dronestream", "Auth": null, "Description": "Tracks United States drone strikes", "HTTPS": true, - "Link": "https://dronestre.am/" + "Link": "https://dronestre.am/", + "Section": "Data Access" }, { "API": "fonoApi", "Auth": null, "Description": "Mobile Device Description", "HTTPS": true, - "Link": "https://fonoapi.freshpixl.com/" + "Link": "https://fonoapi.freshpixl.com/", + "Section": "Data Access" }, { "API": "Open Government, Australia", "Auth": null, "Description": "Australian Government Open Data", "HTTPS": true, - "Link": "https://www.data.gov.au/" + "Link": "https://www.data.gov.au/", + "Section": "Data Access" }, { "API": "Open Government, USA", "Auth": null, "Description": "United States Government Open Data", "HTTPS": true, - "Link": "https://www.data.gov/" + "Link": "https://www.data.gov/", + "Section": "Data Access" }, { "API": "Open Government, Canada", "Auth": null, "Description": "Canadian Government Open Data", "HTTPS": false, - "Link": "http://open.canada.ca/en" + "Link": "http://open.canada.ca/en", + "Section": "Data Access" }, { "API": "Open Government Data, India", "Auth": "apiKey", "Description": "Indian Government Open Data", "HTTPS": true, - "Link": "https://data.gov.in/" + "Link": "https://data.gov.in/", + "Section": "Data Access" }, { "API": "Open Government, New Zealand", "Auth": null, "Description": "New Zealand Government Open Data", "HTTPS": true, - "Link": "https://www.data.govt.nz/" + "Link": "https://www.data.govt.nz/", + "Section": "Data Access" }, { "API": "Outpan", "Auth": "apiKey", "Description": "A Database of Everything", "HTTPS": true, - "Link": "https://outpan.mixnode.com/developers" + "Link": "https://outpan.mixnode.com/developers", + "Section": "Data Access" }, { "API": "Pearson", "Auth": "apiKey", "Description": "Dictionary Data", "HTTPS": false, - "Link": "http://developer.pearson.com/apis/dictionaries" + "Link": "http://developer.pearson.com/apis/dictionaries", + "Section": "Data Access" }, { "API": "Prague Opendata", "Auth": null, "Description": "Prague City Open Data", "HTTPS": false, - "Link": "http://opendata.praha.eu/en" + "Link": "http://opendata.praha.eu/en", + "Section": "Data Access" }, { "API": "Quandl", "Auth": null, "Description": "Stock Market Data", "HTTPS": true, - "Link": "https://www.quandl.com/" + "Link": "https://www.quandl.com/", + "Section": "Data Access" }, { "API": "Represent by Open North", "Auth": null, "Description": "Find Canadian Government Representatives", "HTTPS": true, - "Link": "https://represent.opennorth.ca/" + "Link": "https://represent.opennorth.ca/", + "Section": "Data Access" }, { "API": "Scoop.it", "Auth": "apiKey", "Description": "Content Curation Service", "HTTPS": false, - "Link": "http://www.scoop.it/dev" + "Link": "http://www.scoop.it/dev", + "Section": "Data Access" }, { "API": "Teleport", "Auth": null, "Description": "Quality of Life Data", "HTTPS": true, - "Link": "https://developers.teleport.org/" + "Link": "https://developers.teleport.org/", + "Section": "Data Access" }, { "API": "UPC database", "Auth": "apiKey", "Description": "More than 15 million barcode numbers from all around the world", "HTTPS": true, - "Link": "https://upcdatabase.org/api" + "Link": "https://upcdatabase.org/api", + "Section": "Data Access" }, { "API": "Wikipedia", "Auth": null, "Description": "Mediawiki Encyclopedia", "HTTPS": true, - "Link": "https://www.mediawiki.org/wiki/API:Main_page" + "Link": "https://www.mediawiki.org/wiki/API:Main_page", + "Section": "Data Access" }, { "API": "Wordnik", "Auth": null, "Description": "Dictionary Data", "HTTPS": false, - "Link": "http://developer.wordnik.com" + "Link": "http://developer.wordnik.com", + "Section": "Data Access" }, { "API": "Yelp", "Auth": "OAuth", "Description": "Find Local Business", "HTTPS": true, - "Link": "https://www.yelp.com/developers/documentation/v3" - } - ], - "Data Validation": [ + "Link": "https://www.yelp.com/developers/documentation/v3", + "Section": "Data Access" + }, { "API": "languagelayer", "Auth": null, "Description": "Language detection", "HTTPS": true, - "Link": "https://languagelayer.com" + "Link": "https://languagelayer.com", + "Section": "Data Validation" }, { "API": "Lob.com", "Auth": "apiKey", "Description": "US Address Verification", "HTTPS": true, - "Link": "https://lob.com/" + "Link": "https://lob.com/", + "Section": "Data Validation" }, { "API": "mailboxlayer", "Auth": null, "Description": "Email address validation", "HTTPS": true, - "Link": "https://mailboxlayer.com" + "Link": "https://mailboxlayer.com", + "Section": "Data Validation" }, { "API": "numverify", "Auth": null, "Description": "Phone number validation", "HTTPS": true, - "Link": "https://numverify.com" + "Link": "https://numverify.com", + "Section": "Data Validation" }, { "API": "vatlayer", "Auth": null, "Description": "VAT number validation", "HTTPS": true, - "Link": "https://vatlayer.com" - } - ], - "Development": [ + "Link": "https://vatlayer.com", + "Section": "Data Validation" + }, { "API": "Adorable Avatars", "Auth": null, "Description": "Generate random cartoon avatars", "HTTPS": true, - "Link": "http://avatars.adorable.io" + "Link": "http://avatars.adorable.io", + "Section": "Development" }, { "API": "APIs.guru", "Auth": null, "Description": "Wikipedia for Web APIs, OpenAPI/Swagger specs for public APIs", "HTTPS": true, - "Link": "https://apis.guru/api-doc/" + "Link": "https://apis.guru/api-doc/", + "Section": "Development" }, { "API": "BetterMeta", "Auth": "X-Mashape-Key", "Description": "Return a site's meta tags in JSON format", "HTTPS": true, - "Link": "http://bettermeta.io" + "Link": "http://bettermeta.io", + "Section": "Development" }, { "API": "Changelogs.md", "Auth": null, "Description": "Structured changelog metadata from open source projects", "HTTPS": true, - "Link": "https://changelogs.md" + "Link": "https://changelogs.md", + "Section": "Development" }, { "API": "CDNJS", "Auth": null, "Description": "Library info on CDNJS", "HTTPS": true, - "Link": "https://api.cdnjs.com/libraries/jquery" + "Link": "https://api.cdnjs.com/libraries/jquery", + "Section": "Development" }, { "API": "Faceplusplus", "Auth": "OAuth", "Description": "A tool to detect face", "HTTPS": true, - "Link": "https://www.faceplusplus.com/" + "Link": "https://www.faceplusplus.com/", + "Section": "Development" }, { "API": "Genderize.io", "Auth": null, "Description": "Determines a gender from a first name", "HTTPS": true, - "Link": "https://genderize.io" + "Link": "https://genderize.io", + "Section": "Development" }, { "API": "Github - User Data", "Auth": null, "Description": "Pull public information for a user's github", "HTTPS": true, - "Link": "https://api.github.com/users/hackeryou" + "Link": "https://api.github.com/users/hackeryou", + "Section": "Development" }, { "API": "Gitter", "Auth": "OAuth", "Description": "Chat for GitHub", "HTTPS": true, - "Link": "https://github.com/gitterHQ/docs" + "Link": "https://github.com/gitterHQ/docs", + "Section": "Development" }, { "API": "HackerRank", "Auth": "apiKey", "Description": "Compile source code and run against a set of provided test cases", "HTTPS": true, - "Link": "https://www.hackerrank.com/api/docs" + "Link": "https://www.hackerrank.com/api/docs", + "Section": "Development" }, { "API": "Hipster Ipsum", "Auth": null, "Description": "Generates Hipster Ipsum text", "HTTPS": false, - "Link": "http://hipsterjesus.com/" + "Link": "http://hipsterjesus.com/", + "Section": "Development" }, { "API": "IPify", "Auth": null, "Description": "A simple IP Address API", "HTTPS": true, - "Link": "https://www.ipify.org/" + "Link": "https://www.ipify.org/", + "Section": "Development" }, { "API": "JSON 2 JSONP", "Auth": null, "Description": "Convert JSON to JSONP (on-the-fly) for easy cross-domain data requests using client-side JavaScript", "HTTPS": true, - "Link": "https://json2jsonp.com/" + "Link": "https://json2jsonp.com/", + "Section": "Development" }, { "API": "JSONbin.io", "Auth": null, "Description": "Free JSON storage service Ideal for small scale Web apps, Websites and Mobile apps", "HTTPS": true, - "Link": "https://jsonbin.io" + "Link": "https://jsonbin.io", + "Section": "Development" }, { "API": "JSONPlaceholder", "Auth": null, "Description": "Fake data for testing and prototyping", "HTTPS": false, - "Link": "http://jsonplaceholder.typicode.com/" + "Link": "http://jsonplaceholder.typicode.com/", + "Section": "Development" }, { "API": "Judge0 API", "Auth": null, "Description": "Compile and run source code", "HTTPS": true, - "Link": "https://api.judge0.com/" + "Link": "https://api.judge0.com/", + "Section": "Development" }, { "API": "Kairos", "Auth": "apiKey", "Description": "Face Recognition and Emotion Analysis", "HTTPS": true, - "Link": "https://www.kairos.com/features" + "Link": "https://www.kairos.com/features", + "Section": "Development" }, { "API": "Let's Validate", "Auth": null, "Description": "Uncovers the technologies used on websites and URL to thumbnail", "HTTPS": true, - "Link": "https://github.com/letsvalidate/api" + "Link": "https://github.com/letsvalidate/api", + "Section": "Development" }, { "API": "LiveEdu", "Auth": "OAuth", "Description": "Live Coding Streaming", "HTTPS": true, - "Link": "https://www.liveedu.tv/developer/applications/" + "Link": "https://www.liveedu.tv/developer/applications/", + "Section": "Development" }, { "API": "Lorem Text", "Auth": "X-Mashape-Key", "Description": "Generates Lorem Ipsum text", "HTTPS": true, - "Link": "https://market.mashape.com/montanaflynn/lorem-text-generator" + "Link": "https://market.mashape.com/montanaflynn/lorem-text-generator", + "Section": "Development" }, { "API": "Loripsum", "Auth": null, "Description": "The \"lorem ipsum\" generator that doesn't suck", "HTTPS": false, - "Link": "http://loripsum.net/" + "Link": "http://loripsum.net/", + "Section": "Development" }, { "API": "Myjson", "Auth": null, "Description": "A simple JSON store for your web or mobile app", "HTTPS": false, - "Link": "http://myjson.com/api" + "Link": "http://myjson.com/api", + "Section": "Development" }, { "API": "Plino", "Auth": null, "Description": "Spam filtering system", "HTTPS": true, - "Link": "https://plino.herokuapp.com/" + "Link": "https://plino.herokuapp.com/", + "Section": "Development" }, { "API": "Public APIs", "Auth": null, "Description": "A collective list of free JSON APIs for use in web development", "HTTPS": true, - "Link": "https://github.com/toddmotto/public-apis/tree/master/json" + "Link": "https://github.com/toddmotto/public-apis/tree/master/json", + "Section": "Development" }, { "API": "Random Word", "Auth": null, "Description": "Generate random word", "HTTPS": false, - "Link": "http://www.setgetgo.com/randomword/" + "Link": "http://www.setgetgo.com/randomword/", + "Section": "Development" }, { "API": "RandomUser", "Auth": null, "Description": "Generates random user data", "HTTPS": true, - "Link": "https://randomuser.me" + "Link": "https://randomuser.me", + "Section": "Development" }, { "API": "ReqRes", "Auth": null, "Description": "A hosted REST-API ready to respond to your AJAX requests", "HTTPS": true, - "Link": "https://reqres.in/ " + "Link": "https://reqres.in/ ", + "Section": "Development" }, { "API": "RoboHash", "Auth": null, "Description": "Generate random robot/alien avatars", "HTTPS": true, - "Link": "https://robohash.org/" + "Link": "https://robohash.org/", + "Section": "Development" }, { "API": "StackExchange", "Auth": "OAuth", "Description": "Q&A forum for developers", "HTTPS": true, - "Link": "https://api.stackexchange.com/" + "Link": "https://api.stackexchange.com/", + "Section": "Development" }, { "API": "Stormpath", "Auth": "apiKey", "Description": "User Authentication", "HTTPS": true, - "Link": "https://stormpath.com/" + "Link": "https://stormpath.com/", + "Section": "Development" }, { "API": "UI Names", "Auth": null, "Description": "Generate random fake names", "HTTPS": true, - "Link": "https://github.com/thm/uinames" + "Link": "https://github.com/thm/uinames", + "Section": "Development" }, { "API": "Verse", "Auth": null, "Description": "Check what's the latest version of your favorite open-source project", "HTTPS": true, - "Link": "https://verse.pawelad.xyz/" - } - ], - "Documents & Productivity": [ + "Link": "https://verse.pawelad.xyz/", + "Section": "Development" + }, { "API": "File.io", "Auth": null, "Description": "File Sharing", "HTTPS": true, - "Link": "https://www.file.io" + "Link": "https://www.file.io", + "Section": "Documents & Productivity" }, { "API": "pdflayer API", "Auth": null, "Description": "HTML/URL to PDF", "HTTPS": true, - "Link": "https://pdflayer.com" + "Link": "https://pdflayer.com", + "Section": "Documents & Productivity" }, { "API": "Pocket", "Auth": "OAuth", "Description": "Bookmarking service", "HTTPS": true, - "Link": "https://getpocket.com/developer/" + "Link": "https://getpocket.com/developer/", + "Section": "Documents & Productivity" }, { "API": "PrexView", "Auth": "apiKey", "Description": "Data from XML or JSON to PDF, HTML or Image", "HTTPS": true, - "Link": "https://prexview.com" + "Link": "https://prexview.com", + "Section": "Documents & Productivity" }, { "API": "Todoist", "Auth": "OAuth", "Description": "Todo Lists", "HTTPS": true, - "Link": "https://developer.todoist.com" + "Link": "https://developer.todoist.com", + "Section": "Documents & Productivity" }, { "API": "Wunderlist", "Auth": "OAuth", "Description": "Todo Lists", "HTTPS": true, - "Link": "https://developer.wunderlist.com/documentation" - } - ], - "Environment": [ + "Link": "https://developer.wunderlist.com/documentation", + "Section": "Documents & Productivity" + }, { "API": "AirVisual", "Auth": "apiKey", "Description": "Air quality and weather data", "HTTPS": true, - "Link": "https://airvisual.com/api" + "Link": "https://airvisual.com/api", + "Section": "Environment" }, { "API": "OpenAQ", "Auth": "apiKey", "Description": "Open air quality data", "HTTPS": true, - "Link": "https://docs.openaq.org/" + "Link": "https://docs.openaq.org/", + "Section": "Environment" }, { "API": "PM2.5.in", "Auth": "apiKey", "Description": "Air quality of China", "HTTPS": false, - "Link": "http://www.pm25.in/api_doc" - } - ], - "Finance": [ + "Link": "http://www.pm25.in/api_doc", + "Section": "Environment" + }, { "API": "Barchart OnDemand", "Auth": "apiKey", "Description": "Stock, Futures, and Forex Market Data", "HTTPS": true, - "Link": "https://www.barchartondemand.com/free" + "Link": "https://www.barchartondemand.com/free", + "Section": "Finance" }, { "API": "CoinDesk", "Auth": null, "Description": "Bitcoin Price Index", "HTTPS": false, - "Link": "http://www.coindesk.com/api/" + "Link": "http://www.coindesk.com/api/", + "Section": "Finance" }, { "API": "Consumer Financial Protection Bureau", "Auth": "apiKey", "Description": "Financial services consumer complains data", "HTTPS": true, - "Link": "https://data.consumerfinance.gov/resource/jhzv-w97w.json" + "Link": "https://data.consumerfinance.gov/resource/jhzv-w97w.json", + "Section": "Finance" }, { "API": "IEX", "Auth": null, "Description": "Stocks and Market Data", "HTTPS": true, - "Link": "https://iextrading.com/developer/" + "Link": "https://iextrading.com/developer/", + "Section": "Finance" }, { "API": "Razorpay IFSC", "Auth": null, "Description": "Indian Financial Systems Code (Bank Branch Codes)", "HTTPS": true, - "Link": "https://ifsc.razorpay.com/" - } - ], - "Food & Drink": [ + "Link": "https://ifsc.razorpay.com/", + "Section": "Finance" + }, { "API": "BigOven", "Auth": "X-Mashape-Key", "Description": "Recipe Search", "HTTPS": false, - "Link": "http://api2.bigoven.com/" + "Link": "http://api2.bigoven.com/", + "Section": "Food & Drink" }, { "API": "BreweryDB", "Auth": "apiKey", "Description": "Beer", "HTTPS": false, - "Link": "http://www.brewerydb.com/developers" + "Link": "http://www.brewerydb.com/developers", + "Section": "Food & Drink" }, { "API": "Edamam", "Auth": "apiKey", "Description": "Recipe Search", "HTTPS": true, - "Link": "https://developer.edamam.com/" + "Link": "https://developer.edamam.com/", + "Section": "Food & Drink" }, { "API": "Food2Fork", "Auth": "apiKey", "Description": "Recipe Search", "HTTPS": false, - "Link": "http://food2fork.com/about/api" + "Link": "http://food2fork.com/about/api", + "Section": "Food & Drink" }, { "API": "LCBO", "Auth": "apiKey", "Description": "Alcohol", "HTTPS": true, - "Link": "https://lcboapi.com/" + "Link": "https://lcboapi.com/", + "Section": "Food & Drink" }, { "API": "PunkAPI", "Auth": null, "Description": "Brewdog Beer Recipes", "HTTPS": true, - "Link": "https://punkapi.com/" + "Link": "https://punkapi.com/", + "Section": "Food & Drink" }, { "API": "Recipe Puppy", "Auth": null, "Description": "Food", "HTTPS": false, - "Link": "http://www.recipepuppy.com/about/api/" + "Link": "http://www.recipepuppy.com/about/api/", + "Section": "Food & Drink" }, { "API": "TacoFancy", "Auth": null, "Description": "Community-driven taco database", "HTTPS": false, - "Link": "https://github.com/evz/tacofancy-api" + "Link": "https://github.com/evz/tacofancy-api", + "Section": "Food & Drink" }, { "API": "TheCocktailDB", "Auth": null, "Description": "Cocktail Recipes", "HTTPS": false, - "Link": "http://www.thecocktaildb.com/" + "Link": "http://www.thecocktaildb.com/", + "Section": "Food & Drink" }, { "API": "The Report of the Week", "Auth": null, "Description": "Food & Drink Reviews", "HTTPS": true, - "Link": "https://github.com/andyklimczak/TheReportOfTheWeek-API" + "Link": "https://github.com/andyklimczak/TheReportOfTheWeek-API", + "Section": "Food & Drink" }, { "API": "What's on the menu?", "Auth": "apiKey", "Description": "NYPL human-transcribed historical menu collection", "HTTPS": false, - "Link": "nypl.github.io/menus-api/" + "Link": "nypl.github.io/menus-api/", + "Section": "Food & Drink" }, { "API": "Yummly", "Auth": null, "Description": "Find food recipes", "HTTPS": true, - "Link": "https://developer.yummly.com/" + "Link": "https://developer.yummly.com/", + "Section": "Food & Drink" }, { "API": "Zomato", "Auth": "apiKey", "Description": "Discover restaurants", "HTTPS": true, - "Link": "https://developers.zomato.com/api" - } - ], - "Fraud Prevention": [ + "Link": "https://developers.zomato.com/api", + "Section": "Food & Drink" + }, { "API": "Whitepages Pro", "Auth": "apiKey", "Description": "Global identity verification with phone, address, email, and IP", "HTTPS": true, - "Link": "https://pro.whitepages.com/developer/documentation/identity-check-api/" + "Link": "https://pro.whitepages.com/developer/documentation/identity-check-api/", + "Section": "Fraud Prevention" }, { "API": "Whitepages Pro", "Auth": "apiKey", "Description": "Phone reputation to detect spammy phones", "HTTPS": true, - "Link": "https://pro.whitepages.com/developer/documentation/phone-reputation-api/" + "Link": "https://pro.whitepages.com/developer/documentation/phone-reputation-api/", + "Section": "Fraud Prevention" }, { "API": "Whitepages Pro", "Auth": "apiKey", "Description": "Get an owner\u2019s name, address, demographics based on the phone number", "HTTPS": true, - "Link": "https://pro.whitepages.com/developer/documentation/reverse-phone-api/" + "Link": "https://pro.whitepages.com/developer/documentation/reverse-phone-api/", + "Section": "Fraud Prevention" }, { "API": "Whitepages Pro", "Auth": "apiKey", "Description": "Phone number validation, line_type, carrier append", "HTTPS": true, - "Link": "https://pro.whitepages.com/developer/documentation/phone-intelligence-api/" + "Link": "https://pro.whitepages.com/developer/documentation/phone-intelligence-api/", + "Section": "Fraud Prevention" }, { "API": "Whitepages Pro", "Auth": "apiKey", "Description": "Get normalized physical address, residents, address type, and validity", "HTTPS": true, - "Link": "https://pro.whitepages.com/developer/documentation/reverse-address-api/" - } - ], - "Games & Comics": [ + "Link": "https://pro.whitepages.com/developer/documentation/reverse-address-api/", + "Section": "Fraud Prevention" + }, { "API": "Battle.net", "Auth": null, "Description": "Blizzard Entertainment", "HTTPS": true, - "Link": "https://dev.battle.net/" + "Link": "https://dev.battle.net/", + "Section": "Games & Comics" }, { "API": "Battlefield 4", "Auth": null, "Description": "Battlefield 4 Information", "HTTPS": true, - "Link": "https://bf4stats.com/api" + "Link": "https://bf4stats.com/api", + "Section": "Games & Comics" }, { "API": "Chuck Norris Database", "Auth": null, "Description": "Jokes", "HTTPS": false, - "Link": "http://www.icndb.com/api/" + "Link": "http://www.icndb.com/api/", + "Section": "Games & Comics" }, { "API": "Clash of Clans", "Auth": null, "Description": "Clash of Clans Game Information", "HTTPS": true, - "Link": "https://developer.clashofclans.com" + "Link": "https://developer.clashofclans.com", + "Section": "Games & Comics" }, { "API": "Clash Royale", "Auth": null, "Description": "Clash Royale Game Information", "HTTPS": true, - "Link": "https://github.com/martincarrera/clash-royale-api" + "Link": "https://github.com/martincarrera/clash-royale-api", + "Section": "Games & Comics" }, { "API": "Comic Vine", "Auth": null, "Description": "Comics", "HTTPS": true, - "Link": "https://comicvine.gamespot.com/api/documentation" + "Link": "https://comicvine.gamespot.com/api/documentation", + "Section": "Games & Comics" }, { "API": "Deck of Cards", "Auth": null, "Description": "Deck of Cards", "HTTPS": false, - "Link": "http://deckofcardsapi.com/" + "Link": "http://deckofcardsapi.com/", + "Section": "Games & Comics" }, { "API": "Destiny The Game", "Auth": "apiKey", "Description": "Bungie Platform API", "HTTPS": true, - "Link": "https://www.bungie.net/en/Clan/Post/39966/85087279/0/0" + "Link": "https://www.bungie.net/en/Clan/Post/39966/85087279/0/0", + "Section": "Games & Comics" }, { "API": "Eve Online", "Auth": "OAuth", "Description": "Third-Party Developer Documentation", "HTTPS": true, - "Link": "https://eveonline-third-party-documentation.readthedocs.io/en/latest/" + "Link": "https://eveonline-third-party-documentation.readthedocs.io/en/latest/", + "Section": "Games & Comics" }, { "API": "Giant Bomb", "Auth": null, "Description": "Video Games", "HTTPS": true, - "Link": "https://www.giantbomb.com/api/documentation" + "Link": "https://www.giantbomb.com/api/documentation", + "Section": "Games & Comics" }, { "API": "Guild Wars 2", "Auth": "apiKey", "Description": "Guild Wars 2 Game Information", "HTTPS": true, - "Link": "https://wiki.guildwars2.com/wiki/API:Main" + "Link": "https://wiki.guildwars2.com/wiki/API:Main", + "Section": "Games & Comics" }, { "API": "Jservice", "Auth": null, "Description": "Jeopardy Question Database", "HTTPS": false, - "Link": "http://jservice.io" + "Link": "http://jservice.io", + "Section": "Games & Comics" }, { "API": "Magic The Gathering", "Auth": null, "Description": "Magic The Gathering Game Information", "HTTPS": false, - "Link": "http://magicthegathering.io/" + "Link": "http://magicthegathering.io/", + "Section": "Games & Comics" }, { "API": "Marvel", "Auth": "apiKey", "Description": "Marvel Comics", "HTTPS": false, - "Link": "http://developer.marvel.com" + "Link": "http://developer.marvel.com", + "Section": "Games & Comics" }, { "API": "Minecraft", "Auth": null, "Description": "Minecraft server info & user info)", "HTTPS": true, - "Link": "https://mcapi.ca/" + "Link": "https://mcapi.ca/", + "Section": "Games & Comics" }, { "API": "Open Trivia", "Auth": null, "Description": "Trivia Questions", "HTTPS": true, - "Link": "https://opentdb.com/api_config.php" + "Link": "https://opentdb.com/api_config.php", + "Section": "Games & Comics" }, { "API": "PandaScore", "Auth": "apiKey", "Description": "E-sports games and results", "HTTPS": true, - "Link": "https://api.pandascore.co" + "Link": "https://api.pandascore.co", + "Section": "Games & Comics" }, { "API": "Pok\u00e9api", "Auth": null, "Description": "Pok\u00e9mon Information", "HTTPS": false, - "Link": "http://pokeapi.co" + "Link": "http://pokeapi.co", + "Section": "Games & Comics" }, { "API": "Qriusity", "Auth": null, "Description": "Quiz/Trivia Questions", "HTTPS": true, - "Link": "https://qriusity.com/" + "Link": "https://qriusity.com/", + "Section": "Games & Comics" }, { "API": "Riot Games", "Auth": "apiKey", "Description": "League of Legends Game Information", "HTTPS": true, - "Link": "https://developer.riotgames.com/" + "Link": "https://developer.riotgames.com/", + "Section": "Games & Comics" }, { "API": "Steam", "Auth": "OAuth", "Description": "Steam Client Interaction", "HTTPS": true, - "Link": "https://developer.valvesoftware.com/wiki/Steam_Web_API" - } - ], - "Geocoding": [ + "Link": "https://developer.valvesoftware.com/wiki/Steam_Web_API", + "Section": "Games & Comics" + }, { "API": "adresse.data.gouv.fr", "Auth": null, "Description": "Address database of France, geocoding, and reverse", "HTTPS": true, - "Link": "https://adresse.data.gouv.fr" + "Link": "https://adresse.data.gouv.fr", + "Section": "Geocoding" }, { "API": "Bing Maps", "Auth": "apiKey", "Description": "Create/customize digital maps based on Bing Maps data", "HTTPS": true, - "Link": "https://www.microsoft.com/maps/" + "Link": "https://www.microsoft.com/maps/", + "Section": "Geocoding" }, { "API": "Geocode.xyz", "Auth": null, "Description": "Provides worldwide forward/reverse geocoding, batch geocoding and geoparsing", "HTTPS": true, - "Link": "https://geocode.xyz/" + "Link": "https://geocode.xyz/", + "Section": "Geocoding" }, { "API": "GeoNames", "Auth": null, "Description": "Place names and other geographical data", "HTTPS": false, - "Link": "http://www.geonames.org/export/web-services.html" + "Link": "http://www.geonames.org/export/web-services.html", + "Section": "Geocoding" }, { "API": "G\u00e9oApi", "Auth": null, "Description": "French geographical data", "HTTPS": true, - "Link": "https://api.gouv.fr/api/geoapi.html" + "Link": "https://api.gouv.fr/api/geoapi.html", + "Section": "Geocoding" }, { "API": "Google Maps", "Auth": "apiKey", "Description": "Create/customize digital maps based on Google Maps data", "HTTPS": true, - "Link": "https://developers.google.com/maps/" + "Link": "https://developers.google.com/maps/", + "Section": "Geocoding" }, { "API": "IP 2 Country", "Auth": null, "Description": "Map an IP to a country", "HTTPS": true, - "Link": "https://ip2country.info" + "Link": "https://ip2country.info", + "Section": "Geocoding" }, { "API": "IP Address Details", "Auth": null, "Description": "Find geolocation with ip address", "HTTPS": true, - "Link": "https://ipinfo.io/" + "Link": "https://ipinfo.io/", + "Section": "Geocoding" }, { "API": "IP Location", "Auth": null, "Description": "Find IP address location information", "HTTPS": true, - "Link": "https://ipapi.co/" + "Link": "https://ipapi.co/", + "Section": "Geocoding" }, { "API": "IP Vigilante", "Auth": null, "Description": "Free IP Geolocation API", "HTTPS": true, - "Link": "https://www.ipvigilante.com/" + "Link": "https://www.ipvigilante.com/", + "Section": "Geocoding" }, { "API": "Mapbox", "Auth": "apiKey", "Description": "Create/customize beautiful digital maps", "HTTPS": true, - "Link": "https://www.mapbox.com/developers/" + "Link": "https://www.mapbox.com/developers/", + "Section": "Geocoding" }, { "API": "Mapzen Search", "Auth": "apiKey", "Description": "Open Source & Open Data Global Geocoding Service", "HTTPS": true, - "Link": "https://mapzen.com/products/search/" + "Link": "https://mapzen.com/products/search/", + "Section": "Geocoding" }, { "API": "Mexico", "Auth": null, "Description": "Mexico RESTful zip codes API", "HTTPS": true, - "Link": "https://github.com/IcaliaLabs/sepomex" + "Link": "https://github.com/IcaliaLabs/sepomex", + "Section": "Geocoding" }, { "API": "One Map 2.0, Singapore", "Auth": "apiKey", "Description": "Singapore Land Authority REST API services for Singapore addresses", "HTTPS": true, - "Link": "https://docs.onemap.sg/" + "Link": "https://docs.onemap.sg/", + "Section": "Geocoding" }, { "API": "OnWater", "Auth": null, "Description": "Determine if a lat/lon is on water or land", "HTTPS": true, - "Link": "https://onwater.io/" + "Link": "https://onwater.io/", + "Section": "Geocoding" }, { "API": "OpenCage", "Auth": null, "Description": "Forward and reverse geocoding using open data", "HTTPS": true, - "Link": "https://geocoder.opencagedata.com" + "Link": "https://geocoder.opencagedata.com", + "Section": "Geocoding" }, { "API": "OpenStreetMap", "Auth": "OAuth", "Description": "Navigation, geolocation and geographical data", "HTTPS": false, - "Link": "http://wiki.openstreetmap.org/wiki/API" + "Link": "http://wiki.openstreetmap.org/wiki/API", + "Section": "Geocoding" }, { "API": "PostcodeData.nl", "Auth": null, "Description": "Provide geolocation data based on postcode for Dutch addresses", "HTTPS": false, - "Link": "http://api.postcodedata.nl/v1/postcode/?postcode=1211EP&streetnumber=60&ref=domeinnaam.nl&type=json" + "Link": "http://api.postcodedata.nl/v1/postcode/?postcode=1211EP&streetnumber=60&ref=domeinnaam.nl&type=json", + "Section": "Geocoding" }, { "API": "Postcodes.io", "Auth": null, "Description": "Postcode lookup & Geolocation for the UK", "HTTPS": true, - "Link": "https://postcodes.io" + "Link": "https://postcodes.io", + "Section": "Geocoding" }, { "API": "REST Countries", "Auth": null, "Description": "Get information about countries via a RESTful API", "HTTPS": true, - "Link": "https://restcountries.eu" + "Link": "https://restcountries.eu", + "Section": "Geocoding" }, { "API": "Utah AGRC", "Auth": "apiKey", "Description": "Utah Web API for geocoding Utah addresses", "HTTPS": true, - "Link": "https://api.mapserv.utah.gov" + "Link": "https://api.mapserv.utah.gov", + "Section": "Geocoding" }, { "API": "ViaCep", "Auth": null, "Description": "Brazil RESTful zip codes API", "HTTPS": true, - "Link": "https://viacep.com.br" + "Link": "https://viacep.com.br", + "Section": "Geocoding" }, { "API": "Zippopotam", "Auth": null, "Description": "Get information about place such as country, city, state, etc", "HTTPS": false, - "Link": "http://www.zippopotam.us" - } - ], - "Health": [ + "Link": "http://www.zippopotam.us", + "Section": "Geocoding" + }, { "API": "Diabetes", "Auth": null, "Description": "Logging and retrieving diabetes information", "HTTPS": false, - "Link": "http://predictbgl.com/api/" + "Link": "http://predictbgl.com/api/", + "Section": "Health" }, { "API": "Flutrack", "Auth": null, "Description": "Influenza-like symptoms with geotracking", "HTTPS": false, - "Link": "http://www.flutrack.org/" + "Link": "http://www.flutrack.org/", + "Section": "Health" }, { "API": "Makeup", "Auth": null, "Description": "Makeup Information", "HTTPS": false, - "Link": "http://makeup-api.herokuapp.com/" + "Link": "http://makeup-api.herokuapp.com/", + "Section": "Health" }, { "API": "Medicare", "Auth": null, "Description": "Access to the data from the CMS - medicaregov", "HTTPS": true, - "Link": "https://data.medicare.gov/developers" + "Link": "https://data.medicare.gov/developers", + "Section": "Health" }, { "API": "Nutritionix", "Auth": "apiKey", "Description": "Worlds largest verified nutrition database", "HTTPS": true, - "Link": "https://developer.nutritionix.com/" + "Link": "https://developer.nutritionix.com/", + "Section": "Health" }, { "API": "openFDA", "Auth": null, "Description": "Public FDA data about drugs, devices, and foods", "HTTPS": true, - "Link": "https://open.fda.gov/api/" + "Link": "https://open.fda.gov/api/", + "Section": "Health" }, { "API": "USDA Nutrients", "Auth": null, "Description": "National Nutrient Database for Standard Reference", "HTTPS": true, - "Link": "https://ndb.nal.usda.gov/ndb/doc/index" - } - ], - "Machine Learning": [ + "Link": "https://ndb.nal.usda.gov/ndb/doc/index", + "Section": "Health" + }, { "API": "API.AI", "Auth": "apiKey", "Description": "Natural Language Processing", "HTTPS": true, - "Link": "https://api.ai/" + "Link": "https://api.ai/", + "Section": "Machine Learning" }, { "API": "Clarifai", "Auth": "OAuth", "Description": "Computer Vision", "HTTPS": true, - "Link": "https://developer.clarifai.com/" + "Link": "https://developer.clarifai.com/", + "Section": "Machine Learning" }, { "API": "Cleverbot", "Auth": "apiKey", "Description": "Web chat bot", "HTTPS": true, - "Link": "https://www.cleverbot.com/api/" + "Link": "https://www.cleverbot.com/api/", + "Section": "Machine Learning" }, { "API": "Keen IO", "Auth": "apiKey", "Description": "Data Analytics", "HTTPS": true, - "Link": "https://keen.io/" + "Link": "https://keen.io/", + "Section": "Machine Learning" }, { "API": "Unplugg", "Auth": "apiKey", "Description": "Forecasting API for timeseries data", "HTTPS": true, - "Link": "https://unplu.gg/test_api.html" + "Link": "https://unplu.gg/test_api.html", + "Section": "Machine Learning" }, { "API": "Wit.ai", "Auth": "OAuth", "Description": "Natural Language Processing", "HTTPS": true, - "Link": "https://wit.ai/" - } - ], - "Math": [ + "Link": "https://wit.ai/", + "Section": "Machine Learning" + }, { "API": "Newton", "Auth": null, "Description": "Symbolic and Arithmetic Math Calculator", "HTTPS": true, - "Link": "https://newton.now.sh/" + "Link": "https://newton.now.sh/", + "Section": "Math" }, { "API": "Numbers API", "Auth": null, "Description": "Facts about numbers", "HTTPS": false, - "Link": "http://numbersapi.com" - } - ], - "Music": [ + "Link": "http://numbersapi.com", + "Section": "Math" + }, { "API": "Bandsintown", "Auth": null, "Description": "Music Events", "HTTPS": true, - "Link": "https://app.swaggerhub.com/apis/Bandsintown/PublicAPI/3.0.0" + "Link": "https://app.swaggerhub.com/apis/Bandsintown/PublicAPI/3.0.0", + "Section": "Music" }, { "API": "Deezer", "Auth": "OAuth", "Description": "Music", "HTTPS": false, - "Link": "http://developers.deezer.com/login?redirect=/api" + "Link": "http://developers.deezer.com/login?redirect=/api", + "Section": "Music" }, { "API": "Discogs", "Auth": "OAuth", "Description": "Music", "HTTPS": true, - "Link": "https://www.discogs.com/developers/" + "Link": "https://www.discogs.com/developers/", + "Section": "Music" }, { "API": "Genius", "Auth": "OAuth", "Description": "Crowdsourced lyrics and music knowledge", "HTTPS": true, - "Link": "https://docs.genius.com/" + "Link": "https://docs.genius.com/", + "Section": "Music" }, { "API": "Jamendo", "Auth": "OAuth", "Description": "Music", "HTTPS": true, - "Link": "https://developer.jamendo.com/v3.0" + "Link": "https://developer.jamendo.com/v3.0", + "Section": "Music" }, { "API": "iTunes Search", "Auth": null, "Description": "Software products", "HTTPS": true, - "Link": "https://affiliate.itunes.apple.com/resources/documentation/itunes-store-web-service-search-api/" + "Link": "https://affiliate.itunes.apple.com/resources/documentation/itunes-store-web-service-search-api/", + "Section": "Music" }, { "API": "LastFm", "Auth": "apiKey", "Description": "Music", "HTTPS": false, - "Link": "http://www.last.fm/api" + "Link": "http://www.last.fm/api", + "Section": "Music" }, { "API": "Mixcloud", "Auth": null, "Description": "Music", "HTTPS": true, - "Link": "https://www.mixcloud.com/developers/" + "Link": "https://www.mixcloud.com/developers/", + "Section": "Music" }, { "API": "MusicBrainz", "Auth": null, "Description": "Music", "HTTPS": true, - "Link": "https://musicbrainz.org/doc/Development/XML_Web_Service/Version_2" + "Link": "https://musicbrainz.org/doc/Development/XML_Web_Service/Version_2", + "Section": "Music" }, { "API": "Musikki", "Auth": "apiKey", "Description": "Music", "HTTPS": true, - "Link": "https://music-api.musikki.com/reference" + "Link": "https://music-api.musikki.com/reference", + "Section": "Music" }, { "API": "Musixmatch", "Auth": "apiKey", "Description": "Music", "HTTPS": true, - "Link": "https://developer.musixmatch.com/" + "Link": "https://developer.musixmatch.com/", + "Section": "Music" }, { "API": "Songkick", "Auth": "OAuth", "Description": "Music Events", "HTTPS": true, - "Link": "https://www.songkick.com/developer/" + "Link": "https://www.songkick.com/developer/", + "Section": "Music" }, { "API": "Songsterr", "Auth": null, "Description": "Provides guitar, bass and drums tabs and chords", "HTTPS": true, - "Link": "https://www.songsterr.com/a/wa/api/" + "Link": "https://www.songsterr.com/a/wa/api/", + "Section": "Music" }, { "API": "Soundcloud", "Auth": null, "Description": "Music", "HTTPS": true, - "Link": "https://developers.soundcloud.com/" + "Link": "https://developers.soundcloud.com/", + "Section": "Music" }, { "API": "Spotify", "Auth": "OAuth", "Description": "Music", "HTTPS": true, - "Link": "https://developer.spotify.com/web-api/" + "Link": "https://developer.spotify.com/web-api/", + "Section": "Music" }, { "API": "Vagalume", "Auth": "apiKey", "Description": "Crowdsourced lyrics and music knowledge", "HTTPS": true, - "Link": "https://api.vagalume.com.br/docs/" - } - ], - "News": [ + "Link": "https://api.vagalume.com.br/docs/", + "Section": "Music" + }, { "API": "Chronicling America", "Auth": null, "Description": "Provides access to millions of pages of historic US newspapers from the Library of Congress", "HTTPS": false, - "Link": "http://chroniclingamerica.loc.gov/about/api/" + "Link": "http://chroniclingamerica.loc.gov/about/api/", + "Section": "News" }, { "API": "New York Times", "Auth": "apiKey", "Description": "Provides news", "HTTPS": true, - "Link": "https://developer.nytimes.com/" + "Link": "https://developer.nytimes.com/", + "Section": "News" }, { "API": "News API", "Auth": "apiKey", "Description": "Headlines currently published on a range of news sources and blogs", "HTTPS": true, - "Link": "https://newsapi.org/" + "Link": "https://newsapi.org/", + "Section": "News" }, { "API": "The Guardian", "Auth": "apiKey", "Description": "Access all the content the Guardian creates, categorised by tags and section", "HTTPS": true, - "Link": "http://open-platform.theguardian.com/" - } - ], - "Open Source projects": [ + "Link": "http://open-platform.theguardian.com/", + "Section": "News" + }, { "API": "Countly", "Auth": null, "Description": "Countly web analytics", "HTTPS": false, - "Link": "http://resources.count.ly/docs" + "Link": "http://resources.count.ly/docs", + "Section": "Open Source projects" }, { "API": "Drupal.org", "Auth": null, "Description": "Drupalorg", "HTTPS": true, - "Link": "https://www.drupal.org/drupalorg/docs/api" + "Link": "https://www.drupal.org/drupalorg/docs/api", + "Section": "Open Source projects" }, { "API": "Libraries.io", "Auth": "apiKey", "Description": "Open source software libraries", "HTTPS": true, - "Link": "https://libraries.io/api" - } - ], - "Personality": [ + "Link": "https://libraries.io/api", + "Section": "Open Source projects" + }, { "API": "chucknorris.io", "Auth": null, "Description": "JSON API for hand curated Chuck Norris jokes", "HTTPS": true, - "Link": "https://api.chucknorris.io" + "Link": "https://api.chucknorris.io", + "Section": "Personality" }, { "API": "Forismatic", "Auth": null, "Description": "Inspirational Quotes", "HTTPS": false, - "Link": "http://forismatic.com/en/api/" + "Link": "http://forismatic.com/en/api/", + "Section": "Personality" }, { "API": "icanhazdadjoke", "Auth": null, "Description": "The largest selection of dad jokes on the internet", "HTTPS": true, - "Link": "https://icanhazdadjoke.com/api" + "Link": "https://icanhazdadjoke.com/api", + "Section": "Personality" }, { "API": "Medium", "Auth": "OAuth", "Description": "Community of readers and writers offering unique perspectives on ideas", "HTTPS": true, - "Link": "https://github.com/Medium/medium-api-docs" + "Link": "https://github.com/Medium/medium-api-docs", + "Section": "Personality" }, { "API": "Quotes on Design", "Auth": null, "Description": "Inspirational Quotes", "HTTPS": true, - "Link": "https://quotesondesign.com/api-v4-0/" + "Link": "https://quotesondesign.com/api-v4-0/", + "Section": "Personality" }, { "API": "Traitify", "Auth": null, "Description": "Assess, collect, and analyze Personality", "HTTPS": true, - "Link": "https://app.traitify.com/developer" + "Link": "https://app.traitify.com/developer", + "Section": "Personality" }, { "API": "tronalddump.io", "Auth": null, "Description": "Api & web archive for the things Donald Trump has said", "HTTPS": true, - "Link": "https://www.tronalddump.io" - } - ], - "Photography": [ + "Link": "https://www.tronalddump.io", + "Section": "Personality" + }, { "API": "500px", "Auth": "OAuth", "Description": "Photography Community", "HTTPS": true, - "Link": "https://github.com/500px/api-documentation" + "Link": "https://github.com/500px/api-documentation", + "Section": "Photography" }, { "API": "Flickr", "Auth": "OAuth", "Description": "Flickr Services", "HTTPS": true, - "Link": "https://www.flickr.com/services/api/" + "Link": "https://www.flickr.com/services/api/", + "Section": "Photography" }, { "API": "Gfycat", "Auth": "OAuth", "Description": "Jiffier GIFs", "HTTPS": true, - "Link": "https://developers.gfycat.com/api/" + "Link": "https://developers.gfycat.com/api/", + "Section": "Photography" }, { "API": "Giphy", "Auth": null, "Description": "Get all your gifs", "HTTPS": true, - "Link": "https://github.com/Giphy/GiphyAPI" + "Link": "https://github.com/Giphy/GiphyAPI", + "Section": "Photography" }, { "API": "Imgur", "Auth": "OAuth", "Description": "Images", "HTTPS": true, - "Link": "https://api.imgur.com/#overview" + "Link": "https://api.imgur.com/#overview", + "Section": "Photography" }, { "API": "ScreenShotLayer", "Auth": null, "Description": "URL 2 Image", "HTTPS": true, - "Link": "https://screenshotlayer.com" + "Link": "https://screenshotlayer.com", + "Section": "Photography" }, { "API": "Unsplash", "Auth": "OAuth", "Description": "Photography", "HTTPS": true, - "Link": "https://unsplash.com/developers" + "Link": "https://unsplash.com/developers", + "Section": "Photography" }, { "API": "PlaceKitten", "Auth": null, "Description": "Resizable kitten placeholder images", "HTTPS": true, - "Link": "https://placekitten.com/" - } - ], - "Science": [ + "Link": "https://placekitten.com/", + "Section": "Photography" + }, { "API": "arcsecond.io", "Auth": null, "Description": "Multiple astronomy data sources", "HTTPS": true, - "Link": "https://api.arcsecond.io/" + "Link": "https://api.arcsecond.io/", + "Section": "Science" }, { "API": "CORE", "Auth": "apiKey", "Description": "Access the world's Open Access research papers", "HTTPS": true, - "Link": "https://core.ac.uk/services#api" + "Link": "https://core.ac.uk/services#api", + "Section": "Science" }, { "API": "Fedger.io", "Auth": null, "Description": "Query machine intelligence data", "HTTPS": true, - "Link": "https://dev.fedger.io/docs/" + "Link": "https://dev.fedger.io/docs/", + "Section": "Science" }, { "API": "inspirehep.net", "Auth": null, "Description": "High Energy Physics info system", "HTTPS": true, - "Link": "https://inspirehep.net/info/hep/api?ln=en" + "Link": "https://inspirehep.net/info/hep/api?ln=en", + "Section": "Science" }, { "API": "Launch Library", "Auth": null, "Description": "Upcoming Space Launches", "HTTPS": true, - "Link": "https://launchlibrary.net/1.2/docs/api.html" + "Link": "https://launchlibrary.net/1.2/docs/api.html", + "Section": "Science" }, { "API": "Minor Planet Center", "Auth": null, "Description": "Asterankcom Information", "HTTPS": false, - "Link": "http://www.asterank.com/mpc" + "Link": "http://www.asterank.com/mpc", + "Section": "Science" }, { "API": "NASA", "Auth": null, "Description": "NASA data, including imagery", "HTTPS": true, - "Link": "https://api.nasa.gov" + "Link": "https://api.nasa.gov", + "Section": "Science" }, { "API": "Open Notify", "Auth": null, "Description": "ISS astronauts, current location, etc", "HTTPS": false, - "Link": "http://open-notify.org/Open-Notify-API/" + "Link": "http://open-notify.org/Open-Notify-API/", + "Section": "Science" }, { "API": "Sunrise and Sunset", "Auth": null, "Description": "Sunset and sunrise times for a given latitude and longitude", "HTTPS": true, - "Link": "https://sunrise-sunset.org/api" + "Link": "https://sunrise-sunset.org/api", + "Section": "Science" }, { "API": "USGS Earthquake Hazards Program", "Auth": null, "Description": "Earthquakes data real-time", "HTTPS": true, - "Link": "https://earthquake.usgs.gov/fdsnws/event/1/" + "Link": "https://earthquake.usgs.gov/fdsnws/event/1/", + "Section": "Science" }, { "API": "USGS Water Services", "Auth": null, "Description": "Water quality and level info for rivers and lakes", "HTTPS": true, - "Link": "https://waterservices.usgs.gov/" + "Link": "https://waterservices.usgs.gov/", + "Section": "Science" }, { "API": "World Bank", "Auth": null, "Description": "World Data", "HTTPS": false, - "Link": "https://datahelpdesk.worldbank.org/knowledgebase/topics/125589" - } - ], - "Security": [ + "Link": "https://datahelpdesk.worldbank.org/knowledgebase/topics/125589", + "Section": "Science" + }, { "API": "AXFR Database", "Auth": null, "Description": "AXFR public database", "HTTPS": false, - "Link": "http://api.axfrcheck.com" + "Link": "http://api.axfrcheck.com", + "Section": "Security" }, { "API": "UK Police", "Auth": null, "Description": "UK Police data", "HTTPS": true, - "Link": "https://data.police.uk/docs/" - } - ], - "Shopping": [ + "Link": "https://data.police.uk/docs/", + "Section": "Security" + }, { "API": "eBay", "Auth": "OAuth", "Description": "Sell and Buy on eBay", "HTTPS": true, - "Link": "https://go.developer.ebay.com/" - } - ], - "Social": [ + "Link": "https://go.developer.ebay.com/", + "Section": "Shopping" + }, { "API": "Cisco Spark", "Auth": "OAuth", "Description": "Team Collaboration Software", "HTTPS": true, - "Link": "https://developer.ciscospark.com" + "Link": "https://developer.ciscospark.com", + "Section": "Social" }, { "API": "Discord", "Auth": "OAuth", "Description": "Make bots for Discord, integrate Discord onto an external platform", "HTTPS": true, - "Link": "https://discordapp.com/developers/docs/intro" + "Link": "https://discordapp.com/developers/docs/intro", + "Section": "Social" }, { "API": "DonReach Social Count", "Auth": null, "Description": "Get the social share count of a URL from every major social network", "HTTPS": true, - "Link": "https://donreach.com/social-share-count/" + "Link": "https://donreach.com/social-share-count/", + "Section": "Social" }, { "API": "Facebook", "Auth": "OAuth", "Description": "Facebook Login, Share on FB, Social Plugins, Analytics and more", "HTTPS": true, - "Link": "https://developers.facebook.com/" + "Link": "https://developers.facebook.com/", + "Section": "Social" }, { "API": "Foursquare", "Auth": "OAuth", "Description": "Interact with Foursquare users and places (geolocation-based checkins, photos, tips, events, etc)", "HTTPS": true, - "Link": "https://developer.foursquare.com/" + "Link": "https://developer.foursquare.com/", + "Section": "Social" }, { "API": "Fuck Off as a Service", "Auth": null, "Description": "Asks someone to fuck off", "HTTPS": true, - "Link": "https://www.foaas.com" + "Link": "https://www.foaas.com", + "Section": "Social" }, { "API": "Full Contact", "Auth": "OAuth", "Description": "Get Social Media profiles and contact Information", "HTTPS": true, - "Link": "https://www.fullcontact.com/developer/docs/" + "Link": "https://www.fullcontact.com/developer/docs/", + "Section": "Social" }, { "API": "HackerNews", "Auth": null, "Description": "Social news for CS and entrepreneurship", "HTTPS": true, - "Link": "https://github.com/HackerNews/API" + "Link": "https://github.com/HackerNews/API", + "Section": "Social" }, { "API": "Instagram", "Auth": "OAuth", "Description": "Instagram Login, Share on Instagram, Social Plugins and more", "HTTPS": true, - "Link": "https://www.instagram.com/developer/" + "Link": "https://www.instagram.com/developer/", + "Section": "Social" }, { "API": "LinkedIn", "Auth": "OAuth", "Description": "The foundation of all digital integrations with LinkedIn", "HTTPS": true, - "Link": "https://developer.linkedin.com/docs/rest-api" + "Link": "https://developer.linkedin.com/docs/rest-api", + "Section": "Social" }, { "API": "Meetup.com", "Auth": "apiKey", "Description": "Data about Meetups from Meetupcom", "HTTPS": true, - "Link": "https://www.meetup.com/meetup_api/" + "Link": "https://www.meetup.com/meetup_api/", + "Section": "Social" }, { "API": "Telegram MTProto", "Auth": "OAuth", "Description": "Read and write Telegram data", "HTTPS": true, - "Link": "https://core.telegram.org/api#getting-started" + "Link": "https://core.telegram.org/api#getting-started", + "Section": "Social" }, { "API": "Telegram bot", "Auth": "OAuth", "Description": "Simplified HTTP version of the MTProto API for bots", "HTTPS": true, - "Link": "https://core.telegram.org/bots/api" + "Link": "https://core.telegram.org/bots/api", + "Section": "Social" }, { "API": "Pinterest", "Auth": "OAuth", "Description": "The world's catalog of ideas", "HTTPS": true, - "Link": "https://developers.pinterest.com/" + "Link": "https://developers.pinterest.com/", + "Section": "Social" }, { "API": "PWRTelegram bot", "Auth": "OAuth", "Description": "Boosted version of the Telegram bot API", "HTTPS": true, - "Link": "https://pwrtelegram.xyz" + "Link": "https://pwrtelegram.xyz", + "Section": "Social" }, { "API": "Reddit", "Auth": "OAuth", "Description": "Homepage of the internet", "HTTPS": true, - "Link": "https://www.reddit.com/dev/api" + "Link": "https://www.reddit.com/dev/api", + "Section": "Social" }, { "API": "Slack", "Auth": "OAuth", "Description": "Team Instant Messaging", "HTTPS": true, - "Link": "https://api.slack.com/" + "Link": "https://api.slack.com/", + "Section": "Social" }, { "API": "Tumblr", "Auth": "OAuth", "Description": "Read and write Tumblr Data", "HTTPS": true, - "Link": "https://www.tumblr.com/docs/en/api/v2" + "Link": "https://www.tumblr.com/docs/en/api/v2", + "Section": "Social" }, { "API": "Twitch", "Auth": "OAuth", "Description": "Game Streaming API", "HTTPS": true, - "Link": "https://github.com/justintv/Twitch-API" + "Link": "https://github.com/justintv/Twitch-API", + "Section": "Social" }, { "API": "Twitter", "Auth": "OAuth", "Description": "Read and write Twitter data", "HTTPS": true, - "Link": "https://dev.twitter.com/rest/public" + "Link": "https://dev.twitter.com/rest/public", + "Section": "Social" }, { "API": "vk", "Auth": "OAuth", "Description": "Read and write vk data", "HTTPS": true, - "Link": "https://vk.com/dev/sites" - } - ], - "Sports & Fitness": [ + "Link": "https://vk.com/dev/sites", + "Section": "Social" + }, { "API": "Cartola FC", "Auth": null, "Description": "The Cartola FC API serves to check the partial points of your team", "HTTPS": true, - "Link": "https://github.com/wgenial/cartrolandofc" + "Link": "https://github.com/wgenial/cartrolandofc", + "Section": "Sports & Fitness" }, { "API": "City Bikes", "Auth": null, "Description": "City Bikes around the world", "HTTPS": false, - "Link": "http://api.citybik.es/v2/" + "Link": "http://api.citybik.es/v2/", + "Section": "Sports & Fitness" }, { "API": "Ergast F1", "Auth": null, "Description": "F1 data from the beginning of the world championships in 1950", "HTTPS": false, - "Link": "http://ergast.com/mrd/" + "Link": "http://ergast.com/mrd/", + "Section": "Sports & Fitness" }, { "API": "Fitbit", "Auth": "OAuth", "Description": "Fitbit Information", "HTTPS": true, - "Link": "https://dev.fitbit.com/" + "Link": "https://dev.fitbit.com/", + "Section": "Sports & Fitness" }, { "API": "Football-Data.org", "Auth": null, "Description": "Football Data", "HTTPS": false, - "Link": "http://api.football-data.org/index" + "Link": "http://api.football-data.org/index", + "Section": "Sports & Fitness" }, { "API": "JCDecaux Bike", "Auth": "apiKey", "Description": "JCDecaux's self-service bicycles", "HTTPS": true, - "Link": "https://developer.jcdecaux.com/" + "Link": "https://developer.jcdecaux.com/", + "Section": "Sports & Fitness" }, { "API": "Cricket Live Scores", "Auth": "X-Mashape-Key", "Description": "Live cricket scores", "HTTPS": true, - "Link": "https://market.mashape.com/dev132/cricket-live-scores" + "Link": "https://market.mashape.com/dev132/cricket-live-scores", + "Section": "Sports & Fitness" }, { "API": "NFL Arrests", "Auth": null, "Description": "NFL Arrest Data", "HTTPS": false, - "Link": "http://nflarrest.com/api/" + "Link": "http://nflarrest.com/api/", + "Section": "Sports & Fitness" }, { "API": "Pro Motocross", "Auth": null, "Description": "The RESTful AMA Pro Motocross lap times for every racer on the start gate", "HTTPS": false, - "Link": "http://promotocrossapi.com" + "Link": "http://promotocrossapi.com", + "Section": "Sports & Fitness" }, { "API": "Strava", "Auth": "OAuth", "Description": "Connect with athletes, activities and more", "HTTPS": true, - "Link": "https://strava.github.io/api/" + "Link": "https://strava.github.io/api/", + "Section": "Sports & Fitness" }, { "API": "UFC Data", "Auth": null, "Description": "Ultimate Fighting Championship information for events and fighters", "HTTPS": false, - "Link": "http://ufc-data-api.ufc.com/" + "Link": "http://ufc-data-api.ufc.com/", + "Section": "Sports & Fitness" }, { "API": "Wger", "Auth": "apiKey", "Description": "Workout manager data as exercises, muscles or equipment", "HTTPS": true, - "Link": "https://wger.de/en/software/api" - } - ], - "Tracking": [ + "Link": "https://wger.de/en/software/api", + "Section": "Sports & Fitness" + }, { "API": "Postmon", "Auth": null, "Description": "An API to query Brazilian ZIP codes and orders easily, quickly and free", "HTTPS": false, - "Link": "http://postmon.com.br" + "Link": "http://postmon.com.br", + "Section": "Tracking" }, { "API": "Sweden", "Auth": "apiKey", "Description": "Provides information about parcels in transport", "HTTPS": false, - "Link": "https://developer.postnord.com/docs2" - } - ], - "Transportation": [ + "Link": "https://developer.postnord.com/docs2", + "Section": "Tracking" + }, { "API": "ADS-B Exchange", "Auth": null, "Description": "Access real-time and historical data of any and all airbone aircraft", "HTTPS": true, - "Link": "https://www.adsbexchange.com/data/" + "Link": "https://www.adsbexchange.com/data/", + "Section": "Transportation" }, { "API": "Amadeus Travel Innovation Sandbox", "Auth": "apiKey", "Description": "Travel Search - Limited usage", "HTTPS": true, - "Link": "https://sandbox.amadeus.com/" + "Link": "https://sandbox.amadeus.com/", + "Section": "Transportation" }, { "API": "Bay Area Rapid Transit", "Auth": "apiKey", "Description": "Stations and predicted arrivals for BART", "HTTPS": false, - "Link": "http://api.bart.gov" + "Link": "http://api.bart.gov", + "Section": "Transportation" }, { "API": "Community Transit", "Auth": null, "Description": "Transitland API", "HTTPS": true, - "Link": "https://github.com/transitland/transitland-datastore/blob/master/README.md#api-endpoints" + "Link": "https://github.com/transitland/transitland-datastore/blob/master/README.md#api-endpoints", + "Section": "Transportation" }, { "API": "Goibibo", "Auth": "apiKey", "Description": "API for travel search", "HTTPS": true, - "Link": "https://developer.goibibo.com/docs" + "Link": "https://developer.goibibo.com/docs", + "Section": "Transportation" }, { "API": "Indian Railways", "Auth": "apiKey", "Description": "Indian Railways Information", "HTTPS": false, - "Link": "http://api.erail.in/" + "Link": "http://api.erail.in/", + "Section": "Transportation" }, { "API": "Izi", "Auth": "apiKey", "Description": "Audio guide for travellers", "HTTPS": true, - "Link": "http://api-docs.izi.travel/" + "Link": "http://api-docs.izi.travel/", + "Section": "Transportation" }, { "API": "Navitia", "Auth": "apiKey", "Description": "The open API for building cool stuff with transport data", "HTTPS": true, - "Link": "https://api.navitia.io/" + "Link": "https://api.navitia.io/", + "Section": "Transportation" }, { "API": "The Nomad List", "Auth": null, "Description": "A list of the best places to live/work remotely", "HTTPS": true, - "Link": "https://nomadlist.com/faq" + "Link": "https://nomadlist.com/faq", + "Section": "Transportation" }, { "API": "Schiphol Airport", "Auth": "apiKey", "Description": "Schiphol", "HTTPS": true, - "Link": "https://developer.schiphol.nl/" + "Link": "https://developer.schiphol.nl/", + "Section": "Transportation" }, { "API": "TransitLand", "Auth": null, "Description": "Transit Aggregation", "HTTPS": true, - "Link": "https://transit.land/documentation/datastore/api-endpoints.html" + "Link": "https://transit.land/documentation/datastore/api-endpoints.html", + "Section": "Transportation" }, { "API": "Transport for Atlanta, US", "Auth": null, "Description": "Marta", "HTTPS": false, - "Link": "http://www.itsmarta.com/app-developer-resources.aspx" + "Link": "http://www.itsmarta.com/app-developer-resources.aspx", + "Section": "Transportation" }, { "API": "Transport for Auckland, New Zealand", "Auth": null, "Description": "Auckland Transport", "HTTPS": true, - "Link": "https://api.at.govt.nz/" + "Link": "https://api.at.govt.nz/", + "Section": "Transportation" }, { "API": "Transport for Belgium", "Auth": null, "Description": "Belgian transport API", "HTTPS": true, - "Link": "https://hello.irail.be/api/" + "Link": "https://hello.irail.be/api/", + "Section": "Transportation" }, { "API": "Transport for Berlin, Germany", "Auth": null, "Description": "Third-party VBB API", "HTTPS": true, - "Link": "https://github.com/derhuerst/vbb-rest/blob/master/docs/index.md" + "Link": "https://github.com/derhuerst/vbb-rest/blob/master/docs/index.md", + "Section": "Transportation" }, { "API": "Transport for Boston, US", "Auth": null, "Description": "MBTA API", "HTTPS": false, - "Link": "http://realtime.mbta.com/Portal/Home/Documents" + "Link": "http://realtime.mbta.com/Portal/Home/Documents", + "Section": "Transportation" }, { "API": "Transport for Budapest, Hungary", "Auth": null, "Description": "Budapest public transport API", "HTTPS": true, - "Link": "https://apiary.io/" + "Link": "https://apiary.io/", + "Section": "Transportation" }, { "API": "Transport for Chicago, US", "Auth": null, "Description": "CTA", "HTTPS": false, - "Link": "http://www.transitchicago.com/developers/" + "Link": "http://www.transitchicago.com/developers/", + "Section": "Transportation" }, { "API": "Transport for Czech Republic", "Auth": null, "Description": "Czech transport API", "HTTPS": true, - "Link": "https://www.chaps.cz/eng/products/idos-internet" + "Link": "https://www.chaps.cz/eng/products/idos-internet", + "Section": "Transportation" }, { "API": "Transport for Denver, US", "Auth": null, "Description": "RTD", "HTTPS": false, - "Link": "http://www.rtd-denver.com/gtfs-developer-guide.shtml" + "Link": "http://www.rtd-denver.com/gtfs-developer-guide.shtml", + "Section": "Transportation" }, { "API": "Transport for Finland", "Auth": null, "Description": "Finnish transport API", "HTTPS": true, - "Link": "https://digitransit.fi/en/developers/ " + "Link": "https://digitransit.fi/en/developers/ ", + "Section": "Transportation" }, { "API": "Transport for Germany", "Auth": "apiKey", "Description": "Deutsche Bahn (DB) API", "HTTPS": false, - "Link": "http://data.deutschebahn.com/dataset/api-fahrplan" + "Link": "http://data.deutschebahn.com/dataset/api-fahrplan", + "Section": "Transportation" }, { "API": "Transport for India", "Auth": "apiKey", "Description": "India Public Transport API", "HTTPS": true, - "Link": "https://data.gov.in/sector/transport" + "Link": "https://data.gov.in/sector/transport", + "Section": "Transportation" }, { "API": "Transport for London, England", "Auth": null, "Description": "TfL API", "HTTPS": true, - "Link": "https://api.tfl.gov.uk" + "Link": "https://api.tfl.gov.uk", + "Section": "Transportation" }, { "API": "Transport for Madrid, Spain", "Auth": "apiKey", "Description": "Madrid BUS transport API", "HTTPS": false, - "Link": "http://opendata.emtmadrid.es/Servicios-web/BUS" + "Link": "http://opendata.emtmadrid.es/Servicios-web/BUS", + "Section": "Transportation" }, { "API": "Transport for Minneapolis, US", "Auth": "OAuth", "Description": "NexTrip API", "HTTPS": false, - "Link": "http://svc.metrotransit.org/" + "Link": "http://svc.metrotransit.org/", + "Section": "Transportation" }, { "API": "Transport for The Netherlands", "Auth": "apiKey", "Description": "NS, only trains", "HTTPS": false, - "Link": "http://www.ns.nl/reisinformatie/ns-api" + "Link": "http://www.ns.nl/reisinformatie/ns-api", + "Section": "Transportation" }, { "API": "Transport for The Netherlands", "Auth": null, "Description": "OVAPI, country-wide public transport", "HTTPS": true, - "Link": "https://github.com/skywave/KV78Turbo-OVAPI/wiki" + "Link": "https://github.com/skywave/KV78Turbo-OVAPI/wiki", + "Section": "Transportation" }, { "API": "Transport for New York City, US", "Auth": "apiKey", "Description": "MTA", "HTTPS": false, - "Link": "http://datamine.mta.info/" + "Link": "http://datamine.mta.info/", + "Section": "Transportation" }, { "API": "Transport for Norway", "Auth": null, "Description": "Norwegian transport API", "HTTPS": false, - "Link": "http://reisapi.ruter.no/help" + "Link": "http://reisapi.ruter.no/help", + "Section": "Transportation" }, { "API": "Transport for Ottawa, Canada", "Auth": null, "Description": "OC Transpo next bus arrival API", "HTTPS": false, - "Link": "http://www.octranspo.com/index.php/developers" + "Link": "http://www.octranspo.com/index.php/developers", + "Section": "Transportation" }, { "API": "Transport for Paris, France", "Auth": null, "Description": "RATP Open Data API", "HTTPS": false, - "Link": "http://data.ratp.fr/api/v1/console/datasets/1.0/search/" + "Link": "http://data.ratp.fr/api/v1/console/datasets/1.0/search/", + "Section": "Transportation" }, { "API": "Transport for Paris, France", "Auth": null, "Description": "Live schedules made simple", "HTTPS": false, - "Link": "http://restratpws.azurewebsites.net/swagger/" + "Link": "http://restratpws.azurewebsites.net/swagger/", + "Section": "Transportation" }, { "API": "Transport for Philadelphia, US", "Auth": null, "Description": "SEPTA APIs", "HTTPS": false, - "Link": "http://www3.septa.org/hackathon/" + "Link": "http://www3.septa.org/hackathon/", + "Section": "Transportation" }, { "API": "Transport for Rio de Janeiro, Brazil", "Auth": null, "Description": "Prefeitura do Rio (City Hall)", "HTTPS": false, - "Link": "http://data.rio/group/transporte-e-mobilidade" + "Link": "http://data.rio/group/transporte-e-mobilidade", + "Section": "Transportation" }, { "API": "Transport for S\u00e3o Paulo, Brazil", "Auth": "OAuth", "Description": "SPTrans", "HTTPS": false, - "Link": "http://www.sptrans.com.br/desenvolvedores/APIOlhoVivo/Documentacao.aspx" + "Link": "http://www.sptrans.com.br/desenvolvedores/APIOlhoVivo/Documentacao.aspx", + "Section": "Transportation" }, { "API": "Transport for Sweden", "Auth": "OAuth", "Description": "Public Transport consumer", "HTTPS": true, - "Link": "https://www.trafiklab.se/api" + "Link": "https://www.trafiklab.se/api", + "Section": "Transportation" }, { "API": "Transport for Switzerland", "Auth": null, "Description": "Swiss public transport API", "HTTPS": true, - "Link": "https://transport.opendata.ch/" + "Link": "https://transport.opendata.ch/", + "Section": "Transportation" }, { "API": "Transport for Switzerland", "Auth": "apiKey", "Description": "Official Swiss Public Transport Open Data", "HTTPS": true, - "Link": "https://opentransportdata.swiss/en/" + "Link": "https://opentransportdata.swiss/en/", + "Section": "Transportation" }, { "API": "Transport for Tokyo, Japan", "Auth": "apiKey", "Description": "Tokyo Metro", "HTTPS": true, - "Link": "https://developer.tokyometroapp.jp/info" + "Link": "https://developer.tokyometroapp.jp/info", + "Section": "Transportation" }, { "API": "Transport for Toronto, Canada", "Auth": null, "Description": "TTC", "HTTPS": true, - "Link": "https://myttc.ca/developers" + "Link": "https://myttc.ca/developers", + "Section": "Transportation" }, { "API": "Transport for Vancouver, Canada", "Auth": "OAuth", "Description": "TransLink", "HTTPS": true, - "Link": "https://developer.translink.ca/" + "Link": "https://developer.translink.ca/", + "Section": "Transportation" }, { "API": "Transport for U.S. (multiple locations)", "Auth": null, "Description": "NextBus API", "HTTPS": false, - "Link": "http://www.nextbus.com/xmlFeedDocs/NextBusXMLFeed.pdf" + "Link": "http://www.nextbus.com/xmlFeedDocs/NextBusXMLFeed.pdf", + "Section": "Transportation" }, { "API": "Transport for Victoria, AU", "Auth": "apiKey", "Description": "PTV API", "HTTPS": true, - "Link": "https://www.ptv.vic.gov.au/about-ptv/ptv-data-and-reports/digital-products/ptv-timetable-api/" + "Link": "https://www.ptv.vic.gov.au/about-ptv/ptv-data-and-reports/digital-products/ptv-timetable-api/", + "Section": "Transportation" }, { "API": "Transport for Washington, US", "Auth": "OAuth", "Description": "Washington Metro transport API", "HTTPS": true, - "Link": "https://developer.wmata.com/" + "Link": "https://developer.wmata.com/", + "Section": "Transportation" }, { "API": "Uber", "Auth": "OAuth", "Description": "Request Uber rides, reach riders, transport things, and reward drivers", "HTTPS": true, - "Link": "https://developer.uber.com/" + "Link": "https://developer.uber.com/", + "Section": "Transportation" }, { "API": "WhereIsMyTransport", "Auth": "OAuth", "Description": "Platform for public transport data in emerging cities", "HTTPS": true, - "Link": "https://developer.whereismytransport.com/" - } - ], - "University": [ + "Link": "https://developer.whereismytransport.com/", + "Section": "Transportation" + }, { "API": "Universities List", "Auth": null, "Description": "University names, countries and domains", "HTTPS": true, - "Link": "https://github.com/Hipo/university-domains-list" - } - ], - "Vehicle": [ + "Link": "https://github.com/Hipo/university-domains-list", + "Section": "University" + }, { "API": "Vehicles", "Auth": "apiKey", "Description": "Lot of vehicles information", "HTTPS": false, - "Link": "http://developer.edmunds.com/api-documentation/overview/" + "Link": "http://developer.edmunds.com/api-documentation/overview/", + "Section": "Vehicle" }, { "API": "Brazilian Vehicles and Prices", "Auth": null, "Description": "Vehicles information from Funda\u00e7\u00e3o Instituto de Pesquisas Econ\u00f4micas - Fipe", "HTTPS": true, - "Link": "https://deividfortuna.github.io/fipe/" + "Link": "https://deividfortuna.github.io/fipe/", + "Section": "Vehicle" }, { "API": "NHTSA Vehicles", "Auth": null, "Description": "NHTSA Product Information Catalog and Vehicle Listing", "HTTPS": true, - "Link": "https://vpic.nhtsa.dot.gov/api/" - } - ], - "Video": [ + "Link": "https://vpic.nhtsa.dot.gov/api/", + "Section": "Vehicle" + }, { "API": "An API of Ice And Fire", "Auth": null, "Description": "Game Of Thrones API", "HTTPS": true, - "Link": "https://anapioficeandfire.com/" + "Link": "https://anapioficeandfire.com/", + "Section": "Video" }, { "API": "Dailymotion", "Auth": "OAuth", "Description": "Dailymotion Developer API", "HTTPS": true, - "Link": "https://developer.dailymotion.com/" + "Link": "https://developer.dailymotion.com/", + "Section": "Video" }, { "API": "Netflix Roulette", "Auth": null, "Description": "Netflix database", "HTTPS": true, - "Link": "https://netflixroulette.net/api/" + "Link": "https://netflixroulette.net/api/", + "Section": "Video" }, { "API": "Ron Swanson Quotes", "Auth": null, "Description": "Television", "HTTPS": true, - "Link": "https://github.com/jamesseanwright/ron-swanson-quotes#ron-swanson-quotes-api" + "Link": "https://github.com/jamesseanwright/ron-swanson-quotes#ron-swanson-quotes-api", + "Section": "Video" }, { "API": "SWAPI", "Auth": null, "Description": "Star Wars Information", "HTTPS": true, - "Link": "https://swapi.co" + "Link": "https://swapi.co", + "Section": "Video" }, { "API": "TMDb", "Auth": "apiKey", "Description": "Community-based movie data", "HTTPS": true, - "Link": "https://www.themoviedb.org/documentation/api" + "Link": "https://www.themoviedb.org/documentation/api", + "Section": "Video" }, { "API": "TVMaze", "Auth": null, "Description": "TV Show Data", "HTTPS": false, - "Link": "http://www.tvmaze.com/api" + "Link": "http://www.tvmaze.com/api", + "Section": "Video" }, { "API": "Vimeo", "Auth": "OAuth", "Description": "Vimeo Developer API", "HTTPS": true, - "Link": "https://developer.vimeo.com/" + "Link": "https://developer.vimeo.com/", + "Section": "Video" }, { "API": "YouTube", "Auth": "OAuth", "Description": "Add YouTube functionality to your sites and apps", "HTTPS": true, - "Link": "https://developers.google.com/youtube/" - } - ], - "Weather": [ + "Link": "https://developers.google.com/youtube/", + "Section": "Video" + }, { "API": "Dark Sky", "Auth": "apiKey", "Description": "Weather", "HTTPS": true, - "Link": "https://darksky.net/dev/" + "Link": "https://darksky.net/dev/", + "Section": "Weather" }, { "API": "MetaWeather", "Auth": null, "Description": "Weather", "HTTPS": true, - "Link": "https://www.metaweather.com/api/" + "Link": "https://www.metaweather.com/api/", + "Section": "Weather" }, { "API": "OpenWeatherMap", "Auth": "apiKey", "Description": "Weather", "HTTPS": false, - "Link": "http://openweathermap.org/api" + "Link": "http://openweathermap.org/api", + "Section": "Weather" }, { "API": "Weatherbit", "Auth": "apiKey", "Description": "Weather", "HTTPS": true, - "Link": "https://www.weatherbit.io/api" + "Link": "https://www.weatherbit.io/api", + "Section": "Weather" }, { "API": "Wunderground", "Auth": "apiKey", "Description": "Weather", "HTTPS": true, - "Link": "https://www.wunderground.com/weather/api/" - }, - { - "API": "Yahoo! Weather", - "Auth": null, - "Description": "Weather", - "HTTPS": true, - "Link": "https://developer.yahoo.com/weather/" + "Link": "https://www.wunderground.com/weather/api/", + "Section": "Weather" } ] } diff --git a/json/entries.min.json b/json/entries.min.json index cb56afe4..c0debd2b 100644 --- a/json/entries.min.json +++ b/json/entries.min.json @@ -1 +1 @@ -{"Animals":[{"API":"Dogs","Description":"Based on the [Stanford Dogs Dataset](http://visionstanford.edu/aditya86/ImageNetDogs/)","Auth":null,"HTTPS":true,"Link":"https://dog.ceo/dog-api/"},{"API":"IUCN","Description":"IUCN Red List of Threatened Species","Auth":"apiKey","HTTPS":false,"Link":"http://apiv3.iucnredlist.org/api/v3/docs"},{"API":"Petfinder","Description":"Adoption","Auth":"apiKey","HTTPS":true,"Link":"https://www.petfinder.com/developers/api-docs/"},{"API":"RescueGroups","Description":"Adoption","Auth":null,"HTTPS":true,"Link":"https://userguide.rescuegroups.org/display/APIDG/API+Developers+Guide+Home"}],"Anime":[{"API":"AniList","Description":"AniList Anime","Auth":"OAuth","HTTPS":false,"Link":"http://anilist-api.readthedocs.io/en/latest/"},{"API":"Jikan","Description":"Unofficial MyAnimeList API","Auth":null,"HTTPS":true,"Link":"https://jikan.me"},{"API":"Kitsu","Description":"Anime discovery platform","Auth":"OAuth","HTTPS":true,"Link":"http://docs.kitsu.apiary.io/"},{"API":"Studio Ghibli","Description":"Resources from Studio Ghibli films","Auth":null,"HTTPS":true,"Link":"https://ghibliapi.herokuapp.com"}],"Anti-Malware":[{"API":"AlienVault Open Threat Exchange (OTX)","Description":"IP/domain/URL reputation","Auth":"apiKey","HTTPS":true,"Link":"https://otx.alienvault.com/api/"},{"API":"Certly","Description":"Certly Link/Domain Flagging","Auth":"apiKey","HTTPS":true,"Link":"https://guard.certly.io/"},{"API":"Google Safe Browsing","Description":"Google Link/Domain Flagging","Auth":"apiKey","HTTPS":true,"Link":"https://developers.google.com/safe-browsing/"},{"API":"Metacert","Description":"Metacert Link Flagging","Auth":"apiKey","HTTPS":true,"Link":"https://metacert.com/"},{"API":"VirusTotal","Description":"VirusTotal File/URL Analysis","Auth":"apiKey","HTTPS":true,"Link":"https://www.virustotal.com/en/documentation/public-api/"},{"API":"Web Of Trust (WOT)","Description":"Website reputation","Auth":"apiKey","HTTPS":true,"Link":"https://www.mywot.com/wiki/API"}],"Art & Design":[{"API":"Behance","Description":"Design","Auth":"apiKey","HTTPS":true,"Link":"https://www.behance.net/dev"},{"API":"Dribbble","Description":"Design","Auth":"OAuth","HTTPS":false,"Link":"http://developer.dribbble.com/v1/"},{"API":"Harvard Art Museums","Description":"Art","Auth":"apiKey","HTTPS":false,"Link":"https://github.com/harvardartmuseums/api-docs"},{"API":"Icons8","Description":"Icons","Auth":"OAuth","HTTPS":true,"Link":"http://docs.icons8.apiary.io/#reference/0/meta"},{"API":"Noun Project","Description":"Icons","Auth":"OAuth","HTTPS":false,"Link":"http://api.thenounproject.com/index.html"},{"API":"Rijksmuseum","Description":"Art","Auth":"apiKey","HTTPS":true,"Link":"https://www.rijksmuseum.nl/en/api"}],"Books":[{"API":"British National Bibliography","Description":"Books","Auth":null,"HTTPS":false,"Link":"http://bnb.data.bl.uk/"},{"API":"Goodreads","Description":"Books","Auth":null,"HTTPS":true,"Link":"https://www.goodreads.com/api"},{"API":"Google Books","Description":"Books","Auth":"OAuth","HTTPS":true,"Link":"https://developers.google.com/books/"}],"Business":[{"API":"mailgun","Description":"Email Service","Auth":"apiKey","HTTPS":true,"Link":"https://www.mailgun.com/"},{"API":"markerapi","Description":"Trademark Search","Auth":null,"HTTPS":false,"Link":"http://www.markerapi.com/"}],"Calendar":[{"API":"Church Calendar","Description":"Catholic liturgical calendar","Auth":null,"HTTPS":false,"Link":"http://calapi.inadiutorium.cz/"},{"API":"Holidays","Description":"Historical data regarding holidays","Auth":"apiKey","HTTPS":true,"Link":"https://holidayapi.com/"},{"API":"LectServe","Description":"Protestant liturgical calendar","Auth":null,"HTTPS":false,"Link":"http://www.lectserve.com"},{"API":"Non-Working Days","Description":"Database of ICS files for non working days","Auth":null,"HTTPS":true,"Link":"https://github.com/gadael/icsdb"}],"Cloud Storage & File Sharing":[{"API":"Box","Description":"File Sharing and Storage","Auth":"OAuth","HTTPS":true,"Link":"https://developer.box.com/"},{"API":"Dropbox","Description":"File Sharing and Storage","Auth":"OAuth","HTTPS":true,"Link":"https://www.dropbox.com/developers"},{"API":"Google Drive","Description":"File Sharing and Storage","Auth":"OAuth","HTTPS":true,"Link":"https://developers.google.com/drive/"},{"API":"OneDrive","Description":"File Sharing and Storage","Auth":"OAuth","HTTPS":true,"Link":"https://dev.onedrive.com/"}],"Currency Exchange":[{"API":"Currencylayer","Description":"Exchange rates and currency conversion","Auth":"apiKey","HTTPS":true,"Link":"https://currencylayer.com/documentation"},{"API":"Fixer.io","Description":"Exchange rates and currency conversion","Auth":null,"HTTPS":true,"Link":"http://fixer.io"}],"Data Access":[{"API":"18F","Description":"US Federal Government /Developer Program","Auth":null,"HTTPS":false,"Link":"http://18f.github.io/API-All-the-X/"},{"API":"Abbreviation","Description":"Get abbreviations and meanings","Auth":"X-Mashape-Key","HTTPS":true,"Link":"https://market.mashape.com/daxeel/abbreviations"},{"API":"CARTO","Description":"Location Information Prediction","Auth":"apiKey","HTTPS":true,"Link":"https://carto.com/"},{"API":"Callook.info","Description":"United States ham radio callsigns","Auth":null,"HTTPS":true,"Link":"https://callook.info"},{"API":"Celebinfo","Description":"Celebrity information","Auth":"X-Mashape-Key","HTTPS":true,"Link":"https://market.mashape.com/daxeel/celebinfo/"},{"API":"Colorado Data Engine","Description":"Formatted and geolocated Colorado public data","Auth":null,"HTTPS":true,"Link":"http://codataengine.org/"},{"API":"Colorado Information Marketplace","Description":"Colorado State Government Open Data","Auth":null,"HTTPS":true,"Link":"https://data.colorado.gov/"},{"API":"Datakick","Description":"The open product database","Auth":"apiKey","HTTPS":true,"Link":"https://www.datakick.org/api"},{"API":"Data USA","Description":"US Public Data","Auth":null,"HTTPS":true,"Link":"https://datausa.io/about/api/"},{"API":"Dronestream","Description":"Tracks United States drone strikes","Auth":null,"HTTPS":true,"Link":"https://dronestre.am/"},{"API":"fonoApi","Description":"Mobile Device Description","Auth":null,"HTTPS":true,"Link":"https://fonoapi.freshpixl.com/"},{"API":"Open Government, Australia","Description":"Australian Government Open Data","Auth":null,"HTTPS":true,"Link":"https://www.data.gov.au/"},{"API":"Open Government, USA","Description":"United States Government Open Data","Auth":null,"HTTPS":true,"Link":"https://www.data.gov/"},{"API":"Open Government, Canada","Description":"Canadian Government Open Data","Auth":null,"HTTPS":false,"Link":"http://open.canada.ca/en"},{"API":"Open Government Data, India","Description":"Indian Government Open Data","Auth":"apiKey","HTTPS":true,"Link":"https://data.gov.in/"},{"API":"Open Government, New Zealand","Description":"New Zealand Government Open Data","Auth":null,"HTTPS":true,"Link":"https://www.data.govt.nz/"},{"API":"Outpan","Description":"A Database of Everything","Auth":"apiKey","HTTPS":true,"Link":"https://outpan.mixnode.com/developers"},{"API":"Pearson","Description":"Dictionary Data","Auth":"apiKey","HTTPS":false,"Link":"http://developer.pearson.com/apis/dictionaries"},{"API":"Prague Opendata","Description":"Prague City Open Data","Auth":null,"HTTPS":false,"Link":"http://opendata.praha.eu/en"},{"API":"Quandl","Description":"Stock Market Data","Auth":null,"HTTPS":true,"Link":"https://www.quandl.com/"},{"API":"Represent by Open North","Description":"Find Canadian Government Representatives","Auth":null,"HTTPS":true,"Link":"https://represent.opennorth.ca/"},{"API":"Scoop.it","Description":"Content Curation Service","Auth":"apiKey","HTTPS":false,"Link":"http://www.scoop.it/dev"},{"API":"Teleport","Description":"Quality of Life Data","Auth":null,"HTTPS":true,"Link":"https://developers.teleport.org/"},{"API":"UPC database","Description":"More than 15 million barcode numbers from all around the world","Auth":"apiKey","HTTPS":true,"Link":"https://upcdatabase.org/api"},{"API":"Wikipedia","Description":"Mediawiki Encyclopedia","Auth":null,"HTTPS":true,"Link":"https://www.mediawiki.org/wiki/API:Main_page"},{"API":"Wordnik","Description":"Dictionary Data","Auth":null,"HTTPS":false,"Link":"http://developer.wordnik.com"},{"API":"Yelp","Description":"Find Local Business","Auth":"OAuth","HTTPS":true,"Link":"https://www.yelp.com/developers/documentation/v3"}],"Data Validation":[{"API":"languagelayer","Description":"Language detection","Auth":null,"HTTPS":true,"Link":"https://languagelayer.com"},{"API":"Lob.com","Description":"US Address Verification","Auth":"apiKey","HTTPS":true,"Link":"https://lob.com/"},{"API":"mailboxlayer","Description":"Email address validation","Auth":null,"HTTPS":true,"Link":"https://mailboxlayer.com"},{"API":"numverify","Description":"Phone number validation","Auth":null,"HTTPS":true,"Link":"https://numverify.com"},{"API":"vatlayer","Description":"VAT number validation","Auth":null,"HTTPS":true,"Link":"https://vatlayer.com"}],"Development":[{"API":"Adorable Avatars","Description":"Generate random cartoon avatars","Auth":null,"HTTPS":true,"Link":"http://avatars.adorable.io"},{"API":"APIs.guru","Description":"Wikipedia for Web APIs, OpenAPI/Swagger specs for public APIs","Auth":null,"HTTPS":true,"Link":"https://apis.guru/api-doc/"},{"API":"BetterMeta","Description":"Return a site's meta tags in JSON format","Auth":"X-Mashape-Key","HTTPS":true,"Link":"http://bettermeta.io"},{"API":"Changelogs.md","Description":"Structured changelog metadata from open source projects","Auth":null,"HTTPS":true,"Link":"https://changelogs.md"},{"API":"CDNJS","Description":"Library info on CDNJS","Auth":null,"HTTPS":true,"Link":"https://api.cdnjs.com/libraries/jquery"},{"API":"Faceplusplus","Description":"A tool to detect face","Auth":"OAuth","HTTPS":true,"Link":"https://www.faceplusplus.com/"},{"API":"Genderize.io","Description":"Determines a gender from a first name","Auth":null,"HTTPS":true,"Link":"https://genderize.io"},{"API":"Github - User Data","Description":"Pull public information for a user's github","Auth":null,"HTTPS":true,"Link":"https://api.github.com/users/hackeryou"},{"API":"Gitter","Description":"Chat for GitHub","Auth":"OAuth","HTTPS":true,"Link":"https://github.com/gitterHQ/docs"},{"API":"HackerRank","Description":"Compile source code and run against a set of provided test cases","Auth":"apiKey","HTTPS":true,"Link":"https://www.hackerrank.com/api/docs"},{"API":"Hipster Ipsum","Description":"Generates Hipster Ipsum text","Auth":null,"HTTPS":false,"Link":"http://hipsterjesus.com/"},{"API":"IPify","Description":"A simple IP Address API","Auth":null,"HTTPS":true,"Link":"https://www.ipify.org/"},{"API":"JSON 2 JSONP","Description":"Convert JSON to JSONP (on-the-fly) for easy cross-domain data requests using client-side JavaScript","Auth":null,"HTTPS":true,"Link":"https://json2jsonp.com/"},{"API":"JSONbin.io","Description":"Free JSON storage service Ideal for small scale Web apps, Websites and Mobile apps","Auth":null,"HTTPS":true,"Link":"https://jsonbin.io"},{"API":"JSONPlaceholder","Description":"Fake data for testing and prototyping","Auth":null,"HTTPS":false,"Link":"http://jsonplaceholder.typicode.com/"},{"API":"Judge0 API","Description":"Compile and run source code","Auth":null,"HTTPS":true,"Link":"https://api.judge0.com/"},{"API":"Kairos","Description":"Face Recognition and Emotion Analysis","Auth":"apiKey","HTTPS":true,"Link":"https://www.kairos.com/features"},{"API":"Let's Validate","Description":"Uncovers the technologies used on websites and URL to thumbnail","Auth":null,"HTTPS":true,"Link":"https://github.com/letsvalidate/api"},{"API":"LiveEdu","Description":"Live Coding Streaming","Auth":"OAuth","HTTPS":true,"Link":"https://www.liveedu.tv/developer/applications/"},{"API":"Lorem Text","Description":"Generates Lorem Ipsum text","Auth":"X-Mashape-Key","HTTPS":true,"Link":"https://market.mashape.com/montanaflynn/lorem-text-generator"},{"API":"Loripsum","Description":"The \"lorem ipsum\" generator that doesn't suck","Auth":null,"HTTPS":false,"Link":"http://loripsum.net/"},{"API":"Myjson","Description":"A simple JSON store for your web or mobile app","Auth":null,"HTTPS":false,"Link":"http://myjson.com/api"},{"API":"Plino","Description":"Spam filtering system","Auth":null,"HTTPS":true,"Link":"https://plino.herokuapp.com/"},{"API":"Public APIs","Description":"A collective list of free JSON APIs for use in web development","Auth":null,"HTTPS":true,"Link":"https://github.com/toddmotto/public-apis/tree/master/json"},{"API":"Random Word","Description":"Generate random word","Auth":null,"HTTPS":false,"Link":"http://www.setgetgo.com/randomword/"},{"API":"RandomUser","Description":"Generates random user data","Auth":null,"HTTPS":true,"Link":"https://randomuser.me"},{"API":"ReqRes","Description":"A hosted REST-API ready to respond to your AJAX requests","Auth":null,"HTTPS":true,"Link":"https://reqres.in/ "},{"API":"RoboHash","Description":"Generate random robot/alien avatars","Auth":null,"HTTPS":true,"Link":"https://robohash.org/"},{"API":"StackExchange","Description":"Q&A forum for developers","Auth":"OAuth","HTTPS":true,"Link":"https://api.stackexchange.com/"},{"API":"Stormpath","Description":"User Authentication","Auth":"apiKey","HTTPS":true,"Link":"https://stormpath.com/"},{"API":"UI Names","Description":"Generate random fake names","Auth":null,"HTTPS":true,"Link":"https://github.com/thm/uinames"},{"API":"Verse","Description":"Check what's the latest version of your favorite open-source project","Auth":null,"HTTPS":true,"Link":"https://verse.pawelad.xyz/"}],"Documents & Productivity":[{"API":"File.io","Description":"File Sharing","Auth":null,"HTTPS":true,"Link":"https://www.file.io"},{"API":"pdflayer API","Description":"HTML/URL to PDF","Auth":null,"HTTPS":true,"Link":"https://pdflayer.com"},{"API":"Pocket","Description":"Bookmarking service","Auth":"OAuth","HTTPS":true,"Link":"https://getpocket.com/developer/"},{"API":"PrexView","Description":"Data from XML or JSON to PDF, HTML or Image","Auth":"apiKey","HTTPS":true,"Link":"https://prexview.com"},{"API":"Todoist","Description":"Todo Lists","Auth":"OAuth","HTTPS":true,"Link":"https://developer.todoist.com"},{"API":"Wunderlist","Description":"Todo Lists","Auth":"OAuth","HTTPS":true,"Link":"https://developer.wunderlist.com/documentation"}],"Environment":[{"API":"AirVisual","Description":"Air quality and weather data","Auth":"apiKey","HTTPS":true,"Link":"https://airvisual.com/api"},{"API":"OpenAQ","Description":"Open air quality data","Auth":"apiKey","HTTPS":true,"Link":"https://docs.openaq.org/"},{"API":"PM2.5.in","Description":"Air quality of China","Auth":"apiKey","HTTPS":false,"Link":"http://www.pm25.in/api_doc"}],"Finance":[{"API":"Barchart OnDemand","Description":"Stock, Futures, and Forex Market Data","Auth":"apiKey","HTTPS":true,"Link":"https://www.barchartondemand.com/free"},{"API":"CoinDesk","Description":"Bitcoin Price Index","Auth":null,"HTTPS":false,"Link":"http://www.coindesk.com/api/"},{"API":"Consumer Financial Protection Bureau","Description":"Financial services consumer complains data","Auth":"apiKey","HTTPS":true,"Link":"https://data.consumerfinance.gov/resource/jhzv-w97w.json"},{"API":"IEX","Description":"Stocks and Market Data","Auth":null,"HTTPS":true,"Link":"https://iextrading.com/developer/"},{"API":"Razorpay IFSC","Description":"Indian Financial Systems Code (Bank Branch Codes)","Auth":null,"HTTPS":true,"Link":"https://ifsc.razorpay.com/"}],"Food & Drink":[{"API":"BigOven","Description":"Recipe Search","Auth":"X-Mashape-Key","HTTPS":false,"Link":"http://api2.bigoven.com/"},{"API":"BreweryDB","Description":"Beer","Auth":"apiKey","HTTPS":false,"Link":"http://www.brewerydb.com/developers"},{"API":"Edamam","Description":"Recipe Search","Auth":"apiKey","HTTPS":true,"Link":"https://developer.edamam.com/"},{"API":"Food2Fork","Description":"Recipe Search","Auth":"apiKey","HTTPS":false,"Link":"http://food2fork.com/about/api"},{"API":"LCBO","Description":"Alcohol","Auth":"apiKey","HTTPS":true,"Link":"https://lcboapi.com/"},{"API":"PunkAPI","Description":"Brewdog Beer Recipes","Auth":null,"HTTPS":true,"Link":"https://punkapi.com/"},{"API":"Recipe Puppy","Description":"Food","Auth":null,"HTTPS":false,"Link":"http://www.recipepuppy.com/about/api/"},{"API":"TacoFancy","Description":"Community-driven taco database","Auth":null,"HTTPS":false,"Link":"https://github.com/evz/tacofancy-api"},{"API":"TheCocktailDB","Description":"Cocktail Recipes","Auth":null,"HTTPS":false,"Link":"http://www.thecocktaildb.com/"},{"API":"The Report of the Week","Description":"Food & Drink Reviews","Auth":null,"HTTPS":true,"Link":"https://github.com/andyklimczak/TheReportOfTheWeek-API"},{"API":"What's on the menu?","Description":"NYPL human-transcribed historical menu collection","Auth":"apiKey","HTTPS":false,"Link":"nypl.github.io/menus-api/"},{"API":"Yummly","Description":"Find food recipes","Auth":null,"HTTPS":true,"Link":"https://developer.yummly.com/"},{"API":"Zomato","Description":"Discover restaurants","Auth":"apiKey","HTTPS":true,"Link":"https://developers.zomato.com/api"}],"Fraud Prevention":[{"API":"Whitepages Pro","Description":"Global identity verification with phone, address, email, and IP","Auth":"apiKey","HTTPS":true,"Link":"https://pro.whitepages.com/developer/documentation/identity-check-api/"},{"API":"Whitepages Pro","Description":"Phone reputation to detect spammy phones","Auth":"apiKey","HTTPS":true,"Link":"https://pro.whitepages.com/developer/documentation/phone-reputation-api/"},{"API":"Whitepages Pro","Description":"Get an owner’s name, address, demographics based on the phone number","Auth":"apiKey","HTTPS":true,"Link":"https://pro.whitepages.com/developer/documentation/reverse-phone-api/"},{"API":"Whitepages Pro","Description":"Phone number validation, line_type, carrier append","Auth":"apiKey","HTTPS":true,"Link":"https://pro.whitepages.com/developer/documentation/phone-intelligence-api/"},{"API":"Whitepages Pro","Description":"Get normalized physical address, residents, address type, and validity","Auth":"apiKey","HTTPS":true,"Link":"https://pro.whitepages.com/developer/documentation/reverse-address-api/"}],"Games & Comics":[{"API":"Battle.net","Description":"Blizzard Entertainment","Auth":null,"HTTPS":true,"Link":"https://dev.battle.net/"},{"API":"Battlefield 4","Description":"Battlefield 4 Information","Auth":null,"HTTPS":true,"Link":"https://bf4stats.com/api"},{"API":"Chuck Norris Database","Description":"Jokes","Auth":null,"HTTPS":false,"Link":"http://www.icndb.com/api/"},{"API":"Clash of Clans","Description":"Clash of Clans Game Information","Auth":null,"HTTPS":true,"Link":"https://developer.clashofclans.com"},{"API":"Clash Royale","Description":"Clash Royale Game Information","Auth":null,"HTTPS":true,"Link":"https://github.com/martincarrera/clash-royale-api"},{"API":"Comic Vine","Description":"Comics","Auth":null,"HTTPS":true,"Link":"https://comicvine.gamespot.com/api/documentation"},{"API":"Deck of Cards","Description":"Deck of Cards","Auth":null,"HTTPS":false,"Link":"http://deckofcardsapi.com/"},{"API":"Destiny The Game","Description":"Bungie Platform API","Auth":"apiKey","HTTPS":true,"Link":"https://www.bungie.net/en/Clan/Post/39966/85087279/0/0"},{"API":"Eve Online","Description":"Third-Party Developer Documentation","Auth":"OAuth","HTTPS":true,"Link":"https://eveonline-third-party-documentation.readthedocs.io/en/latest/"},{"API":"Giant Bomb","Description":"Video Games","Auth":null,"HTTPS":true,"Link":"https://www.giantbomb.com/api/documentation"},{"API":"Guild Wars 2","Description":"Guild Wars 2 Game Information","Auth":"apiKey","HTTPS":true,"Link":"https://wiki.guildwars2.com/wiki/API:Main"},{"API":"Jservice","Description":"Jeopardy Question Database","Auth":null,"HTTPS":false,"Link":"http://jservice.io"},{"API":"Magic The Gathering","Description":"Magic The Gathering Game Information","Auth":null,"HTTPS":false,"Link":"http://magicthegathering.io/"},{"API":"Marvel","Description":"Marvel Comics","Auth":"apiKey","HTTPS":false,"Link":"http://developer.marvel.com"},{"API":"Minecraft","Description":"Minecraft server info & user info)","Auth":null,"HTTPS":true,"Link":"https://mcapi.ca/"},{"API":"Open Trivia","Description":"Trivia Questions","Auth":null,"HTTPS":true,"Link":"https://opentdb.com/api_config.php"},{"API":"PandaScore","Description":"E-sports games and results","Auth":"apiKey","HTTPS":true,"Link":"https://api.pandascore.co"},{"API":"Pokéapi","Description":"Pokémon Information","Auth":null,"HTTPS":false,"Link":"http://pokeapi.co"},{"API":"Qriusity","Description":"Quiz/Trivia Questions","Auth":null,"HTTPS":true,"Link":"https://qriusity.com/"},{"API":"Riot Games","Description":"League of Legends Game Information","Auth":"apiKey","HTTPS":true,"Link":"https://developer.riotgames.com/"},{"API":"Steam","Description":"Steam Client Interaction","Auth":"OAuth","HTTPS":true,"Link":"https://developer.valvesoftware.com/wiki/Steam_Web_API"}],"Geocoding":[{"API":"adresse.data.gouv.fr","Description":"Address database of France, geocoding, and reverse","Auth":null,"HTTPS":true,"Link":"https://adresse.data.gouv.fr"},{"API":"Bing Maps","Description":"Create/customize digital maps based on Bing Maps data","Auth":"apiKey","HTTPS":true,"Link":"https://www.microsoft.com/maps/"},{"API":"Geocode.xyz","Description":"Provides worldwide forward/reverse geocoding, batch geocoding and geoparsing","Auth":null,"HTTPS":true,"Link":"https://geocode.xyz/"},{"API":"GeoNames","Description":"Place names and other geographical data","Auth":null,"HTTPS":false,"Link":"http://www.geonames.org/export/web-services.html"},{"API":"GéoApi","Description":"French geographical data","Auth":null,"HTTPS":true,"Link":"https://api.gouv.fr/api/geoapi.html"},{"API":"Google Maps","Description":"Create/customize digital maps based on Google Maps data","Auth":"apiKey","HTTPS":true,"Link":"https://developers.google.com/maps/"},{"API":"IP 2 Country","Description":"Map an IP to a country","Auth":null,"HTTPS":true,"Link":"https://ip2country.info"},{"API":"IP Address Details","Description":"Find geolocation with ip address","Auth":null,"HTTPS":true,"Link":"https://ipinfo.io/"},{"API":"IP Location","Description":"Find IP address location information","Auth":null,"HTTPS":true,"Link":"https://ipapi.co/"},{"API":"IP Vigilante","Description":"Free IP Geolocation API","Auth":null,"HTTPS":true,"Link":"https://www.ipvigilante.com/"},{"API":"Mapbox","Description":"Create/customize beautiful digital maps","Auth":"apiKey","HTTPS":true,"Link":"https://www.mapbox.com/developers/"},{"API":"Mapzen Search","Description":"Open Source & Open Data Global Geocoding Service","Auth":"apiKey","HTTPS":true,"Link":"https://mapzen.com/products/search/"},{"API":"Mexico","Description":"Mexico RESTful zip codes API","Auth":null,"HTTPS":true,"Link":"https://github.com/IcaliaLabs/sepomex"},{"API":"One Map 2.0, Singapore","Description":"Singapore Land Authority REST API services for Singapore addresses","Auth":"apiKey","HTTPS":true,"Link":"https://docs.onemap.sg/"},{"API":"OnWater","Description":"Determine if a lat/lon is on water or land","Auth":null,"HTTPS":true,"Link":"https://onwater.io/"},{"API":"OpenCage","Description":"Forward and reverse geocoding using open data","Auth":null,"HTTPS":true,"Link":"https://geocoder.opencagedata.com"},{"API":"OpenStreetMap","Description":"Navigation, geolocation and geographical data","Auth":"OAuth","HTTPS":false,"Link":"http://wiki.openstreetmap.org/wiki/API"},{"API":"PostcodeData.nl","Description":"Provide geolocation data based on postcode for Dutch addresses","Auth":null,"HTTPS":false,"Link":"http://api.postcodedata.nl/v1/postcode/?postcode=1211EP&streetnumber=60&ref=domeinnaam.nl&type=json"},{"API":"Postcodes.io","Description":"Postcode lookup & Geolocation for the UK","Auth":null,"HTTPS":true,"Link":"https://postcodes.io"},{"API":"REST Countries","Description":"Get information about countries via a RESTful API","Auth":null,"HTTPS":true,"Link":"https://restcountries.eu"},{"API":"Utah AGRC","Description":"Utah Web API for geocoding Utah addresses","Auth":"apiKey","HTTPS":true,"Link":"https://api.mapserv.utah.gov"},{"API":"ViaCep","Description":"Brazil RESTful zip codes API","Auth":null,"HTTPS":true,"Link":"https://viacep.com.br"},{"API":"Zippopotam","Description":"Get information about place such as country, city, state, etc","Auth":null,"HTTPS":false,"Link":"http://www.zippopotam.us"}],"Health":[{"API":"Diabetes","Description":"Logging and retrieving diabetes information","Auth":null,"HTTPS":false,"Link":"http://predictbgl.com/api/"},{"API":"Flutrack","Description":"Influenza-like symptoms with geotracking","Auth":null,"HTTPS":false,"Link":"http://www.flutrack.org/"},{"API":"Makeup","Description":"Makeup Information","Auth":null,"HTTPS":false,"Link":"http://makeup-api.herokuapp.com/"},{"API":"Medicare","Description":"Access to the data from the CMS - medicaregov","Auth":null,"HTTPS":true,"Link":"https://data.medicare.gov/developers"},{"API":"Nutritionix","Description":"Worlds largest verified nutrition database","Auth":"apiKey","HTTPS":true,"Link":"https://developer.nutritionix.com/"},{"API":"openFDA","Description":"Public FDA data about drugs, devices, and foods","Auth":null,"HTTPS":true,"Link":"https://open.fda.gov/api/"},{"API":"USDA Nutrients","Description":"National Nutrient Database for Standard Reference","Auth":null,"HTTPS":true,"Link":"https://ndb.nal.usda.gov/ndb/doc/index"}],"Machine Learning":[{"API":"API.AI","Description":"Natural Language Processing","Auth":"apiKey","HTTPS":true,"Link":"https://api.ai/"},{"API":"Clarifai","Description":"Computer Vision","Auth":"OAuth","HTTPS":true,"Link":"https://developer.clarifai.com/"},{"API":"Cleverbot","Description":"Web chat bot","Auth":"apiKey","HTTPS":true,"Link":"https://www.cleverbot.com/api/"},{"API":"Keen IO","Description":"Data Analytics","Auth":"apiKey","HTTPS":true,"Link":"https://keen.io/"},{"API":"Unplugg","Description":"Forecasting API for timeseries data","Auth":"apiKey","HTTPS":true,"Link":"https://unplu.gg/test_api.html"},{"API":"Wit.ai","Description":"Natural Language Processing","Auth":"OAuth","HTTPS":true,"Link":"https://wit.ai/"}],"Math":[{"API":"Newton","Description":"Symbolic and Arithmetic Math Calculator","Auth":null,"HTTPS":true,"Link":"https://newton.now.sh/"},{"API":"Numbers API","Description":"Facts about numbers","Auth":null,"HTTPS":false,"Link":"http://numbersapi.com"}],"Music":[{"API":"Bandsintown","Description":"Music Events","Auth":null,"HTTPS":true,"Link":"https://app.swaggerhub.com/apis/Bandsintown/PublicAPI/3.0.0"},{"API":"Deezer","Description":"Music","Auth":"OAuth","HTTPS":false,"Link":"http://developers.deezer.com/login?redirect=/api"},{"API":"Discogs","Description":"Music","Auth":"OAuth","HTTPS":true,"Link":"https://www.discogs.com/developers/"},{"API":"Genius","Description":"Crowdsourced lyrics and music knowledge","Auth":"OAuth","HTTPS":true,"Link":"https://docs.genius.com/"},{"API":"Jamendo","Description":"Music","Auth":"OAuth","HTTPS":true,"Link":"https://developer.jamendo.com/v3.0"},{"API":"iTunes Search","Description":"Software products","Auth":null,"HTTPS":true,"Link":"https://affiliate.itunes.apple.com/resources/documentation/itunes-store-web-service-search-api/"},{"API":"LastFm","Description":"Music","Auth":"apiKey","HTTPS":false,"Link":"http://www.last.fm/api"},{"API":"Mixcloud","Description":"Music","Auth":null,"HTTPS":true,"Link":"https://www.mixcloud.com/developers/"},{"API":"MusicBrainz","Description":"Music","Auth":null,"HTTPS":true,"Link":"https://musicbrainz.org/doc/Development/XML_Web_Service/Version_2"},{"API":"Musikki","Description":"Music","Auth":"apiKey","HTTPS":true,"Link":"https://music-api.musikki.com/reference"},{"API":"Musixmatch","Description":"Music","Auth":"apiKey","HTTPS":true,"Link":"https://developer.musixmatch.com/"},{"API":"Songkick","Description":"Music Events","Auth":"OAuth","HTTPS":true,"Link":"https://www.songkick.com/developer/"},{"API":"Songsterr","Description":"Provides guitar, bass and drums tabs and chords","Auth":null,"HTTPS":true,"Link":"https://www.songsterr.com/a/wa/api/"},{"API":"Soundcloud","Description":"Music","Auth":null,"HTTPS":true,"Link":"https://developers.soundcloud.com/"},{"API":"Spotify","Description":"Music","Auth":"OAuth","HTTPS":true,"Link":"https://developer.spotify.com/web-api/"},{"API":"Vagalume","Description":"Crowdsourced lyrics and music knowledge","Auth":"apiKey","HTTPS":true,"Link":"https://api.vagalume.com.br/docs/"}],"News":[{"API":"Chronicling America","Description":"Provides access to millions of pages of historic US newspapers from the Library of Congress","Auth":null,"HTTPS":false,"Link":"http://chroniclingamerica.loc.gov/about/api/"},{"API":"New York Times","Description":"Provides news","Auth":"apiKey","HTTPS":true,"Link":"https://developer.nytimes.com/"},{"API":"News API","Description":"Headlines currently published on a range of news sources and blogs","Auth":"apiKey","HTTPS":true,"Link":"https://newsapi.org/"},{"API":"The Guardian","Description":"Access all the content the Guardian creates, categorised by tags and section","Auth":"apiKey","HTTPS":true,"Link":"http://open-platform.theguardian.com/"}],"Open Source projects":[{"API":"Countly","Description":"Countly web analytics","Auth":null,"HTTPS":false,"Link":"http://resources.count.ly/docs"},{"API":"Drupal.org","Description":"Drupalorg","Auth":null,"HTTPS":true,"Link":"https://www.drupal.org/drupalorg/docs/api"},{"API":"Libraries.io","Description":"Open source software libraries","Auth":"apiKey","HTTPS":true,"Link":"https://libraries.io/api"}],"Personality":[{"API":"chucknorris.io","Description":"JSON API for hand curated Chuck Norris jokes","Auth":null,"HTTPS":true,"Link":"https://api.chucknorris.io"},{"API":"Forismatic","Description":"Inspirational Quotes","Auth":null,"HTTPS":false,"Link":"http://forismatic.com/en/api/"},{"API":"icanhazdadjoke","Description":"The largest selection of dad jokes on the internet","Auth":null,"HTTPS":true,"Link":"https://icanhazdadjoke.com/api"},{"API":"Medium","Description":"Community of readers and writers offering unique perspectives on ideas","Auth":"OAuth","HTTPS":true,"Link":"https://github.com/Medium/medium-api-docs"},{"API":"Quotes on Design","Description":"Inspirational Quotes","Auth":null,"HTTPS":true,"Link":"https://quotesondesign.com/api-v4-0/"},{"API":"Traitify","Description":"Assess, collect, and analyze Personality","Auth":null,"HTTPS":true,"Link":"https://app.traitify.com/developer"},{"API":"tronalddump.io","Description":"Api & web archive for the things Donald Trump has said","Auth":null,"HTTPS":true,"Link":"https://www.tronalddump.io"}],"Photography":[{"API":"500px","Description":"Photography Community","Auth":"OAuth","HTTPS":true,"Link":"https://github.com/500px/api-documentation"},{"API":"Flickr","Description":"Flickr Services","Auth":"OAuth","HTTPS":true,"Link":"https://www.flickr.com/services/api/"},{"API":"Gfycat","Description":"Jiffier GIFs","Auth":"OAuth","HTTPS":true,"Link":"https://developers.gfycat.com/api/"},{"API":"Giphy","Description":"Get all your gifs","Auth":null,"HTTPS":true,"Link":"https://github.com/Giphy/GiphyAPI"},{"API":"Imgur","Description":"Images","Auth":"OAuth","HTTPS":true,"Link":"https://api.imgur.com/#overview"},{"API":"ScreenShotLayer","Description":"URL 2 Image","Auth":null,"HTTPS":true,"Link":"https://screenshotlayer.com"},{"API":"Unsplash","Description":"Photography","Auth":"OAuth","HTTPS":true,"Link":"https://unsplash.com/developers"},{"API":"PlaceKitten","Description":"Resizable kitten placeholder images","Auth":null,"HTTPS":true,"Link":"https://placekitten.com/"}],"Science":[{"API":"arcsecond.io","Description":"Multiple astronomy data sources","Auth":null,"HTTPS":true,"Link":"https://api.arcsecond.io/"},{"API":"CORE","Description":"Access the world's Open Access research papers","Auth":"apiKey","HTTPS":true,"Link":"https://core.ac.uk/services#api"},{"API":"Fedger.io","Description":"Query machine intelligence data","Auth":null,"HTTPS":true,"Link":"https://dev.fedger.io/docs/"},{"API":"inspirehep.net","Description":"High Energy Physics info system","Auth":null,"HTTPS":true,"Link":"https://inspirehep.net/info/hep/api?ln=en"},{"API":"Launch Library","Description":"Upcoming Space Launches","Auth":null,"HTTPS":true,"Link":"https://launchlibrary.net/1.2/docs/api.html"},{"API":"Minor Planet Center","Description":"Asterankcom Information","Auth":null,"HTTPS":false,"Link":"http://www.asterank.com/mpc"},{"API":"NASA","Description":"NASA data, including imagery","Auth":null,"HTTPS":true,"Link":"https://api.nasa.gov"},{"API":"Open Notify","Description":"ISS astronauts, current location, etc","Auth":null,"HTTPS":false,"Link":"http://open-notify.org/Open-Notify-API/"},{"API":"Sunrise and Sunset","Description":"Sunset and sunrise times for a given latitude and longitude","Auth":null,"HTTPS":true,"Link":"https://sunrise-sunset.org/api"},{"API":"USGS Earthquake Hazards Program","Description":"Earthquakes data real-time","Auth":null,"HTTPS":true,"Link":"https://earthquake.usgs.gov/fdsnws/event/1/"},{"API":"USGS Water Services","Description":"Water quality and level info for rivers and lakes","Auth":null,"HTTPS":true,"Link":"https://waterservices.usgs.gov/"},{"API":"World Bank","Description":"World Data","Auth":null,"HTTPS":false,"Link":"https://datahelpdesk.worldbank.org/knowledgebase/topics/125589"}],"Security":[{"API":"AXFR Database","Description":"AXFR public database","Auth":null,"HTTPS":false,"Link":"http://api.axfrcheck.com"},{"API":"UK Police","Description":"UK Police data","Auth":null,"HTTPS":true,"Link":"https://data.police.uk/docs/"}],"Shopping":[{"API":"eBay","Description":"Sell and Buy on eBay","Auth":"OAuth","HTTPS":true,"Link":"https://go.developer.ebay.com/"}],"Social":[{"API":"Cisco Spark","Description":"Team Collaboration Software","Auth":"OAuth","HTTPS":true,"Link":"https://developer.ciscospark.com"},{"API":"Discord","Description":"Make bots for Discord, integrate Discord onto an external platform","Auth":"OAuth","HTTPS":true,"Link":"https://discordapp.com/developers/docs/intro"},{"API":"DonReach Social Count","Description":"Get the social share count of a URL from every major social network","Auth":null,"HTTPS":true,"Link":"https://donreach.com/social-share-count/"},{"API":"Facebook","Description":"Facebook Login, Share on FB, Social Plugins, Analytics and more","Auth":"OAuth","HTTPS":true,"Link":"https://developers.facebook.com/"},{"API":"Foursquare","Description":"Interact with Foursquare users and places (geolocation-based checkins, photos, tips, events, etc)","Auth":"OAuth","HTTPS":true,"Link":"https://developer.foursquare.com/"},{"API":"Fuck Off as a Service","Description":"Asks someone to fuck off","Auth":null,"HTTPS":true,"Link":"https://www.foaas.com"},{"API":"Full Contact","Description":"Get Social Media profiles and contact Information","Auth":"OAuth","HTTPS":true,"Link":"https://www.fullcontact.com/developer/docs/"},{"API":"HackerNews","Description":"Social news for CS and entrepreneurship","Auth":null,"HTTPS":true,"Link":"https://github.com/HackerNews/API"},{"API":"Instagram","Description":"Instagram Login, Share on Instagram, Social Plugins and more","Auth":"OAuth","HTTPS":true,"Link":"https://www.instagram.com/developer/"},{"API":"LinkedIn","Description":"The foundation of all digital integrations with LinkedIn","Auth":"OAuth","HTTPS":true,"Link":"https://developer.linkedin.com/docs/rest-api"},{"API":"Meetup.com","Description":"Data about Meetups from Meetupcom","Auth":"apiKey","HTTPS":true,"Link":"https://www.meetup.com/meetup_api/"},{"API":"Telegram MTProto","Description":"Read and write Telegram data","Auth":"OAuth","HTTPS":true,"Link":"https://core.telegram.org/api#getting-started"},{"API":"Telegram bot","Description":"Simplified HTTP version of the MTProto API for bots","Auth":"OAuth","HTTPS":true,"Link":"https://core.telegram.org/bots/api"},{"API":"Pinterest","Description":"The world's catalog of ideas","Auth":"OAuth","HTTPS":true,"Link":"https://developers.pinterest.com/"},{"API":"PWRTelegram bot","Description":"Boosted version of the Telegram bot API","Auth":"OAuth","HTTPS":true,"Link":"https://pwrtelegram.xyz"},{"API":"Reddit","Description":"Homepage of the internet","Auth":"OAuth","HTTPS":true,"Link":"https://www.reddit.com/dev/api"},{"API":"Slack","Description":"Team Instant Messaging","Auth":"OAuth","HTTPS":true,"Link":"https://api.slack.com/"},{"API":"Tumblr","Description":"Read and write Tumblr Data","Auth":"OAuth","HTTPS":true,"Link":"https://www.tumblr.com/docs/en/api/v2"},{"API":"Twitch","Description":"Game Streaming API","Auth":"OAuth","HTTPS":true,"Link":"https://github.com/justintv/Twitch-API"},{"API":"Twitter","Description":"Read and write Twitter data","Auth":"OAuth","HTTPS":true,"Link":"https://dev.twitter.com/rest/public"},{"API":"vk","Description":"Read and write vk data","Auth":"OAuth","HTTPS":true,"Link":"https://vk.com/dev/sites"}],"Sports & Fitness":[{"API":"Cartola FC","Description":"The Cartola FC API serves to check the partial points of your team","Auth":null,"HTTPS":true,"Link":"https://github.com/wgenial/cartrolandofc"},{"API":"City Bikes","Description":"City Bikes around the world","Auth":null,"HTTPS":false,"Link":"http://api.citybik.es/v2/"},{"API":"Ergast F1","Description":"F1 data from the beginning of the world championships in 1950","Auth":null,"HTTPS":false,"Link":"http://ergast.com/mrd/"},{"API":"Fitbit","Description":"Fitbit Information","Auth":"OAuth","HTTPS":true,"Link":"https://dev.fitbit.com/"},{"API":"Football-Data.org","Description":"Football Data","Auth":null,"HTTPS":false,"Link":"http://api.football-data.org/index"},{"API":"JCDecaux Bike","Description":"JCDecaux's self-service bicycles","Auth":"apiKey","HTTPS":true,"Link":"https://developer.jcdecaux.com/"},{"API":"Cricket Live Scores","Description":"Live cricket scores","Auth":"X-Mashape-Key","HTTPS":true,"Link":"https://market.mashape.com/dev132/cricket-live-scores"},{"API":"NFL Arrests","Description":"NFL Arrest Data","Auth":null,"HTTPS":false,"Link":"http://nflarrest.com/api/"},{"API":"Pro Motocross","Description":"The RESTful AMA Pro Motocross lap times for every racer on the start gate","Auth":null,"HTTPS":false,"Link":"http://promotocrossapi.com"},{"API":"Strava","Description":"Connect with athletes, activities and more","Auth":"OAuth","HTTPS":true,"Link":"https://strava.github.io/api/"},{"API":"UFC Data","Description":"Ultimate Fighting Championship information for events and fighters","Auth":null,"HTTPS":false,"Link":"http://ufc-data-api.ufc.com/"},{"API":"Wger","Description":"Workout manager data as exercises, muscles or equipment","Auth":"apiKey","HTTPS":true,"Link":"https://wger.de/en/software/api"}],"Tracking":[{"API":"Postmon","Description":"An API to query Brazilian ZIP codes and orders easily, quickly and free","Auth":null,"HTTPS":false,"Link":"http://postmon.com.br"},{"API":"Sweden","Description":"Provides information about parcels in transport","Auth":"apiKey","HTTPS":false,"Link":"https://developer.postnord.com/docs2"}],"Transportation":[{"API":"ADS-B Exchange","Description":"Access real-time and historical data of any and all airbone aircraft","Auth":null,"HTTPS":true,"Link":"https://www.adsbexchange.com/data/"},{"API":"Amadeus Travel Innovation Sandbox","Description":"Travel Search - Limited usage","Auth":"apiKey","HTTPS":true,"Link":"https://sandbox.amadeus.com/"},{"API":"Bay Area Rapid Transit","Description":"Stations and predicted arrivals for BART","Auth":"apiKey","HTTPS":false,"Link":"http://api.bart.gov"},{"API":"Community Transit","Description":"Transitland API","Auth":null,"HTTPS":true,"Link":"https://github.com/transitland/transitland-datastore/blob/master/README.md#api-endpoints"},{"API":"Goibibo","Description":"API for travel search","Auth":"apiKey","HTTPS":true,"Link":"https://developer.goibibo.com/docs"},{"API":"Indian Railways","Description":"Indian Railways Information","Auth":"apiKey","HTTPS":false,"Link":"http://api.erail.in/"},{"API":"Izi","Description":"Audio guide for travellers","Auth":"apiKey","HTTPS":true,"Link":"http://api-docs.izi.travel/"},{"API":"Navitia","Description":"The open API for building cool stuff with transport data","Auth":"apiKey","HTTPS":true,"Link":"https://api.navitia.io/"},{"API":"The Nomad List","Description":"A list of the best places to live/work remotely","Auth":null,"HTTPS":true,"Link":"https://nomadlist.com/faq"},{"API":"Schiphol Airport","Description":"Schiphol","Auth":"apiKey","HTTPS":true,"Link":"https://developer.schiphol.nl/"},{"API":"TransitLand","Description":"Transit Aggregation","Auth":null,"HTTPS":true,"Link":"https://transit.land/documentation/datastore/api-endpoints.html"},{"API":"Transport for Atlanta, US","Description":"Marta","Auth":null,"HTTPS":false,"Link":"http://www.itsmarta.com/app-developer-resources.aspx"},{"API":"Transport for Auckland, New Zealand","Description":"Auckland Transport","Auth":null,"HTTPS":true,"Link":"https://api.at.govt.nz/"},{"API":"Transport for Belgium","Description":"Belgian transport API","Auth":null,"HTTPS":true,"Link":"https://hello.irail.be/api/"},{"API":"Transport for Berlin, Germany","Description":"Third-party VBB API","Auth":null,"HTTPS":true,"Link":"https://github.com/derhuerst/vbb-rest/blob/master/docs/index.md"},{"API":"Transport for Boston, US","Description":"MBTA API","Auth":null,"HTTPS":false,"Link":"http://realtime.mbta.com/Portal/Home/Documents"},{"API":"Transport for Budapest, Hungary","Description":"Budapest public transport API","Auth":null,"HTTPS":true,"Link":"https://apiary.io/"},{"API":"Transport for Chicago, US","Description":"CTA","Auth":null,"HTTPS":false,"Link":"http://www.transitchicago.com/developers/"},{"API":"Transport for Czech Republic","Description":"Czech transport API","Auth":null,"HTTPS":true,"Link":"https://www.chaps.cz/eng/products/idos-internet"},{"API":"Transport for Denver, US","Description":"RTD","Auth":null,"HTTPS":false,"Link":"http://www.rtd-denver.com/gtfs-developer-guide.shtml"},{"API":"Transport for Finland","Description":"Finnish transport API","Auth":null,"HTTPS":true,"Link":"https://digitransit.fi/en/developers/ "},{"API":"Transport for Germany","Description":"Deutsche Bahn (DB) API","Auth":"apiKey","HTTPS":false,"Link":"http://data.deutschebahn.com/dataset/api-fahrplan"},{"API":"Transport for India","Description":"India Public Transport API","Auth":"apiKey","HTTPS":true,"Link":"https://data.gov.in/sector/transport"},{"API":"Transport for London, England","Description":"TfL API","Auth":null,"HTTPS":true,"Link":"https://api.tfl.gov.uk"},{"API":"Transport for Madrid, Spain","Description":"Madrid BUS transport API","Auth":"apiKey","HTTPS":false,"Link":"http://opendata.emtmadrid.es/Servicios-web/BUS"},{"API":"Transport for Minneapolis, US","Description":"NexTrip API","Auth":"OAuth","HTTPS":false,"Link":"http://svc.metrotransit.org/"},{"API":"Transport for The Netherlands","Description":"NS, only trains","Auth":"apiKey","HTTPS":false,"Link":"http://www.ns.nl/reisinformatie/ns-api"},{"API":"Transport for The Netherlands","Description":"OVAPI, country-wide public transport","Auth":null,"HTTPS":true,"Link":"https://github.com/skywave/KV78Turbo-OVAPI/wiki"},{"API":"Transport for New York City, US","Description":"MTA","Auth":"apiKey","HTTPS":false,"Link":"http://datamine.mta.info/"},{"API":"Transport for Norway","Description":"Norwegian transport API","Auth":null,"HTTPS":false,"Link":"http://reisapi.ruter.no/help"},{"API":"Transport for Ottawa, Canada","Description":"OC Transpo next bus arrival API","Auth":null,"HTTPS":false,"Link":"http://www.octranspo.com/index.php/developers"},{"API":"Transport for Paris, France","Description":"RATP Open Data API","Auth":null,"HTTPS":false,"Link":"http://data.ratp.fr/api/v1/console/datasets/1.0/search/"},{"API":"Transport for Paris, France","Description":"Live schedules made simple","Auth":null,"HTTPS":false,"Link":"http://restratpws.azurewebsites.net/swagger/"},{"API":"Transport for Philadelphia, US","Description":"SEPTA APIs","Auth":null,"HTTPS":false,"Link":"http://www3.septa.org/hackathon/"},{"API":"Transport for Rio de Janeiro, Brazil","Description":"Prefeitura do Rio (City Hall)","Auth":null,"HTTPS":false,"Link":"http://data.rio/group/transporte-e-mobilidade"},{"API":"Transport for São Paulo, Brazil","Description":"SPTrans","Auth":"OAuth","HTTPS":false,"Link":"http://www.sptrans.com.br/desenvolvedores/APIOlhoVivo/Documentacao.aspx"},{"API":"Transport for Sweden","Description":"Public Transport consumer","Auth":"OAuth","HTTPS":true,"Link":"https://www.trafiklab.se/api"},{"API":"Transport for Switzerland","Description":"Swiss public transport API","Auth":null,"HTTPS":true,"Link":"https://transport.opendata.ch/"},{"API":"Transport for Switzerland","Description":"Official Swiss Public Transport Open Data","Auth":"apiKey","HTTPS":true,"Link":"https://opentransportdata.swiss/en/"},{"API":"Transport for Tokyo, Japan","Description":"Tokyo Metro","Auth":"apiKey","HTTPS":true,"Link":"https://developer.tokyometroapp.jp/info"},{"API":"Transport for Toronto, Canada","Description":"TTC","Auth":null,"HTTPS":true,"Link":"https://myttc.ca/developers"},{"API":"Transport for Vancouver, Canada","Description":"TransLink","Auth":"OAuth","HTTPS":true,"Link":"https://developer.translink.ca/"},{"API":"Transport for U.S. (multiple locations)","Description":"NextBus API","Auth":null,"HTTPS":false,"Link":"http://www.nextbus.com/xmlFeedDocs/NextBusXMLFeed.pdf"},{"API":"Transport for Victoria, AU","Description":"PTV API","Auth":"apiKey","HTTPS":true,"Link":"https://www.ptv.vic.gov.au/about-ptv/ptv-data-and-reports/digital-products/ptv-timetable-api/"},{"API":"Transport for Washington, US","Description":"Washington Metro transport API","Auth":"OAuth","HTTPS":true,"Link":"https://developer.wmata.com/"},{"API":"Uber","Description":"Request Uber rides, reach riders, transport things, and reward drivers","Auth":"OAuth","HTTPS":true,"Link":"https://developer.uber.com/"},{"API":"WhereIsMyTransport","Description":"Platform for public transport data in emerging cities","Auth":"OAuth","HTTPS":true,"Link":"https://developer.whereismytransport.com/"}],"University":[{"API":"Universities List","Description":"University names, countries and domains","Auth":null,"HTTPS":true,"Link":"https://github.com/Hipo/university-domains-list"}],"Vehicle":[{"API":"Vehicles","Description":"Lot of vehicles information","Auth":"apiKey","HTTPS":false,"Link":"http://developer.edmunds.com/api-documentation/overview/"},{"API":"Brazilian Vehicles and Prices","Description":"Vehicles information from Fundação Instituto de Pesquisas Econômicas - Fipe","Auth":null,"HTTPS":true,"Link":"https://deividfortuna.github.io/fipe/"},{"API":"NHTSA Vehicles","Description":"NHTSA Product Information Catalog and Vehicle Listing","Auth":null,"HTTPS":true,"Link":"https://vpic.nhtsa.dot.gov/api/"}],"Video":[{"API":"An API of Ice And Fire","Description":"Game Of Thrones API","Auth":null,"HTTPS":true,"Link":"https://anapioficeandfire.com/"},{"API":"Dailymotion","Description":"Dailymotion Developer API","Auth":"OAuth","HTTPS":true,"Link":"https://developer.dailymotion.com/"},{"API":"Netflix Roulette","Description":"Netflix database","Auth":null,"HTTPS":true,"Link":"https://netflixroulette.net/api/"},{"API":"Ron Swanson Quotes","Description":"Television","Auth":null,"HTTPS":true,"Link":"https://github.com/jamesseanwright/ron-swanson-quotes#ron-swanson-quotes-api"},{"API":"SWAPI","Description":"Star Wars Information","Auth":null,"HTTPS":true,"Link":"https://swapi.co"},{"API":"TMDb","Description":"Community-based movie data","Auth":"apiKey","HTTPS":true,"Link":"https://www.themoviedb.org/documentation/api"},{"API":"TVMaze","Description":"TV Show Data","Auth":null,"HTTPS":false,"Link":"http://www.tvmaze.com/api"},{"API":"Vimeo","Description":"Vimeo Developer API","Auth":"OAuth","HTTPS":true,"Link":"https://developer.vimeo.com/"},{"API":"YouTube","Description":"Add YouTube functionality to your sites and apps","Auth":"OAuth","HTTPS":true,"Link":"https://developers.google.com/youtube/"}],"Weather":[{"API":"Dark Sky","Description":"Weather","Auth":"apiKey","HTTPS":true,"Link":"https://darksky.net/dev/"},{"API":"MetaWeather","Description":"Weather","Auth":null,"HTTPS":true,"Link":"https://www.metaweather.com/api/"},{"API":"OpenWeatherMap","Description":"Weather","Auth":"apiKey","HTTPS":false,"Link":"http://openweathermap.org/api"},{"API":"Weatherbit","Description":"Weather","Auth":"apiKey","HTTPS":true,"Link":"https://www.weatherbit.io/api"},{"API":"Wunderground","Description":"Weather","Auth":"apiKey","HTTPS":true,"Link":"https://www.wunderground.com/weather/api/"},{"API":"Yahoo! Weather","Description":"Weather","Auth":null,"HTTPS":true,"Link":"https://developer.yahoo.com/weather/"}]} +{"entries":[{"API":"Dogs","Description":"Based on the [Stanford Dogs Dataset](http://visionstanford.edu/aditya86/ImageNetDogs/)","Auth":null,"HTTPS":true,"Link":"https://dog.ceo/dog-api/","Section":"Animals"},{"API":"IUCN","Description":"IUCN Red List of Threatened Species","Auth":"apiKey","HTTPS":false,"Link":"http://apiv3.iucnredlist.org/api/v3/docs","Section":"Animals"},{"API":"Petfinder","Description":"Adoption","Auth":"apiKey","HTTPS":true,"Link":"https://www.petfinder.com/developers/api-docs/","Section":"Animals"},{"API":"RescueGroups","Description":"Adoption","Auth":null,"HTTPS":true,"Link":"https://userguide.rescuegroups.org/display/APIDG/API+Developers+Guide+Home","Section":"Animals"},{"API":"AniList","Description":"AniList Anime","Auth":"OAuth","HTTPS":false,"Link":"http://anilist-api.readthedocs.io/en/latest/","Section":"Anime"},{"API":"Jikan","Description":"Unofficial MyAnimeList API","Auth":null,"HTTPS":true,"Link":"https://jikan.me","Section":"Anime"},{"API":"Kitsu","Description":"Anime discovery platform","Auth":"OAuth","HTTPS":true,"Link":"http://docs.kitsu.apiary.io/","Section":"Anime"},{"API":"Studio Ghibli","Description":"Resources from Studio Ghibli films","Auth":null,"HTTPS":true,"Link":"https://ghibliapi.herokuapp.com","Section":"Anime"},{"API":"AlienVault Open Threat Exchange (OTX)","Description":"IP/domain/URL reputation","Auth":"apiKey","HTTPS":true,"Link":"https://otx.alienvault.com/api/","Section":"Anti-Malware"},{"API":"Certly","Description":"Certly Link/Domain Flagging","Auth":"apiKey","HTTPS":true,"Link":"https://guard.certly.io/","Section":"Anti-Malware"},{"API":"Google Safe Browsing","Description":"Google Link/Domain Flagging","Auth":"apiKey","HTTPS":true,"Link":"https://developers.google.com/safe-browsing/","Section":"Anti-Malware"},{"API":"Metacert","Description":"Metacert Link Flagging","Auth":"apiKey","HTTPS":true,"Link":"https://metacert.com/","Section":"Anti-Malware"},{"API":"VirusTotal","Description":"VirusTotal File/URL Analysis","Auth":"apiKey","HTTPS":true,"Link":"https://www.virustotal.com/en/documentation/public-api/","Section":"Anti-Malware"},{"API":"Web Of Trust (WOT)","Description":"Website reputation","Auth":"apiKey","HTTPS":true,"Link":"https://www.mywot.com/wiki/API","Section":"Anti-Malware"},{"API":"Behance","Description":"Design","Auth":"apiKey","HTTPS":true,"Link":"https://www.behance.net/dev","Section":"Art & Design"},{"API":"Dribbble","Description":"Design","Auth":"OAuth","HTTPS":false,"Link":"http://developer.dribbble.com/v1/","Section":"Art & Design"},{"API":"Harvard Art Museums","Description":"Art","Auth":"apiKey","HTTPS":false,"Link":"https://github.com/harvardartmuseums/api-docs","Section":"Art & Design"},{"API":"Icons8","Description":"Icons","Auth":"OAuth","HTTPS":true,"Link":"http://docs.icons8.apiary.io/#reference/0/meta","Section":"Art & Design"},{"API":"Noun Project","Description":"Icons","Auth":"OAuth","HTTPS":false,"Link":"http://api.thenounproject.com/index.html","Section":"Art & Design"},{"API":"Rijksmuseum","Description":"Art","Auth":"apiKey","HTTPS":true,"Link":"https://www.rijksmuseum.nl/en/api","Section":"Art & Design"},{"API":"British National Bibliography","Description":"Books","Auth":null,"HTTPS":false,"Link":"http://bnb.data.bl.uk/","Section":"Books"},{"API":"Goodreads","Description":"Books","Auth":null,"HTTPS":true,"Link":"https://www.goodreads.com/api","Section":"Books"},{"API":"Google Books","Description":"Books","Auth":"OAuth","HTTPS":true,"Link":"https://developers.google.com/books/","Section":"Books"},{"API":"mailgun","Description":"Email Service","Auth":"apiKey","HTTPS":true,"Link":"https://www.mailgun.com/","Section":"Business"},{"API":"markerapi","Description":"Trademark Search","Auth":null,"HTTPS":false,"Link":"http://www.markerapi.com/","Section":"Business"},{"API":"Church Calendar","Description":"Catholic liturgical calendar","Auth":null,"HTTPS":false,"Link":"http://calapi.inadiutorium.cz/","Section":"Calendar"},{"API":"Holidays","Description":"Historical data regarding holidays","Auth":"apiKey","HTTPS":true,"Link":"https://holidayapi.com/","Section":"Calendar"},{"API":"LectServe","Description":"Protestant liturgical calendar","Auth":null,"HTTPS":false,"Link":"http://www.lectserve.com","Section":"Calendar"},{"API":"Non-Working Days","Description":"Database of ICS files for non working days","Auth":null,"HTTPS":true,"Link":"https://github.com/gadael/icsdb","Section":"Calendar"},{"API":"Box","Description":"File Sharing and Storage","Auth":"OAuth","HTTPS":true,"Link":"https://developer.box.com/","Section":"Cloud Storage & File Sharing"},{"API":"Dropbox","Description":"File Sharing and Storage","Auth":"OAuth","HTTPS":true,"Link":"https://www.dropbox.com/developers","Section":"Cloud Storage & File Sharing"},{"API":"Google Drive","Description":"File Sharing and Storage","Auth":"OAuth","HTTPS":true,"Link":"https://developers.google.com/drive/","Section":"Cloud Storage & File Sharing"},{"API":"OneDrive","Description":"File Sharing and Storage","Auth":"OAuth","HTTPS":true,"Link":"https://dev.onedrive.com/","Section":"Cloud Storage & File Sharing"},{"API":"Currencylayer","Description":"Exchange rates and currency conversion","Auth":"apiKey","HTTPS":true,"Link":"https://currencylayer.com/documentation","Section":"Currency Exchange"},{"API":"Fixer.io","Description":"Exchange rates and currency conversion","Auth":null,"HTTPS":true,"Link":"http://fixer.io","Section":"Currency Exchange"},{"API":"18F","Description":"US Federal Government /Developer Program","Auth":null,"HTTPS":false,"Link":"http://18f.github.io/API-All-the-X/","Section":"Data Access"},{"API":"Abbreviation","Description":"Get abbreviations and meanings","Auth":"X-Mashape-Key","HTTPS":true,"Link":"https://market.mashape.com/daxeel/abbreviations","Section":"Data Access"},{"API":"CARTO","Description":"Location Information Prediction","Auth":"apiKey","HTTPS":true,"Link":"https://carto.com/","Section":"Data Access"},{"API":"Callook.info","Description":"United States ham radio callsigns","Auth":null,"HTTPS":true,"Link":"https://callook.info","Section":"Data Access"},{"API":"Celebinfo","Description":"Celebrity information","Auth":"X-Mashape-Key","HTTPS":true,"Link":"https://market.mashape.com/daxeel/celebinfo/","Section":"Data Access"},{"API":"Colorado Data Engine","Description":"Formatted and geolocated Colorado public data","Auth":null,"HTTPS":true,"Link":"http://codataengine.org/","Section":"Data Access"},{"API":"Colorado Information Marketplace","Description":"Colorado State Government Open Data","Auth":null,"HTTPS":true,"Link":"https://data.colorado.gov/","Section":"Data Access"},{"API":"Datakick","Description":"The open product database","Auth":"apiKey","HTTPS":true,"Link":"https://www.datakick.org/api","Section":"Data Access"},{"API":"Data USA","Description":"US Public Data","Auth":null,"HTTPS":true,"Link":"https://datausa.io/about/api/","Section":"Data Access"},{"API":"Dronestream","Description":"Tracks United States drone strikes","Auth":null,"HTTPS":true,"Link":"https://dronestre.am/","Section":"Data Access"},{"API":"fonoApi","Description":"Mobile Device Description","Auth":null,"HTTPS":true,"Link":"https://fonoapi.freshpixl.com/","Section":"Data Access"},{"API":"Open Government, Australia","Description":"Australian Government Open Data","Auth":null,"HTTPS":true,"Link":"https://www.data.gov.au/","Section":"Data Access"},{"API":"Open Government, USA","Description":"United States Government Open Data","Auth":null,"HTTPS":true,"Link":"https://www.data.gov/","Section":"Data Access"},{"API":"Open Government, Canada","Description":"Canadian Government Open Data","Auth":null,"HTTPS":false,"Link":"http://open.canada.ca/en","Section":"Data Access"},{"API":"Open Government Data, India","Description":"Indian Government Open Data","Auth":"apiKey","HTTPS":true,"Link":"https://data.gov.in/","Section":"Data Access"},{"API":"Open Government, New Zealand","Description":"New Zealand Government Open Data","Auth":null,"HTTPS":true,"Link":"https://www.data.govt.nz/","Section":"Data Access"},{"API":"Outpan","Description":"A Database of Everything","Auth":"apiKey","HTTPS":true,"Link":"https://outpan.mixnode.com/developers","Section":"Data Access"},{"API":"Pearson","Description":"Dictionary Data","Auth":"apiKey","HTTPS":false,"Link":"http://developer.pearson.com/apis/dictionaries","Section":"Data Access"},{"API":"Prague Opendata","Description":"Prague City Open Data","Auth":null,"HTTPS":false,"Link":"http://opendata.praha.eu/en","Section":"Data Access"},{"API":"Quandl","Description":"Stock Market Data","Auth":null,"HTTPS":true,"Link":"https://www.quandl.com/","Section":"Data Access"},{"API":"Represent by Open North","Description":"Find Canadian Government Representatives","Auth":null,"HTTPS":true,"Link":"https://represent.opennorth.ca/","Section":"Data Access"},{"API":"Scoop.it","Description":"Content Curation Service","Auth":"apiKey","HTTPS":false,"Link":"http://www.scoop.it/dev","Section":"Data Access"},{"API":"Teleport","Description":"Quality of Life Data","Auth":null,"HTTPS":true,"Link":"https://developers.teleport.org/","Section":"Data Access"},{"API":"UPC database","Description":"More than 15 million barcode numbers from all around the world","Auth":"apiKey","HTTPS":true,"Link":"https://upcdatabase.org/api","Section":"Data Access"},{"API":"Wikipedia","Description":"Mediawiki Encyclopedia","Auth":null,"HTTPS":true,"Link":"https://www.mediawiki.org/wiki/API:Main_page","Section":"Data Access"},{"API":"Wordnik","Description":"Dictionary Data","Auth":null,"HTTPS":false,"Link":"http://developer.wordnik.com","Section":"Data Access"},{"API":"Yelp","Description":"Find Local Business","Auth":"OAuth","HTTPS":true,"Link":"https://www.yelp.com/developers/documentation/v3","Section":"Data Access"},{"API":"languagelayer","Description":"Language detection","Auth":null,"HTTPS":true,"Link":"https://languagelayer.com","Section":"Data Validation"},{"API":"Lob.com","Description":"US Address Verification","Auth":"apiKey","HTTPS":true,"Link":"https://lob.com/","Section":"Data Validation"},{"API":"mailboxlayer","Description":"Email address validation","Auth":null,"HTTPS":true,"Link":"https://mailboxlayer.com","Section":"Data Validation"},{"API":"numverify","Description":"Phone number validation","Auth":null,"HTTPS":true,"Link":"https://numverify.com","Section":"Data Validation"},{"API":"vatlayer","Description":"VAT number validation","Auth":null,"HTTPS":true,"Link":"https://vatlayer.com","Section":"Data Validation"},{"API":"Adorable Avatars","Description":"Generate random cartoon avatars","Auth":null,"HTTPS":true,"Link":"http://avatars.adorable.io","Section":"Development"},{"API":"APIs.guru","Description":"Wikipedia for Web APIs, OpenAPI/Swagger specs for public APIs","Auth":null,"HTTPS":true,"Link":"https://apis.guru/api-doc/","Section":"Development"},{"API":"BetterMeta","Description":"Return a site's meta tags in JSON format","Auth":"X-Mashape-Key","HTTPS":true,"Link":"http://bettermeta.io","Section":"Development"},{"API":"Changelogs.md","Description":"Structured changelog metadata from open source projects","Auth":null,"HTTPS":true,"Link":"https://changelogs.md","Section":"Development"},{"API":"CDNJS","Description":"Library info on CDNJS","Auth":null,"HTTPS":true,"Link":"https://api.cdnjs.com/libraries/jquery","Section":"Development"},{"API":"Faceplusplus","Description":"A tool to detect face","Auth":"OAuth","HTTPS":true,"Link":"https://www.faceplusplus.com/","Section":"Development"},{"API":"Genderize.io","Description":"Determines a gender from a first name","Auth":null,"HTTPS":true,"Link":"https://genderize.io","Section":"Development"},{"API":"Github - User Data","Description":"Pull public information for a user's github","Auth":null,"HTTPS":true,"Link":"https://api.github.com/users/hackeryou","Section":"Development"},{"API":"Gitter","Description":"Chat for GitHub","Auth":"OAuth","HTTPS":true,"Link":"https://github.com/gitterHQ/docs","Section":"Development"},{"API":"HackerRank","Description":"Compile source code and run against a set of provided test cases","Auth":"apiKey","HTTPS":true,"Link":"https://www.hackerrank.com/api/docs","Section":"Development"},{"API":"Hipster Ipsum","Description":"Generates Hipster Ipsum text","Auth":null,"HTTPS":false,"Link":"http://hipsterjesus.com/","Section":"Development"},{"API":"IPify","Description":"A simple IP Address API","Auth":null,"HTTPS":true,"Link":"https://www.ipify.org/","Section":"Development"},{"API":"JSON 2 JSONP","Description":"Convert JSON to JSONP (on-the-fly) for easy cross-domain data requests using client-side JavaScript","Auth":null,"HTTPS":true,"Link":"https://json2jsonp.com/","Section":"Development"},{"API":"JSONbin.io","Description":"Free JSON storage service Ideal for small scale Web apps, Websites and Mobile apps","Auth":null,"HTTPS":true,"Link":"https://jsonbin.io","Section":"Development"},{"API":"JSONPlaceholder","Description":"Fake data for testing and prototyping","Auth":null,"HTTPS":false,"Link":"http://jsonplaceholder.typicode.com/","Section":"Development"},{"API":"Judge0 API","Description":"Compile and run source code","Auth":null,"HTTPS":true,"Link":"https://api.judge0.com/","Section":"Development"},{"API":"Kairos","Description":"Face Recognition and Emotion Analysis","Auth":"apiKey","HTTPS":true,"Link":"https://www.kairos.com/features","Section":"Development"},{"API":"Let's Validate","Description":"Uncovers the technologies used on websites and URL to thumbnail","Auth":null,"HTTPS":true,"Link":"https://github.com/letsvalidate/api","Section":"Development"},{"API":"LiveEdu","Description":"Live Coding Streaming","Auth":"OAuth","HTTPS":true,"Link":"https://www.liveedu.tv/developer/applications/","Section":"Development"},{"API":"Lorem Text","Description":"Generates Lorem Ipsum text","Auth":"X-Mashape-Key","HTTPS":true,"Link":"https://market.mashape.com/montanaflynn/lorem-text-generator","Section":"Development"},{"API":"Loripsum","Description":"The \"lorem ipsum\" generator that doesn't suck","Auth":null,"HTTPS":false,"Link":"http://loripsum.net/","Section":"Development"},{"API":"Myjson","Description":"A simple JSON store for your web or mobile app","Auth":null,"HTTPS":false,"Link":"http://myjson.com/api","Section":"Development"},{"API":"Plino","Description":"Spam filtering system","Auth":null,"HTTPS":true,"Link":"https://plino.herokuapp.com/","Section":"Development"},{"API":"Public APIs","Description":"A collective list of free JSON APIs for use in web development","Auth":null,"HTTPS":true,"Link":"https://github.com/toddmotto/public-apis/tree/master/json","Section":"Development"},{"API":"Random Word","Description":"Generate random word","Auth":null,"HTTPS":false,"Link":"http://www.setgetgo.com/randomword/","Section":"Development"},{"API":"RandomUser","Description":"Generates random user data","Auth":null,"HTTPS":true,"Link":"https://randomuser.me","Section":"Development"},{"API":"ReqRes","Description":"A hosted REST-API ready to respond to your AJAX requests","Auth":null,"HTTPS":true,"Link":"https://reqres.in/ ","Section":"Development"},{"API":"RoboHash","Description":"Generate random robot/alien avatars","Auth":null,"HTTPS":true,"Link":"https://robohash.org/","Section":"Development"},{"API":"StackExchange","Description":"Q&A forum for developers","Auth":"OAuth","HTTPS":true,"Link":"https://api.stackexchange.com/","Section":"Development"},{"API":"Stormpath","Description":"User Authentication","Auth":"apiKey","HTTPS":true,"Link":"https://stormpath.com/","Section":"Development"},{"API":"UI Names","Description":"Generate random fake names","Auth":null,"HTTPS":true,"Link":"https://github.com/thm/uinames","Section":"Development"},{"API":"Verse","Description":"Check what's the latest version of your favorite open-source project","Auth":null,"HTTPS":true,"Link":"https://verse.pawelad.xyz/","Section":"Development"},{"API":"File.io","Description":"File Sharing","Auth":null,"HTTPS":true,"Link":"https://www.file.io","Section":"Documents & Productivity"},{"API":"pdflayer API","Description":"HTML/URL to PDF","Auth":null,"HTTPS":true,"Link":"https://pdflayer.com","Section":"Documents & Productivity"},{"API":"Pocket","Description":"Bookmarking service","Auth":"OAuth","HTTPS":true,"Link":"https://getpocket.com/developer/","Section":"Documents & Productivity"},{"API":"PrexView","Description":"Data from XML or JSON to PDF, HTML or Image","Auth":"apiKey","HTTPS":true,"Link":"https://prexview.com","Section":"Documents & Productivity"},{"API":"Todoist","Description":"Todo Lists","Auth":"OAuth","HTTPS":true,"Link":"https://developer.todoist.com","Section":"Documents & Productivity"},{"API":"Wunderlist","Description":"Todo Lists","Auth":"OAuth","HTTPS":true,"Link":"https://developer.wunderlist.com/documentation","Section":"Documents & Productivity"},{"API":"AirVisual","Description":"Air quality and weather data","Auth":"apiKey","HTTPS":true,"Link":"https://airvisual.com/api","Section":"Environment"},{"API":"OpenAQ","Description":"Open air quality data","Auth":"apiKey","HTTPS":true,"Link":"https://docs.openaq.org/","Section":"Environment"},{"API":"PM2.5.in","Description":"Air quality of China","Auth":"apiKey","HTTPS":false,"Link":"http://www.pm25.in/api_doc","Section":"Environment"},{"API":"Barchart OnDemand","Description":"Stock, Futures, and Forex Market Data","Auth":"apiKey","HTTPS":true,"Link":"https://www.barchartondemand.com/free","Section":"Finance"},{"API":"CoinDesk","Description":"Bitcoin Price Index","Auth":null,"HTTPS":false,"Link":"http://www.coindesk.com/api/","Section":"Finance"},{"API":"Consumer Financial Protection Bureau","Description":"Financial services consumer complains data","Auth":"apiKey","HTTPS":true,"Link":"https://data.consumerfinance.gov/resource/jhzv-w97w.json","Section":"Finance"},{"API":"IEX","Description":"Stocks and Market Data","Auth":null,"HTTPS":true,"Link":"https://iextrading.com/developer/","Section":"Finance"},{"API":"Razorpay IFSC","Description":"Indian Financial Systems Code (Bank Branch Codes)","Auth":null,"HTTPS":true,"Link":"https://ifsc.razorpay.com/","Section":"Finance"},{"API":"BigOven","Description":"Recipe Search","Auth":"X-Mashape-Key","HTTPS":false,"Link":"http://api2.bigoven.com/","Section":"Food & Drink"},{"API":"BreweryDB","Description":"Beer","Auth":"apiKey","HTTPS":false,"Link":"http://www.brewerydb.com/developers","Section":"Food & Drink"},{"API":"Edamam","Description":"Recipe Search","Auth":"apiKey","HTTPS":true,"Link":"https://developer.edamam.com/","Section":"Food & Drink"},{"API":"Food2Fork","Description":"Recipe Search","Auth":"apiKey","HTTPS":false,"Link":"http://food2fork.com/about/api","Section":"Food & Drink"},{"API":"LCBO","Description":"Alcohol","Auth":"apiKey","HTTPS":true,"Link":"https://lcboapi.com/","Section":"Food & Drink"},{"API":"PunkAPI","Description":"Brewdog Beer Recipes","Auth":null,"HTTPS":true,"Link":"https://punkapi.com/","Section":"Food & Drink"},{"API":"Recipe Puppy","Description":"Food","Auth":null,"HTTPS":false,"Link":"http://www.recipepuppy.com/about/api/","Section":"Food & Drink"},{"API":"TacoFancy","Description":"Community-driven taco database","Auth":null,"HTTPS":false,"Link":"https://github.com/evz/tacofancy-api","Section":"Food & Drink"},{"API":"TheCocktailDB","Description":"Cocktail Recipes","Auth":null,"HTTPS":false,"Link":"http://www.thecocktaildb.com/","Section":"Food & Drink"},{"API":"The Report of the Week","Description":"Food & Drink Reviews","Auth":null,"HTTPS":true,"Link":"https://github.com/andyklimczak/TheReportOfTheWeek-API","Section":"Food & Drink"},{"API":"What's on the menu?","Description":"NYPL human-transcribed historical menu collection","Auth":"apiKey","HTTPS":false,"Link":"nypl.github.io/menus-api/","Section":"Food & Drink"},{"API":"Yummly","Description":"Find food recipes","Auth":null,"HTTPS":true,"Link":"https://developer.yummly.com/","Section":"Food & Drink"},{"API":"Zomato","Description":"Discover restaurants","Auth":"apiKey","HTTPS":true,"Link":"https://developers.zomato.com/api","Section":"Food & Drink"},{"API":"Whitepages Pro","Description":"Global identity verification with phone, address, email, and IP","Auth":"apiKey","HTTPS":true,"Link":"https://pro.whitepages.com/developer/documentation/identity-check-api/","Section":"Fraud Prevention"},{"API":"Whitepages Pro","Description":"Phone reputation to detect spammy phones","Auth":"apiKey","HTTPS":true,"Link":"https://pro.whitepages.com/developer/documentation/phone-reputation-api/","Section":"Fraud Prevention"},{"API":"Whitepages Pro","Description":"Get an owner’s name, address, demographics based on the phone number","Auth":"apiKey","HTTPS":true,"Link":"https://pro.whitepages.com/developer/documentation/reverse-phone-api/","Section":"Fraud Prevention"},{"API":"Whitepages Pro","Description":"Phone number validation, line_type, carrier append","Auth":"apiKey","HTTPS":true,"Link":"https://pro.whitepages.com/developer/documentation/phone-intelligence-api/","Section":"Fraud Prevention"},{"API":"Whitepages Pro","Description":"Get normalized physical address, residents, address type, and validity","Auth":"apiKey","HTTPS":true,"Link":"https://pro.whitepages.com/developer/documentation/reverse-address-api/","Section":"Fraud Prevention"},{"API":"Battle.net","Description":"Blizzard Entertainment","Auth":null,"HTTPS":true,"Link":"https://dev.battle.net/","Section":"Games & Comics"},{"API":"Battlefield 4","Description":"Battlefield 4 Information","Auth":null,"HTTPS":true,"Link":"https://bf4stats.com/api","Section":"Games & Comics"},{"API":"Chuck Norris Database","Description":"Jokes","Auth":null,"HTTPS":false,"Link":"http://www.icndb.com/api/","Section":"Games & Comics"},{"API":"Clash of Clans","Description":"Clash of Clans Game Information","Auth":null,"HTTPS":true,"Link":"https://developer.clashofclans.com","Section":"Games & Comics"},{"API":"Clash Royale","Description":"Clash Royale Game Information","Auth":null,"HTTPS":true,"Link":"https://github.com/martincarrera/clash-royale-api","Section":"Games & Comics"},{"API":"Comic Vine","Description":"Comics","Auth":null,"HTTPS":true,"Link":"https://comicvine.gamespot.com/api/documentation","Section":"Games & Comics"},{"API":"Deck of Cards","Description":"Deck of Cards","Auth":null,"HTTPS":false,"Link":"http://deckofcardsapi.com/","Section":"Games & Comics"},{"API":"Destiny The Game","Description":"Bungie Platform API","Auth":"apiKey","HTTPS":true,"Link":"https://www.bungie.net/en/Clan/Post/39966/85087279/0/0","Section":"Games & Comics"},{"API":"Eve Online","Description":"Third-Party Developer Documentation","Auth":"OAuth","HTTPS":true,"Link":"https://eveonline-third-party-documentation.readthedocs.io/en/latest/","Section":"Games & Comics"},{"API":"Giant Bomb","Description":"Video Games","Auth":null,"HTTPS":true,"Link":"https://www.giantbomb.com/api/documentation","Section":"Games & Comics"},{"API":"Guild Wars 2","Description":"Guild Wars 2 Game Information","Auth":"apiKey","HTTPS":true,"Link":"https://wiki.guildwars2.com/wiki/API:Main","Section":"Games & Comics"},{"API":"Jservice","Description":"Jeopardy Question Database","Auth":null,"HTTPS":false,"Link":"http://jservice.io","Section":"Games & Comics"},{"API":"Magic The Gathering","Description":"Magic The Gathering Game Information","Auth":null,"HTTPS":false,"Link":"http://magicthegathering.io/","Section":"Games & Comics"},{"API":"Marvel","Description":"Marvel Comics","Auth":"apiKey","HTTPS":false,"Link":"http://developer.marvel.com","Section":"Games & Comics"},{"API":"Minecraft","Description":"Minecraft server info & user info)","Auth":null,"HTTPS":true,"Link":"https://mcapi.ca/","Section":"Games & Comics"},{"API":"Open Trivia","Description":"Trivia Questions","Auth":null,"HTTPS":true,"Link":"https://opentdb.com/api_config.php","Section":"Games & Comics"},{"API":"PandaScore","Description":"E-sports games and results","Auth":"apiKey","HTTPS":true,"Link":"https://api.pandascore.co","Section":"Games & Comics"},{"API":"Pokéapi","Description":"Pokémon Information","Auth":null,"HTTPS":false,"Link":"http://pokeapi.co","Section":"Games & Comics"},{"API":"Qriusity","Description":"Quiz/Trivia Questions","Auth":null,"HTTPS":true,"Link":"https://qriusity.com/","Section":"Games & Comics"},{"API":"Riot Games","Description":"League of Legends Game Information","Auth":"apiKey","HTTPS":true,"Link":"https://developer.riotgames.com/","Section":"Games & Comics"},{"API":"Steam","Description":"Steam Client Interaction","Auth":"OAuth","HTTPS":true,"Link":"https://developer.valvesoftware.com/wiki/Steam_Web_API","Section":"Games & Comics"},{"API":"adresse.data.gouv.fr","Description":"Address database of France, geocoding, and reverse","Auth":null,"HTTPS":true,"Link":"https://adresse.data.gouv.fr","Section":"Geocoding"},{"API":"Bing Maps","Description":"Create/customize digital maps based on Bing Maps data","Auth":"apiKey","HTTPS":true,"Link":"https://www.microsoft.com/maps/","Section":"Geocoding"},{"API":"Geocode.xyz","Description":"Provides worldwide forward/reverse geocoding, batch geocoding and geoparsing","Auth":null,"HTTPS":true,"Link":"https://geocode.xyz/","Section":"Geocoding"},{"API":"GeoNames","Description":"Place names and other geographical data","Auth":null,"HTTPS":false,"Link":"http://www.geonames.org/export/web-services.html","Section":"Geocoding"},{"API":"GéoApi","Description":"French geographical data","Auth":null,"HTTPS":true,"Link":"https://api.gouv.fr/api/geoapi.html","Section":"Geocoding"},{"API":"Google Maps","Description":"Create/customize digital maps based on Google Maps data","Auth":"apiKey","HTTPS":true,"Link":"https://developers.google.com/maps/","Section":"Geocoding"},{"API":"IP 2 Country","Description":"Map an IP to a country","Auth":null,"HTTPS":true,"Link":"https://ip2country.info","Section":"Geocoding"},{"API":"IP Address Details","Description":"Find geolocation with ip address","Auth":null,"HTTPS":true,"Link":"https://ipinfo.io/","Section":"Geocoding"},{"API":"IP Location","Description":"Find IP address location information","Auth":null,"HTTPS":true,"Link":"https://ipapi.co/","Section":"Geocoding"},{"API":"IP Vigilante","Description":"Free IP Geolocation API","Auth":null,"HTTPS":true,"Link":"https://www.ipvigilante.com/","Section":"Geocoding"},{"API":"Mapbox","Description":"Create/customize beautiful digital maps","Auth":"apiKey","HTTPS":true,"Link":"https://www.mapbox.com/developers/","Section":"Geocoding"},{"API":"Mapzen Search","Description":"Open Source & Open Data Global Geocoding Service","Auth":"apiKey","HTTPS":true,"Link":"https://mapzen.com/products/search/","Section":"Geocoding"},{"API":"Mexico","Description":"Mexico RESTful zip codes API","Auth":null,"HTTPS":true,"Link":"https://github.com/IcaliaLabs/sepomex","Section":"Geocoding"},{"API":"One Map 2.0, Singapore","Description":"Singapore Land Authority REST API services for Singapore addresses","Auth":"apiKey","HTTPS":true,"Link":"https://docs.onemap.sg/","Section":"Geocoding"},{"API":"OnWater","Description":"Determine if a lat/lon is on water or land","Auth":null,"HTTPS":true,"Link":"https://onwater.io/","Section":"Geocoding"},{"API":"OpenCage","Description":"Forward and reverse geocoding using open data","Auth":null,"HTTPS":true,"Link":"https://geocoder.opencagedata.com","Section":"Geocoding"},{"API":"OpenStreetMap","Description":"Navigation, geolocation and geographical data","Auth":"OAuth","HTTPS":false,"Link":"http://wiki.openstreetmap.org/wiki/API","Section":"Geocoding"},{"API":"PostcodeData.nl","Description":"Provide geolocation data based on postcode for Dutch addresses","Auth":null,"HTTPS":false,"Link":"http://api.postcodedata.nl/v1/postcode/?postcode=1211EP&streetnumber=60&ref=domeinnaam.nl&type=json","Section":"Geocoding"},{"API":"Postcodes.io","Description":"Postcode lookup & Geolocation for the UK","Auth":null,"HTTPS":true,"Link":"https://postcodes.io","Section":"Geocoding"},{"API":"REST Countries","Description":"Get information about countries via a RESTful API","Auth":null,"HTTPS":true,"Link":"https://restcountries.eu","Section":"Geocoding"},{"API":"Utah AGRC","Description":"Utah Web API for geocoding Utah addresses","Auth":"apiKey","HTTPS":true,"Link":"https://api.mapserv.utah.gov","Section":"Geocoding"},{"API":"ViaCep","Description":"Brazil RESTful zip codes API","Auth":null,"HTTPS":true,"Link":"https://viacep.com.br","Section":"Geocoding"},{"API":"Zippopotam","Description":"Get information about place such as country, city, state, etc","Auth":null,"HTTPS":false,"Link":"http://www.zippopotam.us","Section":"Geocoding"},{"API":"Diabetes","Description":"Logging and retrieving diabetes information","Auth":null,"HTTPS":false,"Link":"http://predictbgl.com/api/","Section":"Health"},{"API":"Flutrack","Description":"Influenza-like symptoms with geotracking","Auth":null,"HTTPS":false,"Link":"http://www.flutrack.org/","Section":"Health"},{"API":"Makeup","Description":"Makeup Information","Auth":null,"HTTPS":false,"Link":"http://makeup-api.herokuapp.com/","Section":"Health"},{"API":"Medicare","Description":"Access to the data from the CMS - medicaregov","Auth":null,"HTTPS":true,"Link":"https://data.medicare.gov/developers","Section":"Health"},{"API":"Nutritionix","Description":"Worlds largest verified nutrition database","Auth":"apiKey","HTTPS":true,"Link":"https://developer.nutritionix.com/","Section":"Health"},{"API":"openFDA","Description":"Public FDA data about drugs, devices, and foods","Auth":null,"HTTPS":true,"Link":"https://open.fda.gov/api/","Section":"Health"},{"API":"USDA Nutrients","Description":"National Nutrient Database for Standard Reference","Auth":null,"HTTPS":true,"Link":"https://ndb.nal.usda.gov/ndb/doc/index","Section":"Health"},{"API":"API.AI","Description":"Natural Language Processing","Auth":"apiKey","HTTPS":true,"Link":"https://api.ai/","Section":"Machine Learning"},{"API":"Clarifai","Description":"Computer Vision","Auth":"OAuth","HTTPS":true,"Link":"https://developer.clarifai.com/","Section":"Machine Learning"},{"API":"Cleverbot","Description":"Web chat bot","Auth":"apiKey","HTTPS":true,"Link":"https://www.cleverbot.com/api/","Section":"Machine Learning"},{"API":"Keen IO","Description":"Data Analytics","Auth":"apiKey","HTTPS":true,"Link":"https://keen.io/","Section":"Machine Learning"},{"API":"Unplugg","Description":"Forecasting API for timeseries data","Auth":"apiKey","HTTPS":true,"Link":"https://unplu.gg/test_api.html","Section":"Machine Learning"},{"API":"Wit.ai","Description":"Natural Language Processing","Auth":"OAuth","HTTPS":true,"Link":"https://wit.ai/","Section":"Machine Learning"},{"API":"Newton","Description":"Symbolic and Arithmetic Math Calculator","Auth":null,"HTTPS":true,"Link":"https://newton.now.sh/","Section":"Math"},{"API":"Numbers API","Description":"Facts about numbers","Auth":null,"HTTPS":false,"Link":"http://numbersapi.com","Section":"Math"},{"API":"Bandsintown","Description":"Music Events","Auth":null,"HTTPS":true,"Link":"https://app.swaggerhub.com/apis/Bandsintown/PublicAPI/3.0.0","Section":"Music"},{"API":"Deezer","Description":"Music","Auth":"OAuth","HTTPS":false,"Link":"http://developers.deezer.com/login?redirect=/api","Section":"Music"},{"API":"Discogs","Description":"Music","Auth":"OAuth","HTTPS":true,"Link":"https://www.discogs.com/developers/","Section":"Music"},{"API":"Genius","Description":"Crowdsourced lyrics and music knowledge","Auth":"OAuth","HTTPS":true,"Link":"https://docs.genius.com/","Section":"Music"},{"API":"Jamendo","Description":"Music","Auth":"OAuth","HTTPS":true,"Link":"https://developer.jamendo.com/v3.0","Section":"Music"},{"API":"iTunes Search","Description":"Software products","Auth":null,"HTTPS":true,"Link":"https://affiliate.itunes.apple.com/resources/documentation/itunes-store-web-service-search-api/","Section":"Music"},{"API":"LastFm","Description":"Music","Auth":"apiKey","HTTPS":false,"Link":"http://www.last.fm/api","Section":"Music"},{"API":"Mixcloud","Description":"Music","Auth":null,"HTTPS":true,"Link":"https://www.mixcloud.com/developers/","Section":"Music"},{"API":"MusicBrainz","Description":"Music","Auth":null,"HTTPS":true,"Link":"https://musicbrainz.org/doc/Development/XML_Web_Service/Version_2","Section":"Music"},{"API":"Musikki","Description":"Music","Auth":"apiKey","HTTPS":true,"Link":"https://music-api.musikki.com/reference","Section":"Music"},{"API":"Musixmatch","Description":"Music","Auth":"apiKey","HTTPS":true,"Link":"https://developer.musixmatch.com/","Section":"Music"},{"API":"Songkick","Description":"Music Events","Auth":"OAuth","HTTPS":true,"Link":"https://www.songkick.com/developer/","Section":"Music"},{"API":"Songsterr","Description":"Provides guitar, bass and drums tabs and chords","Auth":null,"HTTPS":true,"Link":"https://www.songsterr.com/a/wa/api/","Section":"Music"},{"API":"Soundcloud","Description":"Music","Auth":null,"HTTPS":true,"Link":"https://developers.soundcloud.com/","Section":"Music"},{"API":"Spotify","Description":"Music","Auth":"OAuth","HTTPS":true,"Link":"https://developer.spotify.com/web-api/","Section":"Music"},{"API":"Vagalume","Description":"Crowdsourced lyrics and music knowledge","Auth":"apiKey","HTTPS":true,"Link":"https://api.vagalume.com.br/docs/","Section":"Music"},{"API":"Chronicling America","Description":"Provides access to millions of pages of historic US newspapers from the Library of Congress","Auth":null,"HTTPS":false,"Link":"http://chroniclingamerica.loc.gov/about/api/","Section":"News"},{"API":"New York Times","Description":"Provides news","Auth":"apiKey","HTTPS":true,"Link":"https://developer.nytimes.com/","Section":"News"},{"API":"News API","Description":"Headlines currently published on a range of news sources and blogs","Auth":"apiKey","HTTPS":true,"Link":"https://newsapi.org/","Section":"News"},{"API":"The Guardian","Description":"Access all the content the Guardian creates, categorised by tags and section","Auth":"apiKey","HTTPS":true,"Link":"http://open-platform.theguardian.com/","Section":"News"},{"API":"Countly","Description":"Countly web analytics","Auth":null,"HTTPS":false,"Link":"http://resources.count.ly/docs","Section":"Open Source projects"},{"API":"Drupal.org","Description":"Drupalorg","Auth":null,"HTTPS":true,"Link":"https://www.drupal.org/drupalorg/docs/api","Section":"Open Source projects"},{"API":"Libraries.io","Description":"Open source software libraries","Auth":"apiKey","HTTPS":true,"Link":"https://libraries.io/api","Section":"Open Source projects"},{"API":"chucknorris.io","Description":"JSON API for hand curated Chuck Norris jokes","Auth":null,"HTTPS":true,"Link":"https://api.chucknorris.io","Section":"Personality"},{"API":"Forismatic","Description":"Inspirational Quotes","Auth":null,"HTTPS":false,"Link":"http://forismatic.com/en/api/","Section":"Personality"},{"API":"icanhazdadjoke","Description":"The largest selection of dad jokes on the internet","Auth":null,"HTTPS":true,"Link":"https://icanhazdadjoke.com/api","Section":"Personality"},{"API":"Medium","Description":"Community of readers and writers offering unique perspectives on ideas","Auth":"OAuth","HTTPS":true,"Link":"https://github.com/Medium/medium-api-docs","Section":"Personality"},{"API":"Quotes on Design","Description":"Inspirational Quotes","Auth":null,"HTTPS":true,"Link":"https://quotesondesign.com/api-v4-0/","Section":"Personality"},{"API":"Traitify","Description":"Assess, collect, and analyze Personality","Auth":null,"HTTPS":true,"Link":"https://app.traitify.com/developer","Section":"Personality"},{"API":"tronalddump.io","Description":"Api & web archive for the things Donald Trump has said","Auth":null,"HTTPS":true,"Link":"https://www.tronalddump.io","Section":"Personality"},{"API":"500px","Description":"Photography Community","Auth":"OAuth","HTTPS":true,"Link":"https://github.com/500px/api-documentation","Section":"Photography"},{"API":"Flickr","Description":"Flickr Services","Auth":"OAuth","HTTPS":true,"Link":"https://www.flickr.com/services/api/","Section":"Photography"},{"API":"Gfycat","Description":"Jiffier GIFs","Auth":"OAuth","HTTPS":true,"Link":"https://developers.gfycat.com/api/","Section":"Photography"},{"API":"Giphy","Description":"Get all your gifs","Auth":null,"HTTPS":true,"Link":"https://github.com/Giphy/GiphyAPI","Section":"Photography"},{"API":"Imgur","Description":"Images","Auth":"OAuth","HTTPS":true,"Link":"https://api.imgur.com/#overview","Section":"Photography"},{"API":"ScreenShotLayer","Description":"URL 2 Image","Auth":null,"HTTPS":true,"Link":"https://screenshotlayer.com","Section":"Photography"},{"API":"Unsplash","Description":"Photography","Auth":"OAuth","HTTPS":true,"Link":"https://unsplash.com/developers","Section":"Photography"},{"API":"PlaceKitten","Description":"Resizable kitten placeholder images","Auth":null,"HTTPS":true,"Link":"https://placekitten.com/","Section":"Photography"},{"API":"arcsecond.io","Description":"Multiple astronomy data sources","Auth":null,"HTTPS":true,"Link":"https://api.arcsecond.io/","Section":"Science"},{"API":"CORE","Description":"Access the world's Open Access research papers","Auth":"apiKey","HTTPS":true,"Link":"https://core.ac.uk/services#api","Section":"Science"},{"API":"Fedger.io","Description":"Query machine intelligence data","Auth":null,"HTTPS":true,"Link":"https://dev.fedger.io/docs/","Section":"Science"},{"API":"inspirehep.net","Description":"High Energy Physics info system","Auth":null,"HTTPS":true,"Link":"https://inspirehep.net/info/hep/api?ln=en","Section":"Science"},{"API":"Launch Library","Description":"Upcoming Space Launches","Auth":null,"HTTPS":true,"Link":"https://launchlibrary.net/1.2/docs/api.html","Section":"Science"},{"API":"Minor Planet Center","Description":"Asterankcom Information","Auth":null,"HTTPS":false,"Link":"http://www.asterank.com/mpc","Section":"Science"},{"API":"NASA","Description":"NASA data, including imagery","Auth":null,"HTTPS":true,"Link":"https://api.nasa.gov","Section":"Science"},{"API":"Open Notify","Description":"ISS astronauts, current location, etc","Auth":null,"HTTPS":false,"Link":"http://open-notify.org/Open-Notify-API/","Section":"Science"},{"API":"Sunrise and Sunset","Description":"Sunset and sunrise times for a given latitude and longitude","Auth":null,"HTTPS":true,"Link":"https://sunrise-sunset.org/api","Section":"Science"},{"API":"USGS Earthquake Hazards Program","Description":"Earthquakes data real-time","Auth":null,"HTTPS":true,"Link":"https://earthquake.usgs.gov/fdsnws/event/1/","Section":"Science"},{"API":"USGS Water Services","Description":"Water quality and level info for rivers and lakes","Auth":null,"HTTPS":true,"Link":"https://waterservices.usgs.gov/","Section":"Science"},{"API":"World Bank","Description":"World Data","Auth":null,"HTTPS":false,"Link":"https://datahelpdesk.worldbank.org/knowledgebase/topics/125589","Section":"Science"},{"API":"AXFR Database","Description":"AXFR public database","Auth":null,"HTTPS":false,"Link":"http://api.axfrcheck.com","Section":"Security"},{"API":"UK Police","Description":"UK Police data","Auth":null,"HTTPS":true,"Link":"https://data.police.uk/docs/","Section":"Security"},{"API":"eBay","Description":"Sell and Buy on eBay","Auth":"OAuth","HTTPS":true,"Link":"https://go.developer.ebay.com/","Section":"Shopping"},{"API":"Cisco Spark","Description":"Team Collaboration Software","Auth":"OAuth","HTTPS":true,"Link":"https://developer.ciscospark.com","Section":"Social"},{"API":"Discord","Description":"Make bots for Discord, integrate Discord onto an external platform","Auth":"OAuth","HTTPS":true,"Link":"https://discordapp.com/developers/docs/intro","Section":"Social"},{"API":"DonReach Social Count","Description":"Get the social share count of a URL from every major social network","Auth":null,"HTTPS":true,"Link":"https://donreach.com/social-share-count/","Section":"Social"},{"API":"Facebook","Description":"Facebook Login, Share on FB, Social Plugins, Analytics and more","Auth":"OAuth","HTTPS":true,"Link":"https://developers.facebook.com/","Section":"Social"},{"API":"Foursquare","Description":"Interact with Foursquare users and places (geolocation-based checkins, photos, tips, events, etc)","Auth":"OAuth","HTTPS":true,"Link":"https://developer.foursquare.com/","Section":"Social"},{"API":"Fuck Off as a Service","Description":"Asks someone to fuck off","Auth":null,"HTTPS":true,"Link":"https://www.foaas.com","Section":"Social"},{"API":"Full Contact","Description":"Get Social Media profiles and contact Information","Auth":"OAuth","HTTPS":true,"Link":"https://www.fullcontact.com/developer/docs/","Section":"Social"},{"API":"HackerNews","Description":"Social news for CS and entrepreneurship","Auth":null,"HTTPS":true,"Link":"https://github.com/HackerNews/API","Section":"Social"},{"API":"Instagram","Description":"Instagram Login, Share on Instagram, Social Plugins and more","Auth":"OAuth","HTTPS":true,"Link":"https://www.instagram.com/developer/","Section":"Social"},{"API":"LinkedIn","Description":"The foundation of all digital integrations with LinkedIn","Auth":"OAuth","HTTPS":true,"Link":"https://developer.linkedin.com/docs/rest-api","Section":"Social"},{"API":"Meetup.com","Description":"Data about Meetups from Meetupcom","Auth":"apiKey","HTTPS":true,"Link":"https://www.meetup.com/meetup_api/","Section":"Social"},{"API":"Telegram MTProto","Description":"Read and write Telegram data","Auth":"OAuth","HTTPS":true,"Link":"https://core.telegram.org/api#getting-started","Section":"Social"},{"API":"Telegram bot","Description":"Simplified HTTP version of the MTProto API for bots","Auth":"OAuth","HTTPS":true,"Link":"https://core.telegram.org/bots/api","Section":"Social"},{"API":"Pinterest","Description":"The world's catalog of ideas","Auth":"OAuth","HTTPS":true,"Link":"https://developers.pinterest.com/","Section":"Social"},{"API":"PWRTelegram bot","Description":"Boosted version of the Telegram bot API","Auth":"OAuth","HTTPS":true,"Link":"https://pwrtelegram.xyz","Section":"Social"},{"API":"Reddit","Description":"Homepage of the internet","Auth":"OAuth","HTTPS":true,"Link":"https://www.reddit.com/dev/api","Section":"Social"},{"API":"Slack","Description":"Team Instant Messaging","Auth":"OAuth","HTTPS":true,"Link":"https://api.slack.com/","Section":"Social"},{"API":"Tumblr","Description":"Read and write Tumblr Data","Auth":"OAuth","HTTPS":true,"Link":"https://www.tumblr.com/docs/en/api/v2","Section":"Social"},{"API":"Twitch","Description":"Game Streaming API","Auth":"OAuth","HTTPS":true,"Link":"https://github.com/justintv/Twitch-API","Section":"Social"},{"API":"Twitter","Description":"Read and write Twitter data","Auth":"OAuth","HTTPS":true,"Link":"https://dev.twitter.com/rest/public","Section":"Social"},{"API":"vk","Description":"Read and write vk data","Auth":"OAuth","HTTPS":true,"Link":"https://vk.com/dev/sites","Section":"Social"},{"API":"Cartola FC","Description":"The Cartola FC API serves to check the partial points of your team","Auth":null,"HTTPS":true,"Link":"https://github.com/wgenial/cartrolandofc","Section":"Sports & Fitness"},{"API":"City Bikes","Description":"City Bikes around the world","Auth":null,"HTTPS":false,"Link":"http://api.citybik.es/v2/","Section":"Sports & Fitness"},{"API":"Ergast F1","Description":"F1 data from the beginning of the world championships in 1950","Auth":null,"HTTPS":false,"Link":"http://ergast.com/mrd/","Section":"Sports & Fitness"},{"API":"Fitbit","Description":"Fitbit Information","Auth":"OAuth","HTTPS":true,"Link":"https://dev.fitbit.com/","Section":"Sports & Fitness"},{"API":"Football-Data.org","Description":"Football Data","Auth":null,"HTTPS":false,"Link":"http://api.football-data.org/index","Section":"Sports & Fitness"},{"API":"JCDecaux Bike","Description":"JCDecaux's self-service bicycles","Auth":"apiKey","HTTPS":true,"Link":"https://developer.jcdecaux.com/","Section":"Sports & Fitness"},{"API":"Cricket Live Scores","Description":"Live cricket scores","Auth":"X-Mashape-Key","HTTPS":true,"Link":"https://market.mashape.com/dev132/cricket-live-scores","Section":"Sports & Fitness"},{"API":"NFL Arrests","Description":"NFL Arrest Data","Auth":null,"HTTPS":false,"Link":"http://nflarrest.com/api/","Section":"Sports & Fitness"},{"API":"Pro Motocross","Description":"The RESTful AMA Pro Motocross lap times for every racer on the start gate","Auth":null,"HTTPS":false,"Link":"http://promotocrossapi.com","Section":"Sports & Fitness"},{"API":"Strava","Description":"Connect with athletes, activities and more","Auth":"OAuth","HTTPS":true,"Link":"https://strava.github.io/api/","Section":"Sports & Fitness"},{"API":"UFC Data","Description":"Ultimate Fighting Championship information for events and fighters","Auth":null,"HTTPS":false,"Link":"http://ufc-data-api.ufc.com/","Section":"Sports & Fitness"},{"API":"Wger","Description":"Workout manager data as exercises, muscles or equipment","Auth":"apiKey","HTTPS":true,"Link":"https://wger.de/en/software/api","Section":"Sports & Fitness"},{"API":"Postmon","Description":"An API to query Brazilian ZIP codes and orders easily, quickly and free","Auth":null,"HTTPS":false,"Link":"http://postmon.com.br","Section":"Tracking"},{"API":"Sweden","Description":"Provides information about parcels in transport","Auth":"apiKey","HTTPS":false,"Link":"https://developer.postnord.com/docs2","Section":"Tracking"},{"API":"ADS-B Exchange","Description":"Access real-time and historical data of any and all airbone aircraft","Auth":null,"HTTPS":true,"Link":"https://www.adsbexchange.com/data/","Section":"Transportation"},{"API":"Amadeus Travel Innovation Sandbox","Description":"Travel Search - Limited usage","Auth":"apiKey","HTTPS":true,"Link":"https://sandbox.amadeus.com/","Section":"Transportation"},{"API":"Bay Area Rapid Transit","Description":"Stations and predicted arrivals for BART","Auth":"apiKey","HTTPS":false,"Link":"http://api.bart.gov","Section":"Transportation"},{"API":"Community Transit","Description":"Transitland API","Auth":null,"HTTPS":true,"Link":"https://github.com/transitland/transitland-datastore/blob/master/README.md#api-endpoints","Section":"Transportation"},{"API":"Goibibo","Description":"API for travel search","Auth":"apiKey","HTTPS":true,"Link":"https://developer.goibibo.com/docs","Section":"Transportation"},{"API":"Indian Railways","Description":"Indian Railways Information","Auth":"apiKey","HTTPS":false,"Link":"http://api.erail.in/","Section":"Transportation"},{"API":"Izi","Description":"Audio guide for travellers","Auth":"apiKey","HTTPS":true,"Link":"http://api-docs.izi.travel/","Section":"Transportation"},{"API":"Navitia","Description":"The open API for building cool stuff with transport data","Auth":"apiKey","HTTPS":true,"Link":"https://api.navitia.io/","Section":"Transportation"},{"API":"The Nomad List","Description":"A list of the best places to live/work remotely","Auth":null,"HTTPS":true,"Link":"https://nomadlist.com/faq","Section":"Transportation"},{"API":"Schiphol Airport","Description":"Schiphol","Auth":"apiKey","HTTPS":true,"Link":"https://developer.schiphol.nl/","Section":"Transportation"},{"API":"TransitLand","Description":"Transit Aggregation","Auth":null,"HTTPS":true,"Link":"https://transit.land/documentation/datastore/api-endpoints.html","Section":"Transportation"},{"API":"Transport for Atlanta, US","Description":"Marta","Auth":null,"HTTPS":false,"Link":"http://www.itsmarta.com/app-developer-resources.aspx","Section":"Transportation"},{"API":"Transport for Auckland, New Zealand","Description":"Auckland Transport","Auth":null,"HTTPS":true,"Link":"https://api.at.govt.nz/","Section":"Transportation"},{"API":"Transport for Belgium","Description":"Belgian transport API","Auth":null,"HTTPS":true,"Link":"https://hello.irail.be/api/","Section":"Transportation"},{"API":"Transport for Berlin, Germany","Description":"Third-party VBB API","Auth":null,"HTTPS":true,"Link":"https://github.com/derhuerst/vbb-rest/blob/master/docs/index.md","Section":"Transportation"},{"API":"Transport for Boston, US","Description":"MBTA API","Auth":null,"HTTPS":false,"Link":"http://realtime.mbta.com/Portal/Home/Documents","Section":"Transportation"},{"API":"Transport for Budapest, Hungary","Description":"Budapest public transport API","Auth":null,"HTTPS":true,"Link":"https://apiary.io/","Section":"Transportation"},{"API":"Transport for Chicago, US","Description":"CTA","Auth":null,"HTTPS":false,"Link":"http://www.transitchicago.com/developers/","Section":"Transportation"},{"API":"Transport for Czech Republic","Description":"Czech transport API","Auth":null,"HTTPS":true,"Link":"https://www.chaps.cz/eng/products/idos-internet","Section":"Transportation"},{"API":"Transport for Denver, US","Description":"RTD","Auth":null,"HTTPS":false,"Link":"http://www.rtd-denver.com/gtfs-developer-guide.shtml","Section":"Transportation"},{"API":"Transport for Finland","Description":"Finnish transport API","Auth":null,"HTTPS":true,"Link":"https://digitransit.fi/en/developers/ ","Section":"Transportation"},{"API":"Transport for Germany","Description":"Deutsche Bahn (DB) API","Auth":"apiKey","HTTPS":false,"Link":"http://data.deutschebahn.com/dataset/api-fahrplan","Section":"Transportation"},{"API":"Transport for India","Description":"India Public Transport API","Auth":"apiKey","HTTPS":true,"Link":"https://data.gov.in/sector/transport","Section":"Transportation"},{"API":"Transport for London, England","Description":"TfL API","Auth":null,"HTTPS":true,"Link":"https://api.tfl.gov.uk","Section":"Transportation"},{"API":"Transport for Madrid, Spain","Description":"Madrid BUS transport API","Auth":"apiKey","HTTPS":false,"Link":"http://opendata.emtmadrid.es/Servicios-web/BUS","Section":"Transportation"},{"API":"Transport for Minneapolis, US","Description":"NexTrip API","Auth":"OAuth","HTTPS":false,"Link":"http://svc.metrotransit.org/","Section":"Transportation"},{"API":"Transport for The Netherlands","Description":"NS, only trains","Auth":"apiKey","HTTPS":false,"Link":"http://www.ns.nl/reisinformatie/ns-api","Section":"Transportation"},{"API":"Transport for The Netherlands","Description":"OVAPI, country-wide public transport","Auth":null,"HTTPS":true,"Link":"https://github.com/skywave/KV78Turbo-OVAPI/wiki","Section":"Transportation"},{"API":"Transport for New York City, US","Description":"MTA","Auth":"apiKey","HTTPS":false,"Link":"http://datamine.mta.info/","Section":"Transportation"},{"API":"Transport for Norway","Description":"Norwegian transport API","Auth":null,"HTTPS":false,"Link":"http://reisapi.ruter.no/help","Section":"Transportation"},{"API":"Transport for Ottawa, Canada","Description":"OC Transpo next bus arrival API","Auth":null,"HTTPS":false,"Link":"http://www.octranspo.com/index.php/developers","Section":"Transportation"},{"API":"Transport for Paris, France","Description":"RATP Open Data API","Auth":null,"HTTPS":false,"Link":"http://data.ratp.fr/api/v1/console/datasets/1.0/search/","Section":"Transportation"},{"API":"Transport for Paris, France","Description":"Live schedules made simple","Auth":null,"HTTPS":false,"Link":"http://restratpws.azurewebsites.net/swagger/","Section":"Transportation"},{"API":"Transport for Philadelphia, US","Description":"SEPTA APIs","Auth":null,"HTTPS":false,"Link":"http://www3.septa.org/hackathon/","Section":"Transportation"},{"API":"Transport for Rio de Janeiro, Brazil","Description":"Prefeitura do Rio (City Hall)","Auth":null,"HTTPS":false,"Link":"http://data.rio/group/transporte-e-mobilidade","Section":"Transportation"},{"API":"Transport for São Paulo, Brazil","Description":"SPTrans","Auth":"OAuth","HTTPS":false,"Link":"http://www.sptrans.com.br/desenvolvedores/APIOlhoVivo/Documentacao.aspx","Section":"Transportation"},{"API":"Transport for Sweden","Description":"Public Transport consumer","Auth":"OAuth","HTTPS":true,"Link":"https://www.trafiklab.se/api","Section":"Transportation"},{"API":"Transport for Switzerland","Description":"Swiss public transport API","Auth":null,"HTTPS":true,"Link":"https://transport.opendata.ch/","Section":"Transportation"},{"API":"Transport for Switzerland","Description":"Official Swiss Public Transport Open Data","Auth":"apiKey","HTTPS":true,"Link":"https://opentransportdata.swiss/en/","Section":"Transportation"},{"API":"Transport for Tokyo, Japan","Description":"Tokyo Metro","Auth":"apiKey","HTTPS":true,"Link":"https://developer.tokyometroapp.jp/info","Section":"Transportation"},{"API":"Transport for Toronto, Canada","Description":"TTC","Auth":null,"HTTPS":true,"Link":"https://myttc.ca/developers","Section":"Transportation"},{"API":"Transport for Vancouver, Canada","Description":"TransLink","Auth":"OAuth","HTTPS":true,"Link":"https://developer.translink.ca/","Section":"Transportation"},{"API":"Transport for U.S. (multiple locations)","Description":"NextBus API","Auth":null,"HTTPS":false,"Link":"http://www.nextbus.com/xmlFeedDocs/NextBusXMLFeed.pdf","Section":"Transportation"},{"API":"Transport for Victoria, AU","Description":"PTV API","Auth":"apiKey","HTTPS":true,"Link":"https://www.ptv.vic.gov.au/about-ptv/ptv-data-and-reports/digital-products/ptv-timetable-api/","Section":"Transportation"},{"API":"Transport for Washington, US","Description":"Washington Metro transport API","Auth":"OAuth","HTTPS":true,"Link":"https://developer.wmata.com/","Section":"Transportation"},{"API":"Uber","Description":"Request Uber rides, reach riders, transport things, and reward drivers","Auth":"OAuth","HTTPS":true,"Link":"https://developer.uber.com/","Section":"Transportation"},{"API":"WhereIsMyTransport","Description":"Platform for public transport data in emerging cities","Auth":"OAuth","HTTPS":true,"Link":"https://developer.whereismytransport.com/","Section":"Transportation"},{"API":"Universities List","Description":"University names, countries and domains","Auth":null,"HTTPS":true,"Link":"https://github.com/Hipo/university-domains-list","Section":"University"},{"API":"Vehicles","Description":"Lot of vehicles information","Auth":"apiKey","HTTPS":false,"Link":"http://developer.edmunds.com/api-documentation/overview/","Section":"Vehicle"},{"API":"Brazilian Vehicles and Prices","Description":"Vehicles information from Fundação Instituto de Pesquisas Econômicas - Fipe","Auth":null,"HTTPS":true,"Link":"https://deividfortuna.github.io/fipe/","Section":"Vehicle"},{"API":"NHTSA Vehicles","Description":"NHTSA Product Information Catalog and Vehicle Listing","Auth":null,"HTTPS":true,"Link":"https://vpic.nhtsa.dot.gov/api/","Section":"Vehicle"},{"API":"An API of Ice And Fire","Description":"Game Of Thrones API","Auth":null,"HTTPS":true,"Link":"https://anapioficeandfire.com/","Section":"Video"},{"API":"Dailymotion","Description":"Dailymotion Developer API","Auth":"OAuth","HTTPS":true,"Link":"https://developer.dailymotion.com/","Section":"Video"},{"API":"Netflix Roulette","Description":"Netflix database","Auth":null,"HTTPS":true,"Link":"https://netflixroulette.net/api/","Section":"Video"},{"API":"Ron Swanson Quotes","Description":"Television","Auth":null,"HTTPS":true,"Link":"https://github.com/jamesseanwright/ron-swanson-quotes#ron-swanson-quotes-api","Section":"Video"},{"API":"SWAPI","Description":"Star Wars Information","Auth":null,"HTTPS":true,"Link":"https://swapi.co","Section":"Video"},{"API":"TMDb","Description":"Community-based movie data","Auth":"apiKey","HTTPS":true,"Link":"https://www.themoviedb.org/documentation/api","Section":"Video"},{"API":"TVMaze","Description":"TV Show Data","Auth":null,"HTTPS":false,"Link":"http://www.tvmaze.com/api","Section":"Video"},{"API":"Vimeo","Description":"Vimeo Developer API","Auth":"OAuth","HTTPS":true,"Link":"https://developer.vimeo.com/","Section":"Video"},{"API":"YouTube","Description":"Add YouTube functionality to your sites and apps","Auth":"OAuth","HTTPS":true,"Link":"https://developers.google.com/youtube/","Section":"Video"},{"API":"Dark Sky","Description":"Weather","Auth":"apiKey","HTTPS":true,"Link":"https://darksky.net/dev/","Section":"Weather"},{"API":"MetaWeather","Description":"Weather","Auth":null,"HTTPS":true,"Link":"https://www.metaweather.com/api/","Section":"Weather"},{"API":"OpenWeatherMap","Description":"Weather","Auth":"apiKey","HTTPS":false,"Link":"http://openweathermap.org/api","Section":"Weather"},{"API":"Weatherbit","Description":"Weather","Auth":"apiKey","HTTPS":true,"Link":"https://www.weatherbit.io/api","Section":"Weather"},{"API":"Wunderground","Description":"Weather","Auth":"apiKey","HTTPS":true,"Link":"https://www.wunderground.com/weather/api/","Section":"Weather"}]} From b50073d2a3a7d0529178ab071e17c01658b311b5 Mon Sep 17 00:00:00 2001 From: Dave Machado Date: Thu, 3 Aug 2017 15:19:29 -0400 Subject: [PATCH 13/19] remove temp build files --- build/mid.md | 346 --------------------------------------------------- 1 file changed, 346 deletions(-) delete mode 100644 build/mid.md diff --git a/build/mid.md b/build/mid.md deleted file mode 100644 index 3efb3163..00000000 --- a/build/mid.md +++ /dev/null @@ -1,346 +0,0 @@ -### entries -API | Description | Auth | HTTPS | Link | Section -|---|---|---|---|---|---| -| Dogs | Based on the [Stanford Dogs Dataset](http://vision.stanford.edu/aditya86/ImageNetDogs/) | No | Yes | [Go!](https://dog.ceo/dog-api/) | Animals -| IUCN | IUCN Red List of Threatened Species | `apiKey` | No | [Go!](http://apiv3.iucnredlist.org/api/v3/docs) | Animals -| Petfinder | Adoption | `apiKey` | Yes | [Go!](https://www.petfinder.com/developers/api-docs/) | Animals -| RescueGroups | Adoption | No | Yes | [Go!](https://userguide.rescuegroups.org/display/APIDG/API+Developers+Guide+Home) | Animals -| AniList | AniList Anime | `OAuth` | No | [Go!](http://anilist-api.readthedocs.io/en/latest/) | Anime -| Jikan | Unofficial MyAnimeList API | No | Yes | [Go!](https://jikan.me) | Anime -| Kitsu | Anime discovery platform | `OAuth` | Yes | [Go!](http://docs.kitsu.apiary.io/) | Anime -| Studio Ghibli | Resources from Studio Ghibli films | No | Yes | [Go!](https://ghibliapi.herokuapp.com) | Anime -| AlienVault Open Threat Exchange (OTX) | IP/domain/URL reputation | `apiKey` | Yes | [Go!](https://otx.alienvault.com/api/) | Anti-Malware -| Certly | Certly Link/Domain Flagging | `apiKey` | Yes | [Go!](https://guard.certly.io/) | Anti-Malware -| Google Safe Browsing | Google Link/Domain Flagging | `apiKey` | Yes | [Go!](https://developers.google.com/safe-browsing/) | Anti-Malware -| Metacert | Metacert Link Flagging | `apiKey` | Yes | [Go!](https://metacert.com/) | Anti-Malware -| VirusTotal | VirusTotal File/URL Analysis | `apiKey` | Yes | [Go!](https://www.virustotal.com/en/documentation/public-api/) | Anti-Malware -| Web Of Trust (WOT) | Website reputation | `apiKey` | Yes | [Go!](https://www.mywot.com/wiki/API) | Anti-Malware -| Behance | Design | `apiKey` | Yes | [Go!](https://www.behance.net/dev) | Art & Design -| Dribbble | Design | `OAuth` | No | [Go!](http://developer.dribbble.com/v1/) | Art & Design -| Harvard Art Museums | Art | `apiKey` | No | [Go!](https://github.com/harvardartmuseums/api-docs) | Art & Design -| Icons8 | Icons | `OAuth` | Yes | [Go!](http://docs.icons8.apiary.io/#reference/0/meta) | Art & Design -| Noun Project | Icons | `OAuth` | No | [Go!](http://api.thenounproject.com/index.html) | Art & Design -| Rijksmuseum | Art | `apiKey` | Yes | [Go!](https://www.rijksmuseum.nl/en/api) | Art & Design -| British National Bibliography | Books | No | No | [Go!](http://bnb.data.bl.uk/) | Books -| Goodreads | Books | No | Yes | [Go!](https://www.goodreads.com/api) | Books -| Google Books | Books | `OAuth` | Yes | [Go!](https://developers.google.com/books/) | Books -| mailgun | Email Service | `apiKey` | Yes | [Go!](https://www.mailgun.com/) | Business -| markerapi | Trademark Search | No | No | [Go!](http://www.markerapi.com/) | Business -| Church Calendar | Catholic liturgical calendar | No | No | [Go!](http://calapi.inadiutorium.cz/) | Calendar -| Holidays | Historical data regarding holidays | `apiKey` | Yes | [Go!](https://holidayapi.com/) | Calendar -| LectServe | Protestant liturgical calendar | No | No | [Go!](http://www.lectserve.com) | Calendar -| Non-Working Days | Database of ICS files for non working days | No | Yes | [Go!](https://github.com/gadael/icsdb) | Calendar -| Box | File Sharing and Storage | `OAuth` | Yes | [Go!](https://developer.box.com/) | Cloud Storage & File Sharing -| Dropbox | File Sharing and Storage | `OAuth` | Yes | [Go!](https://www.dropbox.com/developers) | Cloud Storage & File Sharing -| Google Drive | File Sharing and Storage | `OAuth` | Yes | [Go!](https://developers.google.com/drive/) | Cloud Storage & File Sharing -| OneDrive | File Sharing and Storage | `OAuth` | Yes | [Go!](https://dev.onedrive.com/) | Cloud Storage & File Sharing -| Currencylayer | Exchange rates and currency conversion | `apiKey` | Yes | [Go!](https://currencylayer.com/documentation) | Currency Exchange -| Fixer.io | Exchange rates and currency conversion | No | Yes | [Go!](http://fixer.io) | Currency Exchange -| 18F | US Federal Government /Developer Program | No | No | [Go!](http://18f.github.io/API-All-the-X/) | Data Access -| Abbreviation | Get abbreviations and meanings | `X-Mashape-Key` | Yes | [Go!](https://market.mashape.com/daxeel/abbreviations) | Data Access -| CARTO | Location Information Prediction | `apiKey` | Yes | [Go!](https://carto.com/) | Data Access -| Callook.info | United States ham radio callsigns | No | Yes | [Go!](https://callook.info) | Data Access -| Celebinfo | Celebrity information | `X-Mashape-Key` | Yes | [Go!](https://market.mashape.com/daxeel/celebinfo/) | Data Access -| Colorado Data Engine | Formatted and geolocated Colorado public data | No | Yes | [Go!](http://codataengine.org/) | Data Access -| Colorado Information Marketplace | Colorado State Government Open Data | No | Yes | [Go!](https://data.colorado.gov/) | Data Access -| Datakick | The open product database | `apiKey` | Yes | [Go!](https://www.datakick.org/api) | Data Access -| Data USA | US Public Data | No | Yes | [Go!](https://datausa.io/about/api/) | Data Access -| Dronestream | Tracks United States drone strikes | No | Yes | [Go!](https://dronestre.am/) | Data Access -| fonoApi | Mobile Device Description | No | Yes | [Go!](https://fonoapi.freshpixl.com/) | Data Access -| Open Government, Australia | Australian Government Open Data | No | Yes | [Go!](https://www.data.gov.au/) | Data Access -| Open Government, USA | United States Government Open Data | No | Yes | [Go!](https://www.data.gov/) | Data Access -| Open Government, Canada | Canadian Government Open Data | No | No | [Go!](http://open.canada.ca/en) | Data Access -| Open Government Data, India | Indian Government Open Data | `apiKey` | Yes | [Go!](https://data.gov.in/) | Data Access -| Open Government, New Zealand | New Zealand Government Open Data | No | Yes | [Go!](https://www.data.govt.nz/) | Data Access -| Outpan | A Database of Everything | `apiKey` | Yes | [Go!](https://outpan.mixnode.com/developers) | Data Access -| Pearson | Dictionary Data | `apiKey` | No | [Go!](http://developer.pearson.com/apis/dictionaries) | Data Access -| Prague Opendata | Prague City Open Data | No | No | [Go!](http://opendata.praha.eu/en) | Data Access -| Quandl | Stock Market Data | No | Yes | [Go!](https://www.quandl.com/) | Data Access -| Represent by Open North | Find Canadian Government Representatives | No | Yes | [Go!](https://represent.opennorth.ca/) | Data Access -| Scoop.it | Content Curation Service | `apiKey` | No | [Go!](http://www.scoop.it/dev) | Data Access -| Teleport | Quality of Life Data | No | Yes | [Go!](https://developers.teleport.org/) | Data Access -| UPC database | More than 1.5 million barcode numbers from all around the world | `apiKey` | Yes | [Go!](https://upcdatabase.org/api) | Data Access -| Wikipedia | Mediawiki Encyclopedia | No | Yes | [Go!](https://www.mediawiki.org/wiki/API:Main_page) | Data Access -| Wordnik | Dictionary Data | No | No | [Go!](http://developer.wordnik.com) | Data Access -| Yelp | Find Local Business | `OAuth` | Yes | [Go!](https://www.yelp.com/developers/documentation/v3) | Data Access -| languagelayer | Language detection | No | Yes | [Go!](https://languagelayer.com) | Data Validation -| Lob.com | US Address Verification | `apiKey` | Yes | [Go!](https://lob.com/) | Data Validation -| mailboxlayer | Email address validation | No | Yes | [Go!](https://mailboxlayer.com) | Data Validation -| numverify | Phone number validation | No | Yes | [Go!](https://numverify.com) | Data Validation -| vatlayer | VAT number validation | No | Yes | [Go!](https://vatlayer.com) | Data Validation -| Adorable Avatars | Generate random cartoon avatars | No | Yes | [Go!](http://avatars.adorable.io) | Development -| APIs.guru | Wikipedia for Web APIs, OpenAPI/Swagger specs for public APIs | No | Yes | [Go!](https://apis.guru/api-doc/) | Development -| BetterMeta | Return a site's meta tags in JSON format | X-Mashape-Key | Yes | [Go!](http://bettermeta.io) | Development -| Changelogs.md | Structured changelog metadata from open source projects | No | Yes | [Go!](https://changelogs.md) | Development -| CDNJS | Library info on CDNJS | No | Yes | [Go!](https://api.cdnjs.com/libraries/jquery) | Development -| Faceplusplus | A tool to detect face | `OAuth` | Yes | [Go!](https://www.faceplusplus.com/) | Development -| Genderize.io | Determines a gender from a first name | No | Yes | [Go!](https://genderize.io) | Development -| Github - User Data | Pull public information for a user's github | No | Yes | [Go!](https://api.github.com/users/hackeryou) | Development -| Gitter | Chat for GitHub | `OAuth` | Yes | [Go!](https://github.com/gitterHQ/docs) | Development -| HackerRank | Compile source code and run against a set of provided test cases | `apiKey` | Yes | [Go!](https://www.hackerrank.com/api/docs) | Development -| Hipster Ipsum | Generates Hipster Ipsum text | No | No | [Go!](http://hipsterjesus.com/) | Development -| IPify | A simple IP Address API | No | Yes | [Go!](https://www.ipify.org/) | Development -| JSON 2 JSONP | Convert JSON to JSONP (on-the-fly) for easy cross-domain data requests using client-side JavaScript | No | Yes | [Go!](https://json2jsonp.com/) | Development -| JSONbin.io | Free JSON storage service. Ideal for small scale Web apps, Websites and Mobile apps | No | Yes | [Go!](https://jsonbin.io) | Development -| JSONPlaceholder | Fake data for testing and prototyping | No | No | [Go!](http://jsonplaceholder.typicode.com/) | Development -| Judge0 API | Compile and run source code | No | Yes | [Go!](https://api.judge0.com/) | Development -| Kairos | Face Recognition and Emotion Analysis | `apiKey` | Yes | [Go!](https://www.kairos.com/features) | Development -| Let's Validate | Uncovers the technologies used on websites and URL to thumbnail | No | Yes | [Go!](https://github.com/letsvalidate/api) | Development -| LiveEdu | Live Coding Streaming | `OAuth` | Yes | [Go!](https://www.liveedu.tv/developer/applications/) | Development -| Lorem Text | Generates Lorem Ipsum text | `X-Mashape-Key` | Yes | [Go!](https://market.mashape.com/montanaflynn/lorem-text-generator) | Development -| Loripsum | The "lorem ipsum" generator that doesn't suck | No | No | [Go!](http://loripsum.net/) | Development -| Myjson | A simple JSON store for your web or mobile app | No | No | [Go!](http://myjson.com/api) | Development -| Plino | Spam filtering system | No | Yes | [Go!](https://plino.herokuapp.com/) | Development -| Public APIs | A collective list of free JSON APIs for use in web development | No | Yes | [Go!](https://github.com/toddmotto/public-apis/tree/master/json) | Development -| Random Word | Generate random word | No | No | [Go!](http://www.setgetgo.com/randomword/) | Development -| RandomUser | Generates random user data | No | Yes | [Go!](https://randomuser.me) | Development -| ReqRes | A hosted REST-API ready to respond to your AJAX requests | No | Yes | [Go!](https://reqres.in/ ) | Development -| RoboHash | Generate random robot/alien avatars | No | Yes | [Go!](https://robohash.org/) | Development -| StackExchange | Q&A forum for developers | `OAuth` | Yes | [Go!](https://api.stackexchange.com/) | Development -| Stormpath | User Authentication | `apiKey` | Yes | [Go!](https://stormpath.com/) | Development -| UI Names | Generate random fake names | No | Yes | [Go!](https://github.com/thm/uinames) | Development -| Verse | Check what's the latest version of your favorite open-source project | No | Yes | [Go!](https://verse.pawelad.xyz/) | Development -| File.io | File Sharing | No | Yes | [Go!](https://www.file.io) | Documents & Productivity -| pdflayer API | HTML/URL to PDF | No | Yes | [Go!](https://pdflayer.com) | Documents & Productivity -| Pocket | Bookmarking service | `OAuth` | Yes | [Go!](https://getpocket.com/developer/) | Documents & Productivity -| PrexView | Data from XML or JSON to PDF, HTML or Image | `apiKey` | Yes | [Go!](https://prexview.com) | Documents & Productivity -| Todoist | Todo Lists | `OAuth` | Yes | [Go!](https://developer.todoist.com) | Documents & Productivity -| Wunderlist | Todo Lists | `OAuth` | Yes | [Go!](https://developer.wunderlist.com/documentation) | Documents & Productivity -| AirVisual | Air quality and weather data | `apiKey` | Yes | [Go!](https://airvisual.com/api) | Environment -| OpenAQ | Open air quality data | `apiKey` | Yes | [Go!](https://docs.openaq.org/) | Environment -| PM2.5.in | Air quality of China | `apiKey` | No | [Go!](http://www.pm25.in/api_doc) | Environment -| Barchart OnDemand | Stock, Futures, and Forex Market Data | `apiKey` | Yes | [Go!](https://www.barchartondemand.com/free) | Finance -| CoinDesk | Bitcoin Price Index | No | No | [Go!](http://www.coindesk.com/api/) | Finance -| Consumer Financial Protection Bureau | Financial services consumer complains data | `apiKey` | Yes | [Go!](https://data.consumerfinance.gov/resource/jhzv-w97w.json) | Finance -| IEX | Stocks and Market Data | No | Yes | [Go!](https://iextrading.com/developer/) | Finance -| Razorpay IFSC | Indian Financial Systems Code (Bank Branch Codes) | No | Yes | [Go!](https://ifsc.razorpay.com/) | Finance -| BigOven | Recipe Search | `X-Mashape-Key` | No | [Go!](http://api2.bigoven.com/) | Food & Drink -| BreweryDB | Beer | `apiKey` | No | [Go!](http://www.brewerydb.com/developers) | Food & Drink -| Edamam | Recipe Search | `apiKey` | Yes | [Go!](https://developer.edamam.com/) | Food & Drink -| Food2Fork | Recipe Search | `apiKey` | No | [Go!](http://food2fork.com/about/api) | Food & Drink -| LCBO | Alcohol | `apiKey` | Yes | [Go!](https://lcboapi.com/) | Food & Drink -| PunkAPI | Brewdog Beer Recipes | No | Yes | [Go!](https://punkapi.com/) | Food & Drink -| Recipe Puppy | Food | No | No | [Go!](http://www.recipepuppy.com/about/api/) | Food & Drink -| TacoFancy | Community-driven taco database | No | No | [Go!](https://github.com/evz/tacofancy-api) | Food & Drink -| TheCocktailDB | Cocktail Recipes | No | No | [Go!](http://www.thecocktaildb.com/) | Food & Drink -| The Report of the Week | Food & Drink Reviews | No | Yes | [Go!](https://github.com/andyklimczak/TheReportOfTheWeek-API) | Food & Drink -| What's on the menu? | NYPL human-transcribed historical menu collection | `apiKey` | No | [Go!](nypl.github.io/menus-api/) | Food & Drink -| Yummly | Find food recipes | No | Yes | [Go!](https://developer.yummly.com/) | Food & Drink -| Zomato | Discover restaurants | `apiKey` | Yes | [Go!](https://developers.zomato.com/api) | Food & Drink -| Whitepages Pro | Global identity verification with phone, address, email, and IP | `apiKey` | Yes | [Go!](https://pro.whitepages.com/developer/documentation/identity-check-api/) | Fraud Prevention -| Whitepages Pro | Phone reputation to detect spammy phones | `apiKey` | Yes | [Go!](https://pro.whitepages.com/developer/documentation/phone-reputation-api/) | Fraud Prevention -| Whitepages Pro | Get an owner’s name, address, demographics based on the phone number | `apiKey` | Yes | [Go!](https://pro.whitepages.com/developer/documentation/reverse-phone-api/) | Fraud Prevention -| Whitepages Pro | Phone number validation, line_type, carrier append | `apiKey` | Yes | [Go!](https://pro.whitepages.com/developer/documentation/phone-intelligence-api/) | Fraud Prevention -| Whitepages Pro | Get normalized physical address, residents, address type, and validity | `apiKey` | Yes | [Go!](https://pro.whitepages.com/developer/documentation/reverse-address-api/) | Fraud Prevention -| Battle.net | Blizzard Entertainment | No | Yes | [Go!](https://dev.battle.net/) | Games & Comics -| Battlefield 4 | Battlefield 4 Information | No | Yes | [Go!](https://bf4stats.com/api) | Games & Comics -| Chuck Norris Database | Jokes | No | No | [Go!](http://www.icndb.com/api/) | Games & Comics -| Clash of Clans | Clash of Clans Game Information | No | Yes | [Go!](https://developer.clashofclans.com) | Games & Comics -| Clash Royale | Clash Royale Game Information | No | Yes | [Go!](https://github.com/martincarrera/clash-royale-api) | Games & Comics -| Comic Vine | Comics | No | Yes | [Go!](https://comicvine.gamespot.com/api/documentation) | Games & Comics -| Deck of Cards | Deck of Cards | No | No | [Go!](http://deckofcardsapi.com/) | Games & Comics -| Destiny The Game | Bungie Platform API | `apiKey` | Yes | [Go!](https://www.bungie.net/en/Clan/Post/39966/85087279/0/0) | Games & Comics -| Eve Online | Third-Party Developer Documentation | `OAuth` | Yes | [Go!](https://eveonline-third-party-documentation.readthedocs.io/en/latest/) | Games & Comics -| Giant Bomb | Video Games | No | Yes | [Go!](https://www.giantbomb.com/api/documentation) | Games & Comics -| Guild Wars 2 | Guild Wars 2 Game Information | `apiKey` | Yes | [Go!](https://wiki.guildwars2.com/wiki/API:Main) | Games & Comics -| Jservice | Jeopardy Question Database | No | No | [Go!](http://jservice.io) | Games & Comics -| Magic The Gathering | Magic The Gathering Game Information | No | No | [Go!](http://magicthegathering.io/) | Games & Comics -| Marvel | Marvel Comics | `apiKey` | No | [Go!](http://developer.marvel.com) | Games & Comics -| Minecraft | Minecraft server info & user info) | No | Yes | [Go!](https://mcapi.ca/) | Games & Comics -| Open Trivia | Trivia Questions | No | Yes | [Go!](https://opentdb.com/api_config.php) | Games & Comics -| PandaScore | E-sports games and results | `apiKey` | Yes | [Go!](https://api.pandascore.co) | Games & Comics -| Pokéapi | Pokémon Information | No | No | [Go!](http://pokeapi.co) | Games & Comics -| Qriusity | Quiz/Trivia Questions | No | Yes | [Go!](https://qriusity.com/) | Games & Comics -| Riot Games | League of Legends Game Information | `apiKey` | Yes | [Go!](https://developer.riotgames.com/) | Games & Comics -| Steam | Steam Client Interaction | `OAuth` | Yes | [Go!](https://developer.valvesoftware.com/wiki/Steam_Web_API) | Games & Comics -| adresse.data.gouv.fr | Address database of France, geocoding, and reverse | No | Yes | [Go!](https://adresse.data.gouv.fr) | Geocoding -| Bing Maps | Create/customize digital maps based on Bing Maps data | `apiKey` | Yes | [Go!](https://www.microsoft.com/maps/) | Geocoding -| Geocode.xyz | Provides worldwide forward/reverse geocoding, batch geocoding and geoparsing | No | Yes | [Go!](https://geocode.xyz/) | Geocoding -| GeoNames | Place names and other geographical data | No | No | [Go!](http://www.geonames.org/export/web-services.html) | Geocoding -| GéoApi | French geographical data | No | Yes | [Go!](https://api.gouv.fr/api/geoapi.html) | Geocoding -| Google Maps | Create/customize digital maps based on Google Maps data | `apiKey` | Yes | [Go!](https://developers.google.com/maps/) | Geocoding -| IP 2 Country | Map an IP to a country | No | Yes | [Go!](https://ip2country.info) | Geocoding -| IP Address Details | Find geolocation with ip address | No | Yes | [Go!](https://ipinfo.io/) | Geocoding -| IP Location | Find IP address location information | No | Yes | [Go!](https://ipapi.co/) | Geocoding -| IP Vigilante | Free IP Geolocation API | No | Yes | [Go!](https://www.ipvigilante.com/) | Geocoding -| Mapbox | Create/customize beautiful digital maps | `apiKey` | Yes | [Go!](https://www.mapbox.com/developers/) | Geocoding -| Mapzen Search | Open Source & Open Data Global Geocoding Service | `apiKey` | Yes | [Go!](https://mapzen.com/products/search/) | Geocoding -| Mexico | Mexico RESTful zip codes API | No | Yes | [Go!](https://github.com/IcaliaLabs/sepomex) | Geocoding -| One Map 2.0, Singapore | Singapore Land Authority REST API services for Singapore addresses | `apiKey` | Yes | [Go!](https://docs.onemap.sg/) | Geocoding -| OnWater | Determine if a lat/lon is on water or land | No | Yes | [Go!](https://onwater.io/) | Geocoding -| OpenCage | Forward and reverse geocoding using open data | No | Yes | [Go!](https://geocoder.opencagedata.com) | Geocoding -| OpenStreetMap | Navigation, geolocation and geographical data | `OAuth` | No | [Go!](http://wiki.openstreetmap.org/wiki/API) | Geocoding -| PostcodeData.nl | Provide geolocation data based on postcode for Dutch addresses | No | No | [Go!](http://api.postcodedata.nl/v1/postcode/?postcode=1211EP&streetnumber=60&ref=domeinnaam.nl&type=json) | Geocoding -| Postcodes.io | Postcode lookup & Geolocation for the UK | No | Yes | [Go!](https://postcodes.io) | Geocoding -| REST Countries | Get information about countries via a RESTful API | No | Yes | [Go!](https://restcountries.eu) | Geocoding -| Utah AGRC | Utah Web API for geocoding Utah addresses | `apiKey` | Yes | [Go!](https://api.mapserv.utah.gov) | Geocoding -| ViaCep | Brazil RESTful zip codes API | No | Yes | [Go!](https://viacep.com.br) | Geocoding -| Zippopotam | Get information about place such as country, city, state, etc | No | No | [Go!](http://www.zippopotam.us) | Geocoding -| Diabetes | Logging and retrieving diabetes information | No | No | [Go!](http://predictbgl.com/api/) | Health -| Flutrack | Influenza-like symptoms with geotracking | No | No | [Go!](http://www.flutrack.org/) | Health -| Makeup | Makeup Information | No | No | [Go!](http://makeup-api.herokuapp.com/) | Health -| Medicare | Access to the data from the CMS - medicare.gov | No | Yes | [Go!](https://data.medicare.gov/developers) | Health -| Nutritionix | Worlds largest verified nutrition database | `apiKey` | Yes | [Go!](https://developer.nutritionix.com/) | Health -| openFDA | Public FDA data about drugs, devices, and foods | No | Yes | [Go!](https://open.fda.gov/api/) | Health -| USDA Nutrients | National Nutrient Database for Standard Reference | No | Yes | [Go!](https://ndb.nal.usda.gov/ndb/doc/index) | Health -| API.AI | Natural Language Processing | `apiKey` | Yes | [Go!](https://api.ai/) | Machine Learning -| Clarifai | Computer Vision | `OAuth` | Yes | [Go!](https://developer.clarifai.com/) | Machine Learning -| Cleverbot | Web chat bot | `apiKey` | Yes | [Go!](https://www.cleverbot.com/api/) | Machine Learning -| Keen IO | Data Analytics | `apiKey` | Yes | [Go!](https://keen.io/) | Machine Learning -| Unplugg | Forecasting API for timeseries data | `apiKey` | Yes | [Go!](https://unplu.gg/test_api.html) | Machine Learning -| Wit.ai | Natural Language Processing | `OAuth` | Yes | [Go!](https://wit.ai/) | Machine Learning -| Newton | Symbolic and Arithmetic Math Calculator | No | Yes | [Go!](https://newton.now.sh/) | Math -| Numbers API | Facts about numbers | No | No | [Go!](http://numbersapi.com) | Math -| Bandsintown | Music Events | No | Yes | [Go!](https://app.swaggerhub.com/apis/Bandsintown/PublicAPI/3.0.0) | Music -| Deezer | Music | `OAuth` | No | [Go!](http://developers.deezer.com/login?redirect=/api) | Music -| Discogs | Music | `OAuth` | Yes | [Go!](https://www.discogs.com/developers/) | Music -| Genius | Crowdsourced lyrics and music knowledge | `OAuth` | Yes | [Go!](https://docs.genius.com/) | Music -| Jamendo | Music | `OAuth` | Yes | [Go!](https://developer.jamendo.com/v3.0) | Music -| iTunes Search | Software products | No | Yes | [Go!](https://affiliate.itunes.apple.com/resources/documentation/itunes-store-web-service-search-api/) | Music -| LastFm | Music | `apiKey` | No | [Go!](http://www.last.fm/api) | Music -| Mixcloud | Music | No | Yes | [Go!](https://www.mixcloud.com/developers/) | Music -| MusicBrainz | Music | No | Yes | [Go!](https://musicbrainz.org/doc/Development/XML_Web_Service/Version_2) | Music -| Musikki | Music | `apiKey` | Yes | [Go!](https://music-api.musikki.com/reference) | Music -| Musixmatch | Music | `apiKey` | Yes | [Go!](https://developer.musixmatch.com/) | Music -| Songkick | Music Events | `OAuth` | Yes | [Go!](https://www.songkick.com/developer/) | Music -| Songsterr | Provides guitar, bass and drums tabs and chords | No | Yes | [Go!](https://www.songsterr.com/a/wa/api/) | Music -| Soundcloud | Music | No | Yes | [Go!](https://developers.soundcloud.com/) | Music -| Spotify | Music | `OAuth` | Yes | [Go!](https://developer.spotify.com/web-api/) | Music -| Vagalume | Crowdsourced lyrics and music knowledge | `apiKey` | Yes | [Go!](https://api.vagalume.com.br/docs/) | Music -| Chronicling America | Provides access to millions of pages of historic US newspapers from the Library of Congress | No | No | [Go!](http://chroniclingamerica.loc.gov/about/api/) | News -| New York Times | Provides news | `apiKey` | Yes | [Go!](https://developer.nytimes.com/) | News -| News API | Headlines currently published on a range of news sources and blogs | `apiKey` | Yes | [Go!](https://newsapi.org/) | News -| The Guardian | Access all the content the Guardian creates, categorised by tags and section | `apiKey` | Yes | [Go!](http://open-platform.theguardian.com/) | News -| Countly | Countly web analytics | No | No | [Go!](http://resources.count.ly/docs) | Open Source projects -| Drupal.org | Drupal.org | No | Yes | [Go!](https://www.drupal.org/drupalorg/docs/api) | Open Source projects -| Libraries.io | Open source software libraries | `apiKey` | Yes | [Go!](https://libraries.io/api) | Open Source projects -| chucknorris.io | JSON API for hand curated Chuck Norris jokes | No | Yes | [Go!](https://api.chucknorris.io) | Personality -| Forismatic | Inspirational Quotes | No | No | [Go!](http://forismatic.com/en/api/) | Personality -| icanhazdadjoke | The largest selection of dad jokes on the internet | No | Yes | [Go!](https://icanhazdadjoke.com/api) | Personality -| Medium | Community of readers and writers offering unique perspectives on ideas | `OAuth` | Yes | [Go!](https://github.com/Medium/medium-api-docs) | Personality -| Quotes on Design | Inspirational Quotes | No | Yes | [Go!](https://quotesondesign.com/api-v4-0/) | Personality -| Traitify | Assess, collect, and analyze Personality | No | Yes | [Go!](https://app.traitify.com/developer) | Personality -| tronalddump.io | Api & web archive for the things Donald Trump has said | No | Yes | [Go!](https://www.tronalddump.io) | Personality -| 500px | Photography Community | `OAuth` | Yes | [Go!](https://github.com/500px/api-documentation) | Photography -| Flickr | Flickr Services | `OAuth` | Yes | [Go!](https://www.flickr.com/services/api/) | Photography -| Gfycat | Jiffier GIFs | `OAuth` | Yes | [Go!](https://developers.gfycat.com/api/) | Photography -| Giphy | Get all your gifs | No | Yes | [Go!](https://github.com/Giphy/GiphyAPI) | Photography -| Imgur | Images | `OAuth` | Yes | [Go!](https://api.imgur.com/#overview) | Photography -| ScreenShotLayer | URL 2 Image | No | Yes | [Go!](https://screenshotlayer.com) | Photography -| Unsplash | Photography | `OAuth` | Yes | [Go!](https://unsplash.com/developers) | Photography -| PlaceKitten | Resizable kitten placeholder images | No | Yes | [Go!](https://placekitten.com/) | Photography -| arcsecond.io | Multiple astronomy data sources | No | Yes | [Go!](https://api.arcsecond.io/) | Science -| CORE | Access the world's Open Access research papers | `apiKey` | Yes | [Go!](https://core.ac.uk/services#api) | Science -| Fedger.io | Query machine intelligence data | No | Yes | [Go!](https://dev.fedger.io/docs/) | Science -| inspirehep.net | High Energy Physics info. system | No | Yes | [Go!](https://inspirehep.net/info/hep/api?ln=en) | Science -| Launch Library | Upcoming Space Launches | No | Yes | [Go!](https://launchlibrary.net/1.2/docs/api.html) | Science -| Minor Planet Center | Asterank.com Information | No | No | [Go!](http://www.asterank.com/mpc) | Science -| NASA | NASA data, including imagery | No | Yes | [Go!](https://api.nasa.gov) | Science -| Open Notify | ISS astronauts, current location, etc | No | No | [Go!](http://open-notify.org/Open-Notify-API/) | Science -| Sunrise and Sunset | Sunset and sunrise times for a given latitude and longitude | No | Yes | [Go!](https://sunrise-sunset.org/api) | Science -| USGS Earthquake Hazards Program | Earthquakes data real-time | No | Yes | [Go!](https://earthquake.usgs.gov/fdsnws/event/1/) | Science -| USGS Water Services | Water quality and level info for rivers and lakes | No | Yes | [Go!](https://waterservices.usgs.gov/) | Science -| World Bank | World Data | No | No | [Go!](https://datahelpdesk.worldbank.org/knowledgebase/topics/125589) | Science -| AXFR Database | AXFR public database | No | No | [Go!](http://api.axfrcheck.com) | Security -| UK Police | UK Police data | No | Yes | [Go!](https://data.police.uk/docs/) | Security -| eBay | Sell and Buy on eBay | `OAuth` | Yes | [Go!](https://go.developer.ebay.com/) | Shopping -| Cisco Spark | Team Collaboration Software | `OAuth` | Yes | [Go!](https://developer.ciscospark.com) | Social -| Discord | Make bots for Discord, integrate Discord onto an external platform | `OAuth` | Yes | [Go!](https://discordapp.com/developers/docs/intro) | Social -| DonReach Social Count | Get the social share count of a URL from every major social network | No | Yes | [Go!](https://donreach.com/social-share-count/) | Social -| Facebook | Facebook Login, Share on FB, Social Plugins, Analytics and more | `OAuth` | Yes | [Go!](https://developers.facebook.com/) | Social -| Foursquare | Interact with Foursquare users and places (geolocation-based checkins, photos, tips, events, etc) | `OAuth` | Yes | [Go!](https://developer.foursquare.com/) | Social -| Fuck Off as a Service | Asks someone to fuck off | No | Yes | [Go!](https://www.foaas.com) | Social -| Full Contact | Get Social Media profiles and contact Information | `OAuth` | Yes | [Go!](https://www.fullcontact.com/developer/docs/) | Social -| HackerNews | Social news for CS and entrepreneurship | No | Yes | [Go!](https://github.com/HackerNews/API) | Social -| Instagram | Instagram Login, Share on Instagram, Social Plugins and more | `OAuth` | Yes | [Go!](https://www.instagram.com/developer/) | Social -| LinkedIn | The foundation of all digital integrations with LinkedIn | `OAuth` | Yes | [Go!](https://developer.linkedin.com/docs/rest-api) | Social -| Meetup.com | Data about Meetups from Meetup.com | `apiKey` | Yes | [Go!](https://www.meetup.com/meetup_api/) | Social -| Telegram MTProto | Read and write Telegram data | `OAuth` | Yes | [Go!](https://core.telegram.org/api#getting-started) | Social -| Telegram bot | Simplified HTTP version of the MTProto API for bots | `OAuth` | Yes | [Go!](https://core.telegram.org/bots/api) | Social -| Pinterest | The world's catalog of ideas | `OAuth` | Yes | [Go!](https://developers.pinterest.com/) | Social -| PWRTelegram bot | Boosted version of the Telegram bot API | `OAuth` | Yes | [Go!](https://pwrtelegram.xyz) | Social -| Reddit | Homepage of the internet | `OAuth` | Yes | [Go!](https://www.reddit.com/dev/api) | Social -| Slack | Team Instant Messaging | `OAuth` | Yes | [Go!](https://api.slack.com/) | Social -| Tumblr | Read and write Tumblr Data | `OAuth` | Yes | [Go!](https://www.tumblr.com/docs/en/api/v2) | Social -| Twitch | Game Streaming API | `OAuth` | Yes | [Go!](https://github.com/justintv/Twitch-API) | Social -| Twitter | Read and write Twitter data | `OAuth` | Yes | [Go!](https://dev.twitter.com/rest/public) | Social -| vk | Read and write vk data | `OAuth` | Yes | [Go!](https://vk.com/dev/sites) | Social -| Cartola FC | The Cartola FC API serves to check the partial points of your team | No | Yes | [Go!](https://github.com/wgenial/cartrolandofc) | Sports & Fitness -| City Bikes | City Bikes around the world | No | No | [Go!](http://api.citybik.es/v2/) | Sports & Fitness -| Ergast F1 | F1 data from the beginning of the world championships in 1950 | No | No | [Go!](http://ergast.com/mrd/) | Sports & Fitness -| Fitbit | Fitbit Information | `OAuth` | Yes | [Go!](https://dev.fitbit.com/) | Sports & Fitness -| Football-Data.org | Football Data | No | No | [Go!](http://api.football-data.org/index) | Sports & Fitness -| JCDecaux Bike | JCDecaux's self-service bicycles | `apiKey` | Yes | [Go!](https://developer.jcdecaux.com/) | Sports & Fitness -| Cricket Live Scores | Live cricket scores | `X-Mashape-Key` | Yes | [Go!](https://market.mashape.com/dev132/cricket-live-scores) | Sports & Fitness -| NFL Arrests | NFL Arrest Data | No | No | [Go!](http://nflarrest.com/api/) | Sports & Fitness -| Pro Motocross | The RESTful AMA Pro Motocross lap times for every racer on the start gate | No | No | [Go!](http://promotocrossapi.com) | Sports & Fitness -| Strava | Connect with athletes, activities and more | `OAuth` | Yes | [Go!](https://strava.github.io/api/) | Sports & Fitness -| UFC Data | Ultimate Fighting Championship information for events and fighters | No | No | [Go!](http://ufc-data-api.ufc.com/) | Sports & Fitness -| Wger | Workout manager data as exercises, muscles or equipment | `apiKey` | Yes | [Go!](https://wger.de/en/software/api) | Sports & Fitness -| Postmon | An API to query Brazilian ZIP codes and orders easily, quickly and free | No | No | [Go!](http://postmon.com.br) | Tracking -| Sweden | Provides information about parcels in transport | `apiKey` | No | [Go!](https://developer.postnord.com/docs2) | Tracking -| ADS-B Exchange | Access real-time and historical data of any and all airbone aircraft | No | Yes | [Go!](https://www.adsbexchange.com/data/) | Transportation -| Amadeus Travel Innovation Sandbox | Travel Search - Limited usage | `apiKey` | Yes | [Go!](https://sandbox.amadeus.com/) | Transportation -| Bay Area Rapid Transit | Stations and predicted arrivals for BART | `apiKey` | No | [Go!](http://api.bart.gov) | Transportation -| Community Transit | Transitland API | No | Yes | [Go!](https://github.com/transitland/transitland-datastore/blob/master/README.md#api-endpoints) | Transportation -| Goibibo | API for travel search | `apiKey` | Yes | [Go!](https://developer.goibibo.com/docs) | Transportation -| Indian Railways | Indian Railways Information | `apiKey` | No | [Go!](http://api.erail.in/) | Transportation -| Izi | Audio guide for travellers | `apiKey` | Yes | [Go!](http://api-docs.izi.travel/) | Transportation -| Navitia | The open API for building cool stuff with transport data | `apiKey` | Yes | [Go!](https://api.navitia.io/) | Transportation -| The Nomad List | A list of the best places to live/work remotely | No | Yes | [Go!](https://nomadlist.com/faq) | Transportation -| Schiphol Airport | Schiphol | `apiKey` | Yes | [Go!](https://developer.schiphol.nl/) | Transportation -| TransitLand | Transit Aggregation | No | Yes | [Go!](https://transit.land/documentation/datastore/api-endpoints.html) | Transportation -| Transport for Atlanta, US | Marta | No | No | [Go!](http://www.itsmarta.com/app-developer-resources.aspx) | Transportation -| Transport for Auckland, New Zealand | Auckland Transport | No | Yes | [Go!](https://api.at.govt.nz/) | Transportation -| Transport for Belgium | Belgian transport API | No | Yes | [Go!](https://hello.irail.be/api/) | Transportation -| Transport for Berlin, Germany | Third-party VBB API | No | Yes | [Go!](https://github.com/derhuerst/vbb-rest/blob/master/docs/index.md) | Transportation -| Transport for Boston, US | MBTA API | No | No | [Go!](http://realtime.mbta.com/Portal/Home/Documents) | Transportation -| Transport for Budapest, Hungary | Budapest public transport API | No | Yes | [Go!](https://apiary.io/) | Transportation -| Transport for Chicago, US | CTA | No | No | [Go!](http://www.transitchicago.com/developers/) | Transportation -| Transport for Czech Republic | Czech transport API | No | Yes | [Go!](https://www.chaps.cz/eng/products/idos-internet) | Transportation -| Transport for Denver, US | RTD | No | No | [Go!](http://www.rtd-denver.com/gtfs-developer-guide.shtml) | Transportation -| Transport for Finland | Finnish transport API | No | Yes | [Go!](https://digitransit.fi/en/developers/ ) | Transportation -| Transport for Germany | Deutsche Bahn (DB) API | `apiKey` | No | [Go!](http://data.deutschebahn.com/dataset/api-fahrplan) | Transportation -| Transport for India | India Public Transport API | `apiKey` | Yes | [Go!](https://data.gov.in/sector/transport) | Transportation -| Transport for London, England | TfL API | No | Yes | [Go!](https://api.tfl.gov.uk) | Transportation -| Transport for Madrid, Spain | Madrid BUS transport API | `apiKey` | No | [Go!](http://opendata.emtmadrid.es/Servicios-web/BUS) | Transportation -| Transport for Minneapolis, US | NexTrip API | `OAuth` | No | [Go!](http://svc.metrotransit.org/) | Transportation -| Transport for The Netherlands | NS, only trains | `apiKey` | No | [Go!](http://www.ns.nl/reisinformatie/ns-api) | Transportation -| Transport for The Netherlands | OVAPI, country-wide public transport | No | Yes | [Go!](https://github.com/skywave/KV78Turbo-OVAPI/wiki) | Transportation -| Transport for New York City, US | MTA | `apiKey` | No | [Go!](http://datamine.mta.info/) | Transportation -| Transport for Norway | Norwegian transport API | No | No | [Go!](http://reisapi.ruter.no/help) | Transportation -| Transport for Ottawa, Canada | OC Transpo next bus arrival API | No | No | [Go!](http://www.octranspo.com/index.php/developers) | Transportation -| Transport for Paris, France | RATP Open Data API | No | No | [Go!](http://data.ratp.fr/api/v1/console/datasets/1.0/search/) | Transportation -| Transport for Paris, France | Live schedules made simple | No | No | [Go!](http://restratpws.azurewebsites.net/swagger/) | Transportation -| Transport for Philadelphia, US | SEPTA APIs | No | No | [Go!](http://www3.septa.org/hackathon/) | Transportation -| Transport for Rio de Janeiro, Brazil | Prefeitura do Rio (City Hall) | No | No | [Go!](http://data.rio/group/transporte-e-mobilidade) | Transportation -| Transport for São Paulo, Brazil | SPTrans | `OAuth` | No | [Go!](http://www.sptrans.com.br/desenvolvedores/APIOlhoVivo/Documentacao.aspx) | Transportation -| Transport for Sweden | Public Transport consumer | `OAuth` | Yes | [Go!](https://www.trafiklab.se/api) | Transportation -| Transport for Switzerland | Swiss public transport API | No | Yes | [Go!](https://transport.opendata.ch/) | Transportation -| Transport for Switzerland | Official Swiss Public Transport Open Data | `apiKey` | Yes | [Go!](https://opentransportdata.swiss/en/) | Transportation -| Transport for Tokyo, Japan | Tokyo Metro | `apiKey` | Yes | [Go!](https://developer.tokyometroapp.jp/info) | Transportation -| Transport for Toronto, Canada | TTC | No | Yes | [Go!](https://myttc.ca/developers) | Transportation -| Transport for Vancouver, Canada | TransLink | `OAuth` | Yes | [Go!](https://developer.translink.ca/) | Transportation -| Transport for U.S. (multiple locations) | NextBus API | No | No | [Go!](http://www.nextbus.com/xmlFeedDocs/NextBusXMLFeed.pdf) | Transportation -| Transport for Victoria, AU | PTV API | `apiKey` | Yes | [Go!](https://www.ptv.vic.gov.au/about-ptv/ptv-data-and-reports/digital-products/ptv-timetable-api/) | Transportation -| Transport for Washington, US | Washington Metro transport API | `OAuth` | Yes | [Go!](https://developer.wmata.com/) | Transportation -| Uber | Request Uber rides, reach riders, transport things, and reward drivers | `OAuth` | Yes | [Go!](https://developer.uber.com/) | Transportation -| WhereIsMyTransport | Platform for public transport data in emerging cities | `OAuth` | Yes | [Go!](https://developer.whereismytransport.com/) | Transportation -| Universities List | University names, countries and domains | No | Yes | [Go!](https://github.com/Hipo/university-domains-list) | University -| Vehicles | Lot of vehicles information | `apiKey` | No | [Go!](http://developer.edmunds.com/api-documentation/overview/) | Vehicle -| Brazilian Vehicles and Prices | Vehicles information from Fundação Instituto de Pesquisas Econômicas - Fipe | No | Yes | [Go!](https://deividfortuna.github.io/fipe/) | Vehicle -| NHTSA Vehicles | NHTSA Product Information Catalog and Vehicle Listing | No | Yes | [Go!](https://vpic.nhtsa.dot.gov/api/) | Vehicle -| An API of Ice And Fire | Game Of Thrones API | No | Yes | [Go!](https://anapioficeandfire.com/) | Video -| Dailymotion | Dailymotion Developer API | `OAuth` | Yes | [Go!](https://developer.dailymotion.com/) | Video -| Netflix Roulette | Netflix database | No | Yes | [Go!](https://netflixroulette.net/api/) | Video -| Ron Swanson Quotes | Television | No | Yes | [Go!](https://github.com/jamesseanwright/ron-swanson-quotes#ron-swanson-quotes-api) | Video -| SWAPI | Star Wars Information | No | Yes | [Go!](https://swapi.co) | Video -| TMDb | Community-based movie data | `apiKey` | Yes | [Go!](https://www.themoviedb.org/documentation/api) | Video -| TVMaze | TV Show Data | No | No | [Go!](http://www.tvmaze.com/api) | Video -| Vimeo | Vimeo Developer API | `OAuth` | Yes | [Go!](https://developer.vimeo.com/) | Video -| YouTube | Add YouTube functionality to your sites and apps | `OAuth` | Yes | [Go!](https://developers.google.com/youtube/) | Video -| Dark Sky | Weather | `apiKey` | Yes | [Go!](https://darksky.net/dev/) | Weather -| MetaWeather | Weather | No | Yes | [Go!](https://www.metaweather.com/api/) | Weather -| OpenWeatherMap | Weather | `apiKey` | No | [Go!](http://openweathermap.org/api) | Weather -| Weatherbit | Weather | `apiKey` | Yes | [Go!](https://www.weatherbit.io/api) | Weather -| Wunderground | Weather | `apiKey` | Yes | [Go!](https://www.wunderground.com/weather/api/) | Weather From 18438d8cbc47ec5f90622a361b6ee7c224820eac Mon Sep 17 00:00:00 2001 From: Dave Machado Date: Thu, 3 Aug 2017 15:20:48 -0400 Subject: [PATCH 14/19] revert travis config --- .travis.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index c5f36618..249415ee 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,17 +1,14 @@ -language: python +language: node_js notifications: email: false before_install: - rvm install 2.4.0 - - wget https://raw.githubusercontent.com/davemachado/build-bot/master/build_bot/requirements.txt install: - gem install httparty ruby-progressbar - - pip install build-bot - - pip install -r requirements.txt before_script: - cd build script: - ./main.sh after_success: - ./build.sh - - ./deploy.sh + - ./deploy.sh \ No newline at end of file From 0f427d78293aa28cd07a83effad5d9948023e11b Mon Sep 17 00:00:00 2001 From: Dave Machado Date: Thu, 3 Aug 2017 15:21:20 -0400 Subject: [PATCH 15/19] revert travis config namespace --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 249415ee..fec3c259 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,4 +11,5 @@ script: - ./main.sh after_success: - ./build.sh - - ./deploy.sh \ No newline at end of file + - ./deploy.sh + \ No newline at end of file From 51a509d922f922ef37ade2b322daa952bb2ad9fa Mon Sep 17 00:00:00 2001 From: Dave Machado Date: Thu, 3 Aug 2017 15:28:17 -0400 Subject: [PATCH 16/19] add entry count to final json --- build/md2json.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build/md2json.js b/build/md2json.js index 624d486c..dd2112ba 100644 --- a/build/md2json.js +++ b/build/md2json.js @@ -37,6 +37,7 @@ function handle(filename, anchor) { var col_num = 0; var cols = []; var rows = []; + var entry_count = 0; function read_line() { return lines[cur_line++]; @@ -100,6 +101,7 @@ function handle(filename, anchor) { } rows.push(row); + entry_count++; line = read_line() } @@ -113,6 +115,7 @@ function handle(filename, anchor) { data.push(ele); } } + root["count"] = entry_count; root[table_name] = data; } console.log(JSON.stringify(root)); From 9c80c51d75f04c96f72101b127391c1b99e755eb Mon Sep 17 00:00:00 2001 From: Dave Machado Date: Thu, 3 Aug 2017 15:30:59 -0400 Subject: [PATCH 17/19] sync up readme --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7daee6f7..c368decc 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,6 @@ API | Description | Auth | HTTPS | Link | ### Art & Design API | Description | Auth | HTTPS | Link | |---|---|---|---|---| -| Behance | Design | `apiKey` | Yes | [Go!](https://www.behance.net/dev) | | Dribbble | Design | `OAuth` | No | [Go!](http://developer.dribbble.com/v1/) | | Harvard Art Museums | Art | `apiKey` | No | [Go!](https://github.com/harvardartmuseums/api-docs) | | Icons8 | Icons | `OAuth` | Yes | [Go!](http://docs.icons8.apiary.io/#reference/0/meta) | @@ -197,7 +196,7 @@ API | Description | Auth | HTTPS | Link | | Verse | Check what's the latest version of your favorite open-source project | No | Yes | [Go!](https://verse.pawelad.xyz/) | ### Documents & Productivity -API | Description | Auth | HTTPS |Link | +API | Description | Auth | HTTPS | Link | |---|---|---|---|---| | File.io | File Sharing | No | Yes | [Go!](https://www.file.io) | | pdflayer API | HTML/URL to PDF | No | Yes | [Go!](https://pdflayer.com) | @@ -545,4 +544,4 @@ API | Description | Auth | HTTPS | Link | | OpenWeatherMap | Weather | `apiKey` | No | [Go!](http://openweathermap.org/api) | | Weatherbit | Weather | `apiKey` | Yes | [Go!](https://www.weatherbit.io/api) | | Wunderground | Weather | `apiKey` | Yes | [Go!](https://www.wunderground.com/weather/api/) | -| Yahoo! Weather | Weather | No | Yes | [Go!](https://developer.yahoo.com/weather/) | +| Yahoo! Weather | Weather | No | Yes | [Go!](https://developer.yahoo.com/weather/) | \ No newline at end of file From 8ac6ac837284521313f54f409c9a597b75d600da Mon Sep 17 00:00:00 2001 From: Dave Machado Date: Thu, 3 Aug 2017 15:43:38 -0400 Subject: [PATCH 18/19] update var declare formatting --- build/condenseMd.js | 18 ++++++++++-------- json/entries.min.json | 1 - 2 files changed, 10 insertions(+), 9 deletions(-) delete mode 100644 json/entries.min.json diff --git a/build/condenseMd.js b/build/condenseMd.js index df40c5d9..14f84fc4 100644 --- a/build/condenseMd.js +++ b/build/condenseMd.js @@ -5,18 +5,20 @@ function setupMd(filename, anchor) { if (err) { return console.log(err); } - var lines = text.split("\n"); - var cur_line = 0; - var line = "" - var table_name = ""; - var col_num = 0; - var cols = []; - var rows = []; + var lines = text.split("\n"), + cur_line = 0, + line = "", + table_name = "", + col_num = 0, + cols = [], + rows = [], + arr = []; + function read_line() { return lines[cur_line++]; } - var arr = []; + while (true) { var cols = []; var rows = []; diff --git a/json/entries.min.json b/json/entries.min.json deleted file mode 100644 index c0debd2b..00000000 --- a/json/entries.min.json +++ /dev/null @@ -1 +0,0 @@ -{"entries":[{"API":"Dogs","Description":"Based on the [Stanford Dogs Dataset](http://visionstanford.edu/aditya86/ImageNetDogs/)","Auth":null,"HTTPS":true,"Link":"https://dog.ceo/dog-api/","Section":"Animals"},{"API":"IUCN","Description":"IUCN Red List of Threatened Species","Auth":"apiKey","HTTPS":false,"Link":"http://apiv3.iucnredlist.org/api/v3/docs","Section":"Animals"},{"API":"Petfinder","Description":"Adoption","Auth":"apiKey","HTTPS":true,"Link":"https://www.petfinder.com/developers/api-docs/","Section":"Animals"},{"API":"RescueGroups","Description":"Adoption","Auth":null,"HTTPS":true,"Link":"https://userguide.rescuegroups.org/display/APIDG/API+Developers+Guide+Home","Section":"Animals"},{"API":"AniList","Description":"AniList Anime","Auth":"OAuth","HTTPS":false,"Link":"http://anilist-api.readthedocs.io/en/latest/","Section":"Anime"},{"API":"Jikan","Description":"Unofficial MyAnimeList API","Auth":null,"HTTPS":true,"Link":"https://jikan.me","Section":"Anime"},{"API":"Kitsu","Description":"Anime discovery platform","Auth":"OAuth","HTTPS":true,"Link":"http://docs.kitsu.apiary.io/","Section":"Anime"},{"API":"Studio Ghibli","Description":"Resources from Studio Ghibli films","Auth":null,"HTTPS":true,"Link":"https://ghibliapi.herokuapp.com","Section":"Anime"},{"API":"AlienVault Open Threat Exchange (OTX)","Description":"IP/domain/URL reputation","Auth":"apiKey","HTTPS":true,"Link":"https://otx.alienvault.com/api/","Section":"Anti-Malware"},{"API":"Certly","Description":"Certly Link/Domain Flagging","Auth":"apiKey","HTTPS":true,"Link":"https://guard.certly.io/","Section":"Anti-Malware"},{"API":"Google Safe Browsing","Description":"Google Link/Domain Flagging","Auth":"apiKey","HTTPS":true,"Link":"https://developers.google.com/safe-browsing/","Section":"Anti-Malware"},{"API":"Metacert","Description":"Metacert Link Flagging","Auth":"apiKey","HTTPS":true,"Link":"https://metacert.com/","Section":"Anti-Malware"},{"API":"VirusTotal","Description":"VirusTotal File/URL Analysis","Auth":"apiKey","HTTPS":true,"Link":"https://www.virustotal.com/en/documentation/public-api/","Section":"Anti-Malware"},{"API":"Web Of Trust (WOT)","Description":"Website reputation","Auth":"apiKey","HTTPS":true,"Link":"https://www.mywot.com/wiki/API","Section":"Anti-Malware"},{"API":"Behance","Description":"Design","Auth":"apiKey","HTTPS":true,"Link":"https://www.behance.net/dev","Section":"Art & Design"},{"API":"Dribbble","Description":"Design","Auth":"OAuth","HTTPS":false,"Link":"http://developer.dribbble.com/v1/","Section":"Art & Design"},{"API":"Harvard Art Museums","Description":"Art","Auth":"apiKey","HTTPS":false,"Link":"https://github.com/harvardartmuseums/api-docs","Section":"Art & Design"},{"API":"Icons8","Description":"Icons","Auth":"OAuth","HTTPS":true,"Link":"http://docs.icons8.apiary.io/#reference/0/meta","Section":"Art & Design"},{"API":"Noun Project","Description":"Icons","Auth":"OAuth","HTTPS":false,"Link":"http://api.thenounproject.com/index.html","Section":"Art & Design"},{"API":"Rijksmuseum","Description":"Art","Auth":"apiKey","HTTPS":true,"Link":"https://www.rijksmuseum.nl/en/api","Section":"Art & Design"},{"API":"British National Bibliography","Description":"Books","Auth":null,"HTTPS":false,"Link":"http://bnb.data.bl.uk/","Section":"Books"},{"API":"Goodreads","Description":"Books","Auth":null,"HTTPS":true,"Link":"https://www.goodreads.com/api","Section":"Books"},{"API":"Google Books","Description":"Books","Auth":"OAuth","HTTPS":true,"Link":"https://developers.google.com/books/","Section":"Books"},{"API":"mailgun","Description":"Email Service","Auth":"apiKey","HTTPS":true,"Link":"https://www.mailgun.com/","Section":"Business"},{"API":"markerapi","Description":"Trademark Search","Auth":null,"HTTPS":false,"Link":"http://www.markerapi.com/","Section":"Business"},{"API":"Church Calendar","Description":"Catholic liturgical calendar","Auth":null,"HTTPS":false,"Link":"http://calapi.inadiutorium.cz/","Section":"Calendar"},{"API":"Holidays","Description":"Historical data regarding holidays","Auth":"apiKey","HTTPS":true,"Link":"https://holidayapi.com/","Section":"Calendar"},{"API":"LectServe","Description":"Protestant liturgical calendar","Auth":null,"HTTPS":false,"Link":"http://www.lectserve.com","Section":"Calendar"},{"API":"Non-Working Days","Description":"Database of ICS files for non working days","Auth":null,"HTTPS":true,"Link":"https://github.com/gadael/icsdb","Section":"Calendar"},{"API":"Box","Description":"File Sharing and Storage","Auth":"OAuth","HTTPS":true,"Link":"https://developer.box.com/","Section":"Cloud Storage & File Sharing"},{"API":"Dropbox","Description":"File Sharing and Storage","Auth":"OAuth","HTTPS":true,"Link":"https://www.dropbox.com/developers","Section":"Cloud Storage & File Sharing"},{"API":"Google Drive","Description":"File Sharing and Storage","Auth":"OAuth","HTTPS":true,"Link":"https://developers.google.com/drive/","Section":"Cloud Storage & File Sharing"},{"API":"OneDrive","Description":"File Sharing and Storage","Auth":"OAuth","HTTPS":true,"Link":"https://dev.onedrive.com/","Section":"Cloud Storage & File Sharing"},{"API":"Currencylayer","Description":"Exchange rates and currency conversion","Auth":"apiKey","HTTPS":true,"Link":"https://currencylayer.com/documentation","Section":"Currency Exchange"},{"API":"Fixer.io","Description":"Exchange rates and currency conversion","Auth":null,"HTTPS":true,"Link":"http://fixer.io","Section":"Currency Exchange"},{"API":"18F","Description":"US Federal Government /Developer Program","Auth":null,"HTTPS":false,"Link":"http://18f.github.io/API-All-the-X/","Section":"Data Access"},{"API":"Abbreviation","Description":"Get abbreviations and meanings","Auth":"X-Mashape-Key","HTTPS":true,"Link":"https://market.mashape.com/daxeel/abbreviations","Section":"Data Access"},{"API":"CARTO","Description":"Location Information Prediction","Auth":"apiKey","HTTPS":true,"Link":"https://carto.com/","Section":"Data Access"},{"API":"Callook.info","Description":"United States ham radio callsigns","Auth":null,"HTTPS":true,"Link":"https://callook.info","Section":"Data Access"},{"API":"Celebinfo","Description":"Celebrity information","Auth":"X-Mashape-Key","HTTPS":true,"Link":"https://market.mashape.com/daxeel/celebinfo/","Section":"Data Access"},{"API":"Colorado Data Engine","Description":"Formatted and geolocated Colorado public data","Auth":null,"HTTPS":true,"Link":"http://codataengine.org/","Section":"Data Access"},{"API":"Colorado Information Marketplace","Description":"Colorado State Government Open Data","Auth":null,"HTTPS":true,"Link":"https://data.colorado.gov/","Section":"Data Access"},{"API":"Datakick","Description":"The open product database","Auth":"apiKey","HTTPS":true,"Link":"https://www.datakick.org/api","Section":"Data Access"},{"API":"Data USA","Description":"US Public Data","Auth":null,"HTTPS":true,"Link":"https://datausa.io/about/api/","Section":"Data Access"},{"API":"Dronestream","Description":"Tracks United States drone strikes","Auth":null,"HTTPS":true,"Link":"https://dronestre.am/","Section":"Data Access"},{"API":"fonoApi","Description":"Mobile Device Description","Auth":null,"HTTPS":true,"Link":"https://fonoapi.freshpixl.com/","Section":"Data Access"},{"API":"Open Government, Australia","Description":"Australian Government Open Data","Auth":null,"HTTPS":true,"Link":"https://www.data.gov.au/","Section":"Data Access"},{"API":"Open Government, USA","Description":"United States Government Open Data","Auth":null,"HTTPS":true,"Link":"https://www.data.gov/","Section":"Data Access"},{"API":"Open Government, Canada","Description":"Canadian Government Open Data","Auth":null,"HTTPS":false,"Link":"http://open.canada.ca/en","Section":"Data Access"},{"API":"Open Government Data, India","Description":"Indian Government Open Data","Auth":"apiKey","HTTPS":true,"Link":"https://data.gov.in/","Section":"Data Access"},{"API":"Open Government, New Zealand","Description":"New Zealand Government Open Data","Auth":null,"HTTPS":true,"Link":"https://www.data.govt.nz/","Section":"Data Access"},{"API":"Outpan","Description":"A Database of Everything","Auth":"apiKey","HTTPS":true,"Link":"https://outpan.mixnode.com/developers","Section":"Data Access"},{"API":"Pearson","Description":"Dictionary Data","Auth":"apiKey","HTTPS":false,"Link":"http://developer.pearson.com/apis/dictionaries","Section":"Data Access"},{"API":"Prague Opendata","Description":"Prague City Open Data","Auth":null,"HTTPS":false,"Link":"http://opendata.praha.eu/en","Section":"Data Access"},{"API":"Quandl","Description":"Stock Market Data","Auth":null,"HTTPS":true,"Link":"https://www.quandl.com/","Section":"Data Access"},{"API":"Represent by Open North","Description":"Find Canadian Government Representatives","Auth":null,"HTTPS":true,"Link":"https://represent.opennorth.ca/","Section":"Data Access"},{"API":"Scoop.it","Description":"Content Curation Service","Auth":"apiKey","HTTPS":false,"Link":"http://www.scoop.it/dev","Section":"Data Access"},{"API":"Teleport","Description":"Quality of Life Data","Auth":null,"HTTPS":true,"Link":"https://developers.teleport.org/","Section":"Data Access"},{"API":"UPC database","Description":"More than 15 million barcode numbers from all around the world","Auth":"apiKey","HTTPS":true,"Link":"https://upcdatabase.org/api","Section":"Data Access"},{"API":"Wikipedia","Description":"Mediawiki Encyclopedia","Auth":null,"HTTPS":true,"Link":"https://www.mediawiki.org/wiki/API:Main_page","Section":"Data Access"},{"API":"Wordnik","Description":"Dictionary Data","Auth":null,"HTTPS":false,"Link":"http://developer.wordnik.com","Section":"Data Access"},{"API":"Yelp","Description":"Find Local Business","Auth":"OAuth","HTTPS":true,"Link":"https://www.yelp.com/developers/documentation/v3","Section":"Data Access"},{"API":"languagelayer","Description":"Language detection","Auth":null,"HTTPS":true,"Link":"https://languagelayer.com","Section":"Data Validation"},{"API":"Lob.com","Description":"US Address Verification","Auth":"apiKey","HTTPS":true,"Link":"https://lob.com/","Section":"Data Validation"},{"API":"mailboxlayer","Description":"Email address validation","Auth":null,"HTTPS":true,"Link":"https://mailboxlayer.com","Section":"Data Validation"},{"API":"numverify","Description":"Phone number validation","Auth":null,"HTTPS":true,"Link":"https://numverify.com","Section":"Data Validation"},{"API":"vatlayer","Description":"VAT number validation","Auth":null,"HTTPS":true,"Link":"https://vatlayer.com","Section":"Data Validation"},{"API":"Adorable Avatars","Description":"Generate random cartoon avatars","Auth":null,"HTTPS":true,"Link":"http://avatars.adorable.io","Section":"Development"},{"API":"APIs.guru","Description":"Wikipedia for Web APIs, OpenAPI/Swagger specs for public APIs","Auth":null,"HTTPS":true,"Link":"https://apis.guru/api-doc/","Section":"Development"},{"API":"BetterMeta","Description":"Return a site's meta tags in JSON format","Auth":"X-Mashape-Key","HTTPS":true,"Link":"http://bettermeta.io","Section":"Development"},{"API":"Changelogs.md","Description":"Structured changelog metadata from open source projects","Auth":null,"HTTPS":true,"Link":"https://changelogs.md","Section":"Development"},{"API":"CDNJS","Description":"Library info on CDNJS","Auth":null,"HTTPS":true,"Link":"https://api.cdnjs.com/libraries/jquery","Section":"Development"},{"API":"Faceplusplus","Description":"A tool to detect face","Auth":"OAuth","HTTPS":true,"Link":"https://www.faceplusplus.com/","Section":"Development"},{"API":"Genderize.io","Description":"Determines a gender from a first name","Auth":null,"HTTPS":true,"Link":"https://genderize.io","Section":"Development"},{"API":"Github - User Data","Description":"Pull public information for a user's github","Auth":null,"HTTPS":true,"Link":"https://api.github.com/users/hackeryou","Section":"Development"},{"API":"Gitter","Description":"Chat for GitHub","Auth":"OAuth","HTTPS":true,"Link":"https://github.com/gitterHQ/docs","Section":"Development"},{"API":"HackerRank","Description":"Compile source code and run against a set of provided test cases","Auth":"apiKey","HTTPS":true,"Link":"https://www.hackerrank.com/api/docs","Section":"Development"},{"API":"Hipster Ipsum","Description":"Generates Hipster Ipsum text","Auth":null,"HTTPS":false,"Link":"http://hipsterjesus.com/","Section":"Development"},{"API":"IPify","Description":"A simple IP Address API","Auth":null,"HTTPS":true,"Link":"https://www.ipify.org/","Section":"Development"},{"API":"JSON 2 JSONP","Description":"Convert JSON to JSONP (on-the-fly) for easy cross-domain data requests using client-side JavaScript","Auth":null,"HTTPS":true,"Link":"https://json2jsonp.com/","Section":"Development"},{"API":"JSONbin.io","Description":"Free JSON storage service Ideal for small scale Web apps, Websites and Mobile apps","Auth":null,"HTTPS":true,"Link":"https://jsonbin.io","Section":"Development"},{"API":"JSONPlaceholder","Description":"Fake data for testing and prototyping","Auth":null,"HTTPS":false,"Link":"http://jsonplaceholder.typicode.com/","Section":"Development"},{"API":"Judge0 API","Description":"Compile and run source code","Auth":null,"HTTPS":true,"Link":"https://api.judge0.com/","Section":"Development"},{"API":"Kairos","Description":"Face Recognition and Emotion Analysis","Auth":"apiKey","HTTPS":true,"Link":"https://www.kairos.com/features","Section":"Development"},{"API":"Let's Validate","Description":"Uncovers the technologies used on websites and URL to thumbnail","Auth":null,"HTTPS":true,"Link":"https://github.com/letsvalidate/api","Section":"Development"},{"API":"LiveEdu","Description":"Live Coding Streaming","Auth":"OAuth","HTTPS":true,"Link":"https://www.liveedu.tv/developer/applications/","Section":"Development"},{"API":"Lorem Text","Description":"Generates Lorem Ipsum text","Auth":"X-Mashape-Key","HTTPS":true,"Link":"https://market.mashape.com/montanaflynn/lorem-text-generator","Section":"Development"},{"API":"Loripsum","Description":"The \"lorem ipsum\" generator that doesn't suck","Auth":null,"HTTPS":false,"Link":"http://loripsum.net/","Section":"Development"},{"API":"Myjson","Description":"A simple JSON store for your web or mobile app","Auth":null,"HTTPS":false,"Link":"http://myjson.com/api","Section":"Development"},{"API":"Plino","Description":"Spam filtering system","Auth":null,"HTTPS":true,"Link":"https://plino.herokuapp.com/","Section":"Development"},{"API":"Public APIs","Description":"A collective list of free JSON APIs for use in web development","Auth":null,"HTTPS":true,"Link":"https://github.com/toddmotto/public-apis/tree/master/json","Section":"Development"},{"API":"Random Word","Description":"Generate random word","Auth":null,"HTTPS":false,"Link":"http://www.setgetgo.com/randomword/","Section":"Development"},{"API":"RandomUser","Description":"Generates random user data","Auth":null,"HTTPS":true,"Link":"https://randomuser.me","Section":"Development"},{"API":"ReqRes","Description":"A hosted REST-API ready to respond to your AJAX requests","Auth":null,"HTTPS":true,"Link":"https://reqres.in/ ","Section":"Development"},{"API":"RoboHash","Description":"Generate random robot/alien avatars","Auth":null,"HTTPS":true,"Link":"https://robohash.org/","Section":"Development"},{"API":"StackExchange","Description":"Q&A forum for developers","Auth":"OAuth","HTTPS":true,"Link":"https://api.stackexchange.com/","Section":"Development"},{"API":"Stormpath","Description":"User Authentication","Auth":"apiKey","HTTPS":true,"Link":"https://stormpath.com/","Section":"Development"},{"API":"UI Names","Description":"Generate random fake names","Auth":null,"HTTPS":true,"Link":"https://github.com/thm/uinames","Section":"Development"},{"API":"Verse","Description":"Check what's the latest version of your favorite open-source project","Auth":null,"HTTPS":true,"Link":"https://verse.pawelad.xyz/","Section":"Development"},{"API":"File.io","Description":"File Sharing","Auth":null,"HTTPS":true,"Link":"https://www.file.io","Section":"Documents & Productivity"},{"API":"pdflayer API","Description":"HTML/URL to PDF","Auth":null,"HTTPS":true,"Link":"https://pdflayer.com","Section":"Documents & Productivity"},{"API":"Pocket","Description":"Bookmarking service","Auth":"OAuth","HTTPS":true,"Link":"https://getpocket.com/developer/","Section":"Documents & Productivity"},{"API":"PrexView","Description":"Data from XML or JSON to PDF, HTML or Image","Auth":"apiKey","HTTPS":true,"Link":"https://prexview.com","Section":"Documents & Productivity"},{"API":"Todoist","Description":"Todo Lists","Auth":"OAuth","HTTPS":true,"Link":"https://developer.todoist.com","Section":"Documents & Productivity"},{"API":"Wunderlist","Description":"Todo Lists","Auth":"OAuth","HTTPS":true,"Link":"https://developer.wunderlist.com/documentation","Section":"Documents & Productivity"},{"API":"AirVisual","Description":"Air quality and weather data","Auth":"apiKey","HTTPS":true,"Link":"https://airvisual.com/api","Section":"Environment"},{"API":"OpenAQ","Description":"Open air quality data","Auth":"apiKey","HTTPS":true,"Link":"https://docs.openaq.org/","Section":"Environment"},{"API":"PM2.5.in","Description":"Air quality of China","Auth":"apiKey","HTTPS":false,"Link":"http://www.pm25.in/api_doc","Section":"Environment"},{"API":"Barchart OnDemand","Description":"Stock, Futures, and Forex Market Data","Auth":"apiKey","HTTPS":true,"Link":"https://www.barchartondemand.com/free","Section":"Finance"},{"API":"CoinDesk","Description":"Bitcoin Price Index","Auth":null,"HTTPS":false,"Link":"http://www.coindesk.com/api/","Section":"Finance"},{"API":"Consumer Financial Protection Bureau","Description":"Financial services consumer complains data","Auth":"apiKey","HTTPS":true,"Link":"https://data.consumerfinance.gov/resource/jhzv-w97w.json","Section":"Finance"},{"API":"IEX","Description":"Stocks and Market Data","Auth":null,"HTTPS":true,"Link":"https://iextrading.com/developer/","Section":"Finance"},{"API":"Razorpay IFSC","Description":"Indian Financial Systems Code (Bank Branch Codes)","Auth":null,"HTTPS":true,"Link":"https://ifsc.razorpay.com/","Section":"Finance"},{"API":"BigOven","Description":"Recipe Search","Auth":"X-Mashape-Key","HTTPS":false,"Link":"http://api2.bigoven.com/","Section":"Food & Drink"},{"API":"BreweryDB","Description":"Beer","Auth":"apiKey","HTTPS":false,"Link":"http://www.brewerydb.com/developers","Section":"Food & Drink"},{"API":"Edamam","Description":"Recipe Search","Auth":"apiKey","HTTPS":true,"Link":"https://developer.edamam.com/","Section":"Food & Drink"},{"API":"Food2Fork","Description":"Recipe Search","Auth":"apiKey","HTTPS":false,"Link":"http://food2fork.com/about/api","Section":"Food & Drink"},{"API":"LCBO","Description":"Alcohol","Auth":"apiKey","HTTPS":true,"Link":"https://lcboapi.com/","Section":"Food & Drink"},{"API":"PunkAPI","Description":"Brewdog Beer Recipes","Auth":null,"HTTPS":true,"Link":"https://punkapi.com/","Section":"Food & Drink"},{"API":"Recipe Puppy","Description":"Food","Auth":null,"HTTPS":false,"Link":"http://www.recipepuppy.com/about/api/","Section":"Food & Drink"},{"API":"TacoFancy","Description":"Community-driven taco database","Auth":null,"HTTPS":false,"Link":"https://github.com/evz/tacofancy-api","Section":"Food & Drink"},{"API":"TheCocktailDB","Description":"Cocktail Recipes","Auth":null,"HTTPS":false,"Link":"http://www.thecocktaildb.com/","Section":"Food & Drink"},{"API":"The Report of the Week","Description":"Food & Drink Reviews","Auth":null,"HTTPS":true,"Link":"https://github.com/andyklimczak/TheReportOfTheWeek-API","Section":"Food & Drink"},{"API":"What's on the menu?","Description":"NYPL human-transcribed historical menu collection","Auth":"apiKey","HTTPS":false,"Link":"nypl.github.io/menus-api/","Section":"Food & Drink"},{"API":"Yummly","Description":"Find food recipes","Auth":null,"HTTPS":true,"Link":"https://developer.yummly.com/","Section":"Food & Drink"},{"API":"Zomato","Description":"Discover restaurants","Auth":"apiKey","HTTPS":true,"Link":"https://developers.zomato.com/api","Section":"Food & Drink"},{"API":"Whitepages Pro","Description":"Global identity verification with phone, address, email, and IP","Auth":"apiKey","HTTPS":true,"Link":"https://pro.whitepages.com/developer/documentation/identity-check-api/","Section":"Fraud Prevention"},{"API":"Whitepages Pro","Description":"Phone reputation to detect spammy phones","Auth":"apiKey","HTTPS":true,"Link":"https://pro.whitepages.com/developer/documentation/phone-reputation-api/","Section":"Fraud Prevention"},{"API":"Whitepages Pro","Description":"Get an owner’s name, address, demographics based on the phone number","Auth":"apiKey","HTTPS":true,"Link":"https://pro.whitepages.com/developer/documentation/reverse-phone-api/","Section":"Fraud Prevention"},{"API":"Whitepages Pro","Description":"Phone number validation, line_type, carrier append","Auth":"apiKey","HTTPS":true,"Link":"https://pro.whitepages.com/developer/documentation/phone-intelligence-api/","Section":"Fraud Prevention"},{"API":"Whitepages Pro","Description":"Get normalized physical address, residents, address type, and validity","Auth":"apiKey","HTTPS":true,"Link":"https://pro.whitepages.com/developer/documentation/reverse-address-api/","Section":"Fraud Prevention"},{"API":"Battle.net","Description":"Blizzard Entertainment","Auth":null,"HTTPS":true,"Link":"https://dev.battle.net/","Section":"Games & Comics"},{"API":"Battlefield 4","Description":"Battlefield 4 Information","Auth":null,"HTTPS":true,"Link":"https://bf4stats.com/api","Section":"Games & Comics"},{"API":"Chuck Norris Database","Description":"Jokes","Auth":null,"HTTPS":false,"Link":"http://www.icndb.com/api/","Section":"Games & Comics"},{"API":"Clash of Clans","Description":"Clash of Clans Game Information","Auth":null,"HTTPS":true,"Link":"https://developer.clashofclans.com","Section":"Games & Comics"},{"API":"Clash Royale","Description":"Clash Royale Game Information","Auth":null,"HTTPS":true,"Link":"https://github.com/martincarrera/clash-royale-api","Section":"Games & Comics"},{"API":"Comic Vine","Description":"Comics","Auth":null,"HTTPS":true,"Link":"https://comicvine.gamespot.com/api/documentation","Section":"Games & Comics"},{"API":"Deck of Cards","Description":"Deck of Cards","Auth":null,"HTTPS":false,"Link":"http://deckofcardsapi.com/","Section":"Games & Comics"},{"API":"Destiny The Game","Description":"Bungie Platform API","Auth":"apiKey","HTTPS":true,"Link":"https://www.bungie.net/en/Clan/Post/39966/85087279/0/0","Section":"Games & Comics"},{"API":"Eve Online","Description":"Third-Party Developer Documentation","Auth":"OAuth","HTTPS":true,"Link":"https://eveonline-third-party-documentation.readthedocs.io/en/latest/","Section":"Games & Comics"},{"API":"Giant Bomb","Description":"Video Games","Auth":null,"HTTPS":true,"Link":"https://www.giantbomb.com/api/documentation","Section":"Games & Comics"},{"API":"Guild Wars 2","Description":"Guild Wars 2 Game Information","Auth":"apiKey","HTTPS":true,"Link":"https://wiki.guildwars2.com/wiki/API:Main","Section":"Games & Comics"},{"API":"Jservice","Description":"Jeopardy Question Database","Auth":null,"HTTPS":false,"Link":"http://jservice.io","Section":"Games & Comics"},{"API":"Magic The Gathering","Description":"Magic The Gathering Game Information","Auth":null,"HTTPS":false,"Link":"http://magicthegathering.io/","Section":"Games & Comics"},{"API":"Marvel","Description":"Marvel Comics","Auth":"apiKey","HTTPS":false,"Link":"http://developer.marvel.com","Section":"Games & Comics"},{"API":"Minecraft","Description":"Minecraft server info & user info)","Auth":null,"HTTPS":true,"Link":"https://mcapi.ca/","Section":"Games & Comics"},{"API":"Open Trivia","Description":"Trivia Questions","Auth":null,"HTTPS":true,"Link":"https://opentdb.com/api_config.php","Section":"Games & Comics"},{"API":"PandaScore","Description":"E-sports games and results","Auth":"apiKey","HTTPS":true,"Link":"https://api.pandascore.co","Section":"Games & Comics"},{"API":"Pokéapi","Description":"Pokémon Information","Auth":null,"HTTPS":false,"Link":"http://pokeapi.co","Section":"Games & Comics"},{"API":"Qriusity","Description":"Quiz/Trivia Questions","Auth":null,"HTTPS":true,"Link":"https://qriusity.com/","Section":"Games & Comics"},{"API":"Riot Games","Description":"League of Legends Game Information","Auth":"apiKey","HTTPS":true,"Link":"https://developer.riotgames.com/","Section":"Games & Comics"},{"API":"Steam","Description":"Steam Client Interaction","Auth":"OAuth","HTTPS":true,"Link":"https://developer.valvesoftware.com/wiki/Steam_Web_API","Section":"Games & Comics"},{"API":"adresse.data.gouv.fr","Description":"Address database of France, geocoding, and reverse","Auth":null,"HTTPS":true,"Link":"https://adresse.data.gouv.fr","Section":"Geocoding"},{"API":"Bing Maps","Description":"Create/customize digital maps based on Bing Maps data","Auth":"apiKey","HTTPS":true,"Link":"https://www.microsoft.com/maps/","Section":"Geocoding"},{"API":"Geocode.xyz","Description":"Provides worldwide forward/reverse geocoding, batch geocoding and geoparsing","Auth":null,"HTTPS":true,"Link":"https://geocode.xyz/","Section":"Geocoding"},{"API":"GeoNames","Description":"Place names and other geographical data","Auth":null,"HTTPS":false,"Link":"http://www.geonames.org/export/web-services.html","Section":"Geocoding"},{"API":"GéoApi","Description":"French geographical data","Auth":null,"HTTPS":true,"Link":"https://api.gouv.fr/api/geoapi.html","Section":"Geocoding"},{"API":"Google Maps","Description":"Create/customize digital maps based on Google Maps data","Auth":"apiKey","HTTPS":true,"Link":"https://developers.google.com/maps/","Section":"Geocoding"},{"API":"IP 2 Country","Description":"Map an IP to a country","Auth":null,"HTTPS":true,"Link":"https://ip2country.info","Section":"Geocoding"},{"API":"IP Address Details","Description":"Find geolocation with ip address","Auth":null,"HTTPS":true,"Link":"https://ipinfo.io/","Section":"Geocoding"},{"API":"IP Location","Description":"Find IP address location information","Auth":null,"HTTPS":true,"Link":"https://ipapi.co/","Section":"Geocoding"},{"API":"IP Vigilante","Description":"Free IP Geolocation API","Auth":null,"HTTPS":true,"Link":"https://www.ipvigilante.com/","Section":"Geocoding"},{"API":"Mapbox","Description":"Create/customize beautiful digital maps","Auth":"apiKey","HTTPS":true,"Link":"https://www.mapbox.com/developers/","Section":"Geocoding"},{"API":"Mapzen Search","Description":"Open Source & Open Data Global Geocoding Service","Auth":"apiKey","HTTPS":true,"Link":"https://mapzen.com/products/search/","Section":"Geocoding"},{"API":"Mexico","Description":"Mexico RESTful zip codes API","Auth":null,"HTTPS":true,"Link":"https://github.com/IcaliaLabs/sepomex","Section":"Geocoding"},{"API":"One Map 2.0, Singapore","Description":"Singapore Land Authority REST API services for Singapore addresses","Auth":"apiKey","HTTPS":true,"Link":"https://docs.onemap.sg/","Section":"Geocoding"},{"API":"OnWater","Description":"Determine if a lat/lon is on water or land","Auth":null,"HTTPS":true,"Link":"https://onwater.io/","Section":"Geocoding"},{"API":"OpenCage","Description":"Forward and reverse geocoding using open data","Auth":null,"HTTPS":true,"Link":"https://geocoder.opencagedata.com","Section":"Geocoding"},{"API":"OpenStreetMap","Description":"Navigation, geolocation and geographical data","Auth":"OAuth","HTTPS":false,"Link":"http://wiki.openstreetmap.org/wiki/API","Section":"Geocoding"},{"API":"PostcodeData.nl","Description":"Provide geolocation data based on postcode for Dutch addresses","Auth":null,"HTTPS":false,"Link":"http://api.postcodedata.nl/v1/postcode/?postcode=1211EP&streetnumber=60&ref=domeinnaam.nl&type=json","Section":"Geocoding"},{"API":"Postcodes.io","Description":"Postcode lookup & Geolocation for the UK","Auth":null,"HTTPS":true,"Link":"https://postcodes.io","Section":"Geocoding"},{"API":"REST Countries","Description":"Get information about countries via a RESTful API","Auth":null,"HTTPS":true,"Link":"https://restcountries.eu","Section":"Geocoding"},{"API":"Utah AGRC","Description":"Utah Web API for geocoding Utah addresses","Auth":"apiKey","HTTPS":true,"Link":"https://api.mapserv.utah.gov","Section":"Geocoding"},{"API":"ViaCep","Description":"Brazil RESTful zip codes API","Auth":null,"HTTPS":true,"Link":"https://viacep.com.br","Section":"Geocoding"},{"API":"Zippopotam","Description":"Get information about place such as country, city, state, etc","Auth":null,"HTTPS":false,"Link":"http://www.zippopotam.us","Section":"Geocoding"},{"API":"Diabetes","Description":"Logging and retrieving diabetes information","Auth":null,"HTTPS":false,"Link":"http://predictbgl.com/api/","Section":"Health"},{"API":"Flutrack","Description":"Influenza-like symptoms with geotracking","Auth":null,"HTTPS":false,"Link":"http://www.flutrack.org/","Section":"Health"},{"API":"Makeup","Description":"Makeup Information","Auth":null,"HTTPS":false,"Link":"http://makeup-api.herokuapp.com/","Section":"Health"},{"API":"Medicare","Description":"Access to the data from the CMS - medicaregov","Auth":null,"HTTPS":true,"Link":"https://data.medicare.gov/developers","Section":"Health"},{"API":"Nutritionix","Description":"Worlds largest verified nutrition database","Auth":"apiKey","HTTPS":true,"Link":"https://developer.nutritionix.com/","Section":"Health"},{"API":"openFDA","Description":"Public FDA data about drugs, devices, and foods","Auth":null,"HTTPS":true,"Link":"https://open.fda.gov/api/","Section":"Health"},{"API":"USDA Nutrients","Description":"National Nutrient Database for Standard Reference","Auth":null,"HTTPS":true,"Link":"https://ndb.nal.usda.gov/ndb/doc/index","Section":"Health"},{"API":"API.AI","Description":"Natural Language Processing","Auth":"apiKey","HTTPS":true,"Link":"https://api.ai/","Section":"Machine Learning"},{"API":"Clarifai","Description":"Computer Vision","Auth":"OAuth","HTTPS":true,"Link":"https://developer.clarifai.com/","Section":"Machine Learning"},{"API":"Cleverbot","Description":"Web chat bot","Auth":"apiKey","HTTPS":true,"Link":"https://www.cleverbot.com/api/","Section":"Machine Learning"},{"API":"Keen IO","Description":"Data Analytics","Auth":"apiKey","HTTPS":true,"Link":"https://keen.io/","Section":"Machine Learning"},{"API":"Unplugg","Description":"Forecasting API for timeseries data","Auth":"apiKey","HTTPS":true,"Link":"https://unplu.gg/test_api.html","Section":"Machine Learning"},{"API":"Wit.ai","Description":"Natural Language Processing","Auth":"OAuth","HTTPS":true,"Link":"https://wit.ai/","Section":"Machine Learning"},{"API":"Newton","Description":"Symbolic and Arithmetic Math Calculator","Auth":null,"HTTPS":true,"Link":"https://newton.now.sh/","Section":"Math"},{"API":"Numbers API","Description":"Facts about numbers","Auth":null,"HTTPS":false,"Link":"http://numbersapi.com","Section":"Math"},{"API":"Bandsintown","Description":"Music Events","Auth":null,"HTTPS":true,"Link":"https://app.swaggerhub.com/apis/Bandsintown/PublicAPI/3.0.0","Section":"Music"},{"API":"Deezer","Description":"Music","Auth":"OAuth","HTTPS":false,"Link":"http://developers.deezer.com/login?redirect=/api","Section":"Music"},{"API":"Discogs","Description":"Music","Auth":"OAuth","HTTPS":true,"Link":"https://www.discogs.com/developers/","Section":"Music"},{"API":"Genius","Description":"Crowdsourced lyrics and music knowledge","Auth":"OAuth","HTTPS":true,"Link":"https://docs.genius.com/","Section":"Music"},{"API":"Jamendo","Description":"Music","Auth":"OAuth","HTTPS":true,"Link":"https://developer.jamendo.com/v3.0","Section":"Music"},{"API":"iTunes Search","Description":"Software products","Auth":null,"HTTPS":true,"Link":"https://affiliate.itunes.apple.com/resources/documentation/itunes-store-web-service-search-api/","Section":"Music"},{"API":"LastFm","Description":"Music","Auth":"apiKey","HTTPS":false,"Link":"http://www.last.fm/api","Section":"Music"},{"API":"Mixcloud","Description":"Music","Auth":null,"HTTPS":true,"Link":"https://www.mixcloud.com/developers/","Section":"Music"},{"API":"MusicBrainz","Description":"Music","Auth":null,"HTTPS":true,"Link":"https://musicbrainz.org/doc/Development/XML_Web_Service/Version_2","Section":"Music"},{"API":"Musikki","Description":"Music","Auth":"apiKey","HTTPS":true,"Link":"https://music-api.musikki.com/reference","Section":"Music"},{"API":"Musixmatch","Description":"Music","Auth":"apiKey","HTTPS":true,"Link":"https://developer.musixmatch.com/","Section":"Music"},{"API":"Songkick","Description":"Music Events","Auth":"OAuth","HTTPS":true,"Link":"https://www.songkick.com/developer/","Section":"Music"},{"API":"Songsterr","Description":"Provides guitar, bass and drums tabs and chords","Auth":null,"HTTPS":true,"Link":"https://www.songsterr.com/a/wa/api/","Section":"Music"},{"API":"Soundcloud","Description":"Music","Auth":null,"HTTPS":true,"Link":"https://developers.soundcloud.com/","Section":"Music"},{"API":"Spotify","Description":"Music","Auth":"OAuth","HTTPS":true,"Link":"https://developer.spotify.com/web-api/","Section":"Music"},{"API":"Vagalume","Description":"Crowdsourced lyrics and music knowledge","Auth":"apiKey","HTTPS":true,"Link":"https://api.vagalume.com.br/docs/","Section":"Music"},{"API":"Chronicling America","Description":"Provides access to millions of pages of historic US newspapers from the Library of Congress","Auth":null,"HTTPS":false,"Link":"http://chroniclingamerica.loc.gov/about/api/","Section":"News"},{"API":"New York Times","Description":"Provides news","Auth":"apiKey","HTTPS":true,"Link":"https://developer.nytimes.com/","Section":"News"},{"API":"News API","Description":"Headlines currently published on a range of news sources and blogs","Auth":"apiKey","HTTPS":true,"Link":"https://newsapi.org/","Section":"News"},{"API":"The Guardian","Description":"Access all the content the Guardian creates, categorised by tags and section","Auth":"apiKey","HTTPS":true,"Link":"http://open-platform.theguardian.com/","Section":"News"},{"API":"Countly","Description":"Countly web analytics","Auth":null,"HTTPS":false,"Link":"http://resources.count.ly/docs","Section":"Open Source projects"},{"API":"Drupal.org","Description":"Drupalorg","Auth":null,"HTTPS":true,"Link":"https://www.drupal.org/drupalorg/docs/api","Section":"Open Source projects"},{"API":"Libraries.io","Description":"Open source software libraries","Auth":"apiKey","HTTPS":true,"Link":"https://libraries.io/api","Section":"Open Source projects"},{"API":"chucknorris.io","Description":"JSON API for hand curated Chuck Norris jokes","Auth":null,"HTTPS":true,"Link":"https://api.chucknorris.io","Section":"Personality"},{"API":"Forismatic","Description":"Inspirational Quotes","Auth":null,"HTTPS":false,"Link":"http://forismatic.com/en/api/","Section":"Personality"},{"API":"icanhazdadjoke","Description":"The largest selection of dad jokes on the internet","Auth":null,"HTTPS":true,"Link":"https://icanhazdadjoke.com/api","Section":"Personality"},{"API":"Medium","Description":"Community of readers and writers offering unique perspectives on ideas","Auth":"OAuth","HTTPS":true,"Link":"https://github.com/Medium/medium-api-docs","Section":"Personality"},{"API":"Quotes on Design","Description":"Inspirational Quotes","Auth":null,"HTTPS":true,"Link":"https://quotesondesign.com/api-v4-0/","Section":"Personality"},{"API":"Traitify","Description":"Assess, collect, and analyze Personality","Auth":null,"HTTPS":true,"Link":"https://app.traitify.com/developer","Section":"Personality"},{"API":"tronalddump.io","Description":"Api & web archive for the things Donald Trump has said","Auth":null,"HTTPS":true,"Link":"https://www.tronalddump.io","Section":"Personality"},{"API":"500px","Description":"Photography Community","Auth":"OAuth","HTTPS":true,"Link":"https://github.com/500px/api-documentation","Section":"Photography"},{"API":"Flickr","Description":"Flickr Services","Auth":"OAuth","HTTPS":true,"Link":"https://www.flickr.com/services/api/","Section":"Photography"},{"API":"Gfycat","Description":"Jiffier GIFs","Auth":"OAuth","HTTPS":true,"Link":"https://developers.gfycat.com/api/","Section":"Photography"},{"API":"Giphy","Description":"Get all your gifs","Auth":null,"HTTPS":true,"Link":"https://github.com/Giphy/GiphyAPI","Section":"Photography"},{"API":"Imgur","Description":"Images","Auth":"OAuth","HTTPS":true,"Link":"https://api.imgur.com/#overview","Section":"Photography"},{"API":"ScreenShotLayer","Description":"URL 2 Image","Auth":null,"HTTPS":true,"Link":"https://screenshotlayer.com","Section":"Photography"},{"API":"Unsplash","Description":"Photography","Auth":"OAuth","HTTPS":true,"Link":"https://unsplash.com/developers","Section":"Photography"},{"API":"PlaceKitten","Description":"Resizable kitten placeholder images","Auth":null,"HTTPS":true,"Link":"https://placekitten.com/","Section":"Photography"},{"API":"arcsecond.io","Description":"Multiple astronomy data sources","Auth":null,"HTTPS":true,"Link":"https://api.arcsecond.io/","Section":"Science"},{"API":"CORE","Description":"Access the world's Open Access research papers","Auth":"apiKey","HTTPS":true,"Link":"https://core.ac.uk/services#api","Section":"Science"},{"API":"Fedger.io","Description":"Query machine intelligence data","Auth":null,"HTTPS":true,"Link":"https://dev.fedger.io/docs/","Section":"Science"},{"API":"inspirehep.net","Description":"High Energy Physics info system","Auth":null,"HTTPS":true,"Link":"https://inspirehep.net/info/hep/api?ln=en","Section":"Science"},{"API":"Launch Library","Description":"Upcoming Space Launches","Auth":null,"HTTPS":true,"Link":"https://launchlibrary.net/1.2/docs/api.html","Section":"Science"},{"API":"Minor Planet Center","Description":"Asterankcom Information","Auth":null,"HTTPS":false,"Link":"http://www.asterank.com/mpc","Section":"Science"},{"API":"NASA","Description":"NASA data, including imagery","Auth":null,"HTTPS":true,"Link":"https://api.nasa.gov","Section":"Science"},{"API":"Open Notify","Description":"ISS astronauts, current location, etc","Auth":null,"HTTPS":false,"Link":"http://open-notify.org/Open-Notify-API/","Section":"Science"},{"API":"Sunrise and Sunset","Description":"Sunset and sunrise times for a given latitude and longitude","Auth":null,"HTTPS":true,"Link":"https://sunrise-sunset.org/api","Section":"Science"},{"API":"USGS Earthquake Hazards Program","Description":"Earthquakes data real-time","Auth":null,"HTTPS":true,"Link":"https://earthquake.usgs.gov/fdsnws/event/1/","Section":"Science"},{"API":"USGS Water Services","Description":"Water quality and level info for rivers and lakes","Auth":null,"HTTPS":true,"Link":"https://waterservices.usgs.gov/","Section":"Science"},{"API":"World Bank","Description":"World Data","Auth":null,"HTTPS":false,"Link":"https://datahelpdesk.worldbank.org/knowledgebase/topics/125589","Section":"Science"},{"API":"AXFR Database","Description":"AXFR public database","Auth":null,"HTTPS":false,"Link":"http://api.axfrcheck.com","Section":"Security"},{"API":"UK Police","Description":"UK Police data","Auth":null,"HTTPS":true,"Link":"https://data.police.uk/docs/","Section":"Security"},{"API":"eBay","Description":"Sell and Buy on eBay","Auth":"OAuth","HTTPS":true,"Link":"https://go.developer.ebay.com/","Section":"Shopping"},{"API":"Cisco Spark","Description":"Team Collaboration Software","Auth":"OAuth","HTTPS":true,"Link":"https://developer.ciscospark.com","Section":"Social"},{"API":"Discord","Description":"Make bots for Discord, integrate Discord onto an external platform","Auth":"OAuth","HTTPS":true,"Link":"https://discordapp.com/developers/docs/intro","Section":"Social"},{"API":"DonReach Social Count","Description":"Get the social share count of a URL from every major social network","Auth":null,"HTTPS":true,"Link":"https://donreach.com/social-share-count/","Section":"Social"},{"API":"Facebook","Description":"Facebook Login, Share on FB, Social Plugins, Analytics and more","Auth":"OAuth","HTTPS":true,"Link":"https://developers.facebook.com/","Section":"Social"},{"API":"Foursquare","Description":"Interact with Foursquare users and places (geolocation-based checkins, photos, tips, events, etc)","Auth":"OAuth","HTTPS":true,"Link":"https://developer.foursquare.com/","Section":"Social"},{"API":"Fuck Off as a Service","Description":"Asks someone to fuck off","Auth":null,"HTTPS":true,"Link":"https://www.foaas.com","Section":"Social"},{"API":"Full Contact","Description":"Get Social Media profiles and contact Information","Auth":"OAuth","HTTPS":true,"Link":"https://www.fullcontact.com/developer/docs/","Section":"Social"},{"API":"HackerNews","Description":"Social news for CS and entrepreneurship","Auth":null,"HTTPS":true,"Link":"https://github.com/HackerNews/API","Section":"Social"},{"API":"Instagram","Description":"Instagram Login, Share on Instagram, Social Plugins and more","Auth":"OAuth","HTTPS":true,"Link":"https://www.instagram.com/developer/","Section":"Social"},{"API":"LinkedIn","Description":"The foundation of all digital integrations with LinkedIn","Auth":"OAuth","HTTPS":true,"Link":"https://developer.linkedin.com/docs/rest-api","Section":"Social"},{"API":"Meetup.com","Description":"Data about Meetups from Meetupcom","Auth":"apiKey","HTTPS":true,"Link":"https://www.meetup.com/meetup_api/","Section":"Social"},{"API":"Telegram MTProto","Description":"Read and write Telegram data","Auth":"OAuth","HTTPS":true,"Link":"https://core.telegram.org/api#getting-started","Section":"Social"},{"API":"Telegram bot","Description":"Simplified HTTP version of the MTProto API for bots","Auth":"OAuth","HTTPS":true,"Link":"https://core.telegram.org/bots/api","Section":"Social"},{"API":"Pinterest","Description":"The world's catalog of ideas","Auth":"OAuth","HTTPS":true,"Link":"https://developers.pinterest.com/","Section":"Social"},{"API":"PWRTelegram bot","Description":"Boosted version of the Telegram bot API","Auth":"OAuth","HTTPS":true,"Link":"https://pwrtelegram.xyz","Section":"Social"},{"API":"Reddit","Description":"Homepage of the internet","Auth":"OAuth","HTTPS":true,"Link":"https://www.reddit.com/dev/api","Section":"Social"},{"API":"Slack","Description":"Team Instant Messaging","Auth":"OAuth","HTTPS":true,"Link":"https://api.slack.com/","Section":"Social"},{"API":"Tumblr","Description":"Read and write Tumblr Data","Auth":"OAuth","HTTPS":true,"Link":"https://www.tumblr.com/docs/en/api/v2","Section":"Social"},{"API":"Twitch","Description":"Game Streaming API","Auth":"OAuth","HTTPS":true,"Link":"https://github.com/justintv/Twitch-API","Section":"Social"},{"API":"Twitter","Description":"Read and write Twitter data","Auth":"OAuth","HTTPS":true,"Link":"https://dev.twitter.com/rest/public","Section":"Social"},{"API":"vk","Description":"Read and write vk data","Auth":"OAuth","HTTPS":true,"Link":"https://vk.com/dev/sites","Section":"Social"},{"API":"Cartola FC","Description":"The Cartola FC API serves to check the partial points of your team","Auth":null,"HTTPS":true,"Link":"https://github.com/wgenial/cartrolandofc","Section":"Sports & Fitness"},{"API":"City Bikes","Description":"City Bikes around the world","Auth":null,"HTTPS":false,"Link":"http://api.citybik.es/v2/","Section":"Sports & Fitness"},{"API":"Ergast F1","Description":"F1 data from the beginning of the world championships in 1950","Auth":null,"HTTPS":false,"Link":"http://ergast.com/mrd/","Section":"Sports & Fitness"},{"API":"Fitbit","Description":"Fitbit Information","Auth":"OAuth","HTTPS":true,"Link":"https://dev.fitbit.com/","Section":"Sports & Fitness"},{"API":"Football-Data.org","Description":"Football Data","Auth":null,"HTTPS":false,"Link":"http://api.football-data.org/index","Section":"Sports & Fitness"},{"API":"JCDecaux Bike","Description":"JCDecaux's self-service bicycles","Auth":"apiKey","HTTPS":true,"Link":"https://developer.jcdecaux.com/","Section":"Sports & Fitness"},{"API":"Cricket Live Scores","Description":"Live cricket scores","Auth":"X-Mashape-Key","HTTPS":true,"Link":"https://market.mashape.com/dev132/cricket-live-scores","Section":"Sports & Fitness"},{"API":"NFL Arrests","Description":"NFL Arrest Data","Auth":null,"HTTPS":false,"Link":"http://nflarrest.com/api/","Section":"Sports & Fitness"},{"API":"Pro Motocross","Description":"The RESTful AMA Pro Motocross lap times for every racer on the start gate","Auth":null,"HTTPS":false,"Link":"http://promotocrossapi.com","Section":"Sports & Fitness"},{"API":"Strava","Description":"Connect with athletes, activities and more","Auth":"OAuth","HTTPS":true,"Link":"https://strava.github.io/api/","Section":"Sports & Fitness"},{"API":"UFC Data","Description":"Ultimate Fighting Championship information for events and fighters","Auth":null,"HTTPS":false,"Link":"http://ufc-data-api.ufc.com/","Section":"Sports & Fitness"},{"API":"Wger","Description":"Workout manager data as exercises, muscles or equipment","Auth":"apiKey","HTTPS":true,"Link":"https://wger.de/en/software/api","Section":"Sports & Fitness"},{"API":"Postmon","Description":"An API to query Brazilian ZIP codes and orders easily, quickly and free","Auth":null,"HTTPS":false,"Link":"http://postmon.com.br","Section":"Tracking"},{"API":"Sweden","Description":"Provides information about parcels in transport","Auth":"apiKey","HTTPS":false,"Link":"https://developer.postnord.com/docs2","Section":"Tracking"},{"API":"ADS-B Exchange","Description":"Access real-time and historical data of any and all airbone aircraft","Auth":null,"HTTPS":true,"Link":"https://www.adsbexchange.com/data/","Section":"Transportation"},{"API":"Amadeus Travel Innovation Sandbox","Description":"Travel Search - Limited usage","Auth":"apiKey","HTTPS":true,"Link":"https://sandbox.amadeus.com/","Section":"Transportation"},{"API":"Bay Area Rapid Transit","Description":"Stations and predicted arrivals for BART","Auth":"apiKey","HTTPS":false,"Link":"http://api.bart.gov","Section":"Transportation"},{"API":"Community Transit","Description":"Transitland API","Auth":null,"HTTPS":true,"Link":"https://github.com/transitland/transitland-datastore/blob/master/README.md#api-endpoints","Section":"Transportation"},{"API":"Goibibo","Description":"API for travel search","Auth":"apiKey","HTTPS":true,"Link":"https://developer.goibibo.com/docs","Section":"Transportation"},{"API":"Indian Railways","Description":"Indian Railways Information","Auth":"apiKey","HTTPS":false,"Link":"http://api.erail.in/","Section":"Transportation"},{"API":"Izi","Description":"Audio guide for travellers","Auth":"apiKey","HTTPS":true,"Link":"http://api-docs.izi.travel/","Section":"Transportation"},{"API":"Navitia","Description":"The open API for building cool stuff with transport data","Auth":"apiKey","HTTPS":true,"Link":"https://api.navitia.io/","Section":"Transportation"},{"API":"The Nomad List","Description":"A list of the best places to live/work remotely","Auth":null,"HTTPS":true,"Link":"https://nomadlist.com/faq","Section":"Transportation"},{"API":"Schiphol Airport","Description":"Schiphol","Auth":"apiKey","HTTPS":true,"Link":"https://developer.schiphol.nl/","Section":"Transportation"},{"API":"TransitLand","Description":"Transit Aggregation","Auth":null,"HTTPS":true,"Link":"https://transit.land/documentation/datastore/api-endpoints.html","Section":"Transportation"},{"API":"Transport for Atlanta, US","Description":"Marta","Auth":null,"HTTPS":false,"Link":"http://www.itsmarta.com/app-developer-resources.aspx","Section":"Transportation"},{"API":"Transport for Auckland, New Zealand","Description":"Auckland Transport","Auth":null,"HTTPS":true,"Link":"https://api.at.govt.nz/","Section":"Transportation"},{"API":"Transport for Belgium","Description":"Belgian transport API","Auth":null,"HTTPS":true,"Link":"https://hello.irail.be/api/","Section":"Transportation"},{"API":"Transport for Berlin, Germany","Description":"Third-party VBB API","Auth":null,"HTTPS":true,"Link":"https://github.com/derhuerst/vbb-rest/blob/master/docs/index.md","Section":"Transportation"},{"API":"Transport for Boston, US","Description":"MBTA API","Auth":null,"HTTPS":false,"Link":"http://realtime.mbta.com/Portal/Home/Documents","Section":"Transportation"},{"API":"Transport for Budapest, Hungary","Description":"Budapest public transport API","Auth":null,"HTTPS":true,"Link":"https://apiary.io/","Section":"Transportation"},{"API":"Transport for Chicago, US","Description":"CTA","Auth":null,"HTTPS":false,"Link":"http://www.transitchicago.com/developers/","Section":"Transportation"},{"API":"Transport for Czech Republic","Description":"Czech transport API","Auth":null,"HTTPS":true,"Link":"https://www.chaps.cz/eng/products/idos-internet","Section":"Transportation"},{"API":"Transport for Denver, US","Description":"RTD","Auth":null,"HTTPS":false,"Link":"http://www.rtd-denver.com/gtfs-developer-guide.shtml","Section":"Transportation"},{"API":"Transport for Finland","Description":"Finnish transport API","Auth":null,"HTTPS":true,"Link":"https://digitransit.fi/en/developers/ ","Section":"Transportation"},{"API":"Transport for Germany","Description":"Deutsche Bahn (DB) API","Auth":"apiKey","HTTPS":false,"Link":"http://data.deutschebahn.com/dataset/api-fahrplan","Section":"Transportation"},{"API":"Transport for India","Description":"India Public Transport API","Auth":"apiKey","HTTPS":true,"Link":"https://data.gov.in/sector/transport","Section":"Transportation"},{"API":"Transport for London, England","Description":"TfL API","Auth":null,"HTTPS":true,"Link":"https://api.tfl.gov.uk","Section":"Transportation"},{"API":"Transport for Madrid, Spain","Description":"Madrid BUS transport API","Auth":"apiKey","HTTPS":false,"Link":"http://opendata.emtmadrid.es/Servicios-web/BUS","Section":"Transportation"},{"API":"Transport for Minneapolis, US","Description":"NexTrip API","Auth":"OAuth","HTTPS":false,"Link":"http://svc.metrotransit.org/","Section":"Transportation"},{"API":"Transport for The Netherlands","Description":"NS, only trains","Auth":"apiKey","HTTPS":false,"Link":"http://www.ns.nl/reisinformatie/ns-api","Section":"Transportation"},{"API":"Transport for The Netherlands","Description":"OVAPI, country-wide public transport","Auth":null,"HTTPS":true,"Link":"https://github.com/skywave/KV78Turbo-OVAPI/wiki","Section":"Transportation"},{"API":"Transport for New York City, US","Description":"MTA","Auth":"apiKey","HTTPS":false,"Link":"http://datamine.mta.info/","Section":"Transportation"},{"API":"Transport for Norway","Description":"Norwegian transport API","Auth":null,"HTTPS":false,"Link":"http://reisapi.ruter.no/help","Section":"Transportation"},{"API":"Transport for Ottawa, Canada","Description":"OC Transpo next bus arrival API","Auth":null,"HTTPS":false,"Link":"http://www.octranspo.com/index.php/developers","Section":"Transportation"},{"API":"Transport for Paris, France","Description":"RATP Open Data API","Auth":null,"HTTPS":false,"Link":"http://data.ratp.fr/api/v1/console/datasets/1.0/search/","Section":"Transportation"},{"API":"Transport for Paris, France","Description":"Live schedules made simple","Auth":null,"HTTPS":false,"Link":"http://restratpws.azurewebsites.net/swagger/","Section":"Transportation"},{"API":"Transport for Philadelphia, US","Description":"SEPTA APIs","Auth":null,"HTTPS":false,"Link":"http://www3.septa.org/hackathon/","Section":"Transportation"},{"API":"Transport for Rio de Janeiro, Brazil","Description":"Prefeitura do Rio (City Hall)","Auth":null,"HTTPS":false,"Link":"http://data.rio/group/transporte-e-mobilidade","Section":"Transportation"},{"API":"Transport for São Paulo, Brazil","Description":"SPTrans","Auth":"OAuth","HTTPS":false,"Link":"http://www.sptrans.com.br/desenvolvedores/APIOlhoVivo/Documentacao.aspx","Section":"Transportation"},{"API":"Transport for Sweden","Description":"Public Transport consumer","Auth":"OAuth","HTTPS":true,"Link":"https://www.trafiklab.se/api","Section":"Transportation"},{"API":"Transport for Switzerland","Description":"Swiss public transport API","Auth":null,"HTTPS":true,"Link":"https://transport.opendata.ch/","Section":"Transportation"},{"API":"Transport for Switzerland","Description":"Official Swiss Public Transport Open Data","Auth":"apiKey","HTTPS":true,"Link":"https://opentransportdata.swiss/en/","Section":"Transportation"},{"API":"Transport for Tokyo, Japan","Description":"Tokyo Metro","Auth":"apiKey","HTTPS":true,"Link":"https://developer.tokyometroapp.jp/info","Section":"Transportation"},{"API":"Transport for Toronto, Canada","Description":"TTC","Auth":null,"HTTPS":true,"Link":"https://myttc.ca/developers","Section":"Transportation"},{"API":"Transport for Vancouver, Canada","Description":"TransLink","Auth":"OAuth","HTTPS":true,"Link":"https://developer.translink.ca/","Section":"Transportation"},{"API":"Transport for U.S. (multiple locations)","Description":"NextBus API","Auth":null,"HTTPS":false,"Link":"http://www.nextbus.com/xmlFeedDocs/NextBusXMLFeed.pdf","Section":"Transportation"},{"API":"Transport for Victoria, AU","Description":"PTV API","Auth":"apiKey","HTTPS":true,"Link":"https://www.ptv.vic.gov.au/about-ptv/ptv-data-and-reports/digital-products/ptv-timetable-api/","Section":"Transportation"},{"API":"Transport for Washington, US","Description":"Washington Metro transport API","Auth":"OAuth","HTTPS":true,"Link":"https://developer.wmata.com/","Section":"Transportation"},{"API":"Uber","Description":"Request Uber rides, reach riders, transport things, and reward drivers","Auth":"OAuth","HTTPS":true,"Link":"https://developer.uber.com/","Section":"Transportation"},{"API":"WhereIsMyTransport","Description":"Platform for public transport data in emerging cities","Auth":"OAuth","HTTPS":true,"Link":"https://developer.whereismytransport.com/","Section":"Transportation"},{"API":"Universities List","Description":"University names, countries and domains","Auth":null,"HTTPS":true,"Link":"https://github.com/Hipo/university-domains-list","Section":"University"},{"API":"Vehicles","Description":"Lot of vehicles information","Auth":"apiKey","HTTPS":false,"Link":"http://developer.edmunds.com/api-documentation/overview/","Section":"Vehicle"},{"API":"Brazilian Vehicles and Prices","Description":"Vehicles information from Fundação Instituto de Pesquisas Econômicas - Fipe","Auth":null,"HTTPS":true,"Link":"https://deividfortuna.github.io/fipe/","Section":"Vehicle"},{"API":"NHTSA Vehicles","Description":"NHTSA Product Information Catalog and Vehicle Listing","Auth":null,"HTTPS":true,"Link":"https://vpic.nhtsa.dot.gov/api/","Section":"Vehicle"},{"API":"An API of Ice And Fire","Description":"Game Of Thrones API","Auth":null,"HTTPS":true,"Link":"https://anapioficeandfire.com/","Section":"Video"},{"API":"Dailymotion","Description":"Dailymotion Developer API","Auth":"OAuth","HTTPS":true,"Link":"https://developer.dailymotion.com/","Section":"Video"},{"API":"Netflix Roulette","Description":"Netflix database","Auth":null,"HTTPS":true,"Link":"https://netflixroulette.net/api/","Section":"Video"},{"API":"Ron Swanson Quotes","Description":"Television","Auth":null,"HTTPS":true,"Link":"https://github.com/jamesseanwright/ron-swanson-quotes#ron-swanson-quotes-api","Section":"Video"},{"API":"SWAPI","Description":"Star Wars Information","Auth":null,"HTTPS":true,"Link":"https://swapi.co","Section":"Video"},{"API":"TMDb","Description":"Community-based movie data","Auth":"apiKey","HTTPS":true,"Link":"https://www.themoviedb.org/documentation/api","Section":"Video"},{"API":"TVMaze","Description":"TV Show Data","Auth":null,"HTTPS":false,"Link":"http://www.tvmaze.com/api","Section":"Video"},{"API":"Vimeo","Description":"Vimeo Developer API","Auth":"OAuth","HTTPS":true,"Link":"https://developer.vimeo.com/","Section":"Video"},{"API":"YouTube","Description":"Add YouTube functionality to your sites and apps","Auth":"OAuth","HTTPS":true,"Link":"https://developers.google.com/youtube/","Section":"Video"},{"API":"Dark Sky","Description":"Weather","Auth":"apiKey","HTTPS":true,"Link":"https://darksky.net/dev/","Section":"Weather"},{"API":"MetaWeather","Description":"Weather","Auth":null,"HTTPS":true,"Link":"https://www.metaweather.com/api/","Section":"Weather"},{"API":"OpenWeatherMap","Description":"Weather","Auth":"apiKey","HTTPS":false,"Link":"http://openweathermap.org/api","Section":"Weather"},{"API":"Weatherbit","Description":"Weather","Auth":"apiKey","HTTPS":true,"Link":"https://www.weatherbit.io/api","Section":"Weather"},{"API":"Wunderground","Description":"Weather","Auth":"apiKey","HTTPS":true,"Link":"https://www.wunderground.com/weather/api/","Section":"Weather"}]} From d24ca12c3fdafd13063fd3a7e19efdd27fcb3782 Mon Sep 17 00:00:00 2001 From: Dave Machado Date: Sat, 5 Aug 2017 21:50:14 -0400 Subject: [PATCH 19/19] Delete entries.json --- json/entries.json | 2748 --------------------------------------------- 1 file changed, 2748 deletions(-) delete mode 100644 json/entries.json diff --git a/json/entries.json b/json/entries.json deleted file mode 100644 index 60159485..00000000 --- a/json/entries.json +++ /dev/null @@ -1,2748 +0,0 @@ -{ - "entries": [ - { - "API": "Dogs", - "Auth": null, - "Description": "Based on the [Stanford Dogs Dataset](http://visionstanford.edu/aditya86/ImageNetDogs/)", - "HTTPS": true, - "Link": "https://dog.ceo/dog-api/", - "Section": "Animals" - }, - { - "API": "IUCN", - "Auth": "apiKey", - "Description": "IUCN Red List of Threatened Species", - "HTTPS": false, - "Link": "http://apiv3.iucnredlist.org/api/v3/docs", - "Section": "Animals" - }, - { - "API": "Petfinder", - "Auth": "apiKey", - "Description": "Adoption", - "HTTPS": true, - "Link": "https://www.petfinder.com/developers/api-docs/", - "Section": "Animals" - }, - { - "API": "RescueGroups", - "Auth": null, - "Description": "Adoption", - "HTTPS": true, - "Link": "https://userguide.rescuegroups.org/display/APIDG/API+Developers+Guide+Home", - "Section": "Animals" - }, - { - "API": "AniList", - "Auth": "OAuth", - "Description": "AniList Anime", - "HTTPS": false, - "Link": "http://anilist-api.readthedocs.io/en/latest/", - "Section": "Anime" - }, - { - "API": "Jikan", - "Auth": null, - "Description": "Unofficial MyAnimeList API", - "HTTPS": true, - "Link": "https://jikan.me", - "Section": "Anime" - }, - { - "API": "Kitsu", - "Auth": "OAuth", - "Description": "Anime discovery platform", - "HTTPS": true, - "Link": "http://docs.kitsu.apiary.io/", - "Section": "Anime" - }, - { - "API": "Studio Ghibli", - "Auth": null, - "Description": "Resources from Studio Ghibli films", - "HTTPS": true, - "Link": "https://ghibliapi.herokuapp.com", - "Section": "Anime" - }, - { - "API": "AlienVault Open Threat Exchange (OTX)", - "Auth": "apiKey", - "Description": "IP/domain/URL reputation", - "HTTPS": true, - "Link": "https://otx.alienvault.com/api/", - "Section": "Anti-Malware" - }, - { - "API": "Certly", - "Auth": "apiKey", - "Description": "Certly Link/Domain Flagging", - "HTTPS": true, - "Link": "https://guard.certly.io/", - "Section": "Anti-Malware" - }, - { - "API": "Google Safe Browsing", - "Auth": "apiKey", - "Description": "Google Link/Domain Flagging", - "HTTPS": true, - "Link": "https://developers.google.com/safe-browsing/", - "Section": "Anti-Malware" - }, - { - "API": "Metacert", - "Auth": "apiKey", - "Description": "Metacert Link Flagging", - "HTTPS": true, - "Link": "https://metacert.com/", - "Section": "Anti-Malware" - }, - { - "API": "VirusTotal", - "Auth": "apiKey", - "Description": "VirusTotal File/URL Analysis", - "HTTPS": true, - "Link": "https://www.virustotal.com/en/documentation/public-api/", - "Section": "Anti-Malware" - }, - { - "API": "Web Of Trust (WOT)", - "Auth": "apiKey", - "Description": "Website reputation", - "HTTPS": true, - "Link": "https://www.mywot.com/wiki/API", - "Section": "Anti-Malware" - }, - { - "API": "Behance", - "Auth": "apiKey", - "Description": "Design", - "HTTPS": true, - "Link": "https://www.behance.net/dev", - "Section": "Art & Design" - }, - { - "API": "Dribbble", - "Auth": "OAuth", - "Description": "Design", - "HTTPS": false, - "Link": "http://developer.dribbble.com/v1/", - "Section": "Art & Design" - }, - { - "API": "Harvard Art Museums", - "Auth": "apiKey", - "Description": "Art", - "HTTPS": false, - "Link": "https://github.com/harvardartmuseums/api-docs", - "Section": "Art & Design" - }, - { - "API": "Icons8", - "Auth": "OAuth", - "Description": "Icons", - "HTTPS": true, - "Link": "http://docs.icons8.apiary.io/#reference/0/meta", - "Section": "Art & Design" - }, - { - "API": "Noun Project", - "Auth": "OAuth", - "Description": "Icons", - "HTTPS": false, - "Link": "http://api.thenounproject.com/index.html", - "Section": "Art & Design" - }, - { - "API": "Rijksmuseum", - "Auth": "apiKey", - "Description": "Art", - "HTTPS": true, - "Link": "https://www.rijksmuseum.nl/en/api", - "Section": "Art & Design" - }, - { - "API": "British National Bibliography", - "Auth": null, - "Description": "Books", - "HTTPS": false, - "Link": "http://bnb.data.bl.uk/", - "Section": "Books" - }, - { - "API": "Goodreads", - "Auth": null, - "Description": "Books", - "HTTPS": true, - "Link": "https://www.goodreads.com/api", - "Section": "Books" - }, - { - "API": "Google Books", - "Auth": "OAuth", - "Description": "Books", - "HTTPS": true, - "Link": "https://developers.google.com/books/", - "Section": "Books" - }, - { - "API": "mailgun", - "Auth": "apiKey", - "Description": "Email Service", - "HTTPS": true, - "Link": "https://www.mailgun.com/", - "Section": "Business" - }, - { - "API": "markerapi", - "Auth": null, - "Description": "Trademark Search", - "HTTPS": false, - "Link": "http://www.markerapi.com/", - "Section": "Business" - }, - { - "API": "Church Calendar", - "Auth": null, - "Description": "Catholic liturgical calendar", - "HTTPS": false, - "Link": "http://calapi.inadiutorium.cz/", - "Section": "Calendar" - }, - { - "API": "Holidays", - "Auth": "apiKey", - "Description": "Historical data regarding holidays", - "HTTPS": true, - "Link": "https://holidayapi.com/", - "Section": "Calendar" - }, - { - "API": "LectServe", - "Auth": null, - "Description": "Protestant liturgical calendar", - "HTTPS": false, - "Link": "http://www.lectserve.com", - "Section": "Calendar" - }, - { - "API": "Non-Working Days", - "Auth": null, - "Description": "Database of ICS files for non working days", - "HTTPS": true, - "Link": "https://github.com/gadael/icsdb", - "Section": "Calendar" - }, - { - "API": "Box", - "Auth": "OAuth", - "Description": "File Sharing and Storage", - "HTTPS": true, - "Link": "https://developer.box.com/", - "Section": "Cloud Storage & File Sharing" - }, - { - "API": "Dropbox", - "Auth": "OAuth", - "Description": "File Sharing and Storage", - "HTTPS": true, - "Link": "https://www.dropbox.com/developers", - "Section": "Cloud Storage & File Sharing" - }, - { - "API": "Google Drive", - "Auth": "OAuth", - "Description": "File Sharing and Storage", - "HTTPS": true, - "Link": "https://developers.google.com/drive/", - "Section": "Cloud Storage & File Sharing" - }, - { - "API": "OneDrive", - "Auth": "OAuth", - "Description": "File Sharing and Storage", - "HTTPS": true, - "Link": "https://dev.onedrive.com/", - "Section": "Cloud Storage & File Sharing" - }, - { - "API": "Currencylayer", - "Auth": "apiKey", - "Description": "Exchange rates and currency conversion", - "HTTPS": true, - "Link": "https://currencylayer.com/documentation", - "Section": "Currency Exchange" - }, - { - "API": "Fixer.io", - "Auth": null, - "Description": "Exchange rates and currency conversion", - "HTTPS": true, - "Link": "http://fixer.io", - "Section": "Currency Exchange" - }, - { - "API": "18F", - "Auth": null, - "Description": "US Federal Government /Developer Program", - "HTTPS": false, - "Link": "http://18f.github.io/API-All-the-X/", - "Section": "Data Access" - }, - { - "API": "Abbreviation", - "Auth": "X-Mashape-Key", - "Description": "Get abbreviations and meanings", - "HTTPS": true, - "Link": "https://market.mashape.com/daxeel/abbreviations", - "Section": "Data Access" - }, - { - "API": "CARTO", - "Auth": "apiKey", - "Description": "Location Information Prediction", - "HTTPS": true, - "Link": "https://carto.com/", - "Section": "Data Access" - }, - { - "API": "Callook.info", - "Auth": null, - "Description": "United States ham radio callsigns", - "HTTPS": true, - "Link": "https://callook.info", - "Section": "Data Access" - }, - { - "API": "Celebinfo", - "Auth": "X-Mashape-Key", - "Description": "Celebrity information", - "HTTPS": true, - "Link": "https://market.mashape.com/daxeel/celebinfo/", - "Section": "Data Access" - }, - { - "API": "Colorado Data Engine", - "Auth": null, - "Description": "Formatted and geolocated Colorado public data", - "HTTPS": true, - "Link": "http://codataengine.org/", - "Section": "Data Access" - }, - { - "API": "Colorado Information Marketplace", - "Auth": null, - "Description": "Colorado State Government Open Data", - "HTTPS": true, - "Link": "https://data.colorado.gov/", - "Section": "Data Access" - }, - { - "API": "Datakick", - "Auth": "apiKey", - "Description": "The open product database", - "HTTPS": true, - "Link": "https://www.datakick.org/api", - "Section": "Data Access" - }, - { - "API": "Data USA", - "Auth": null, - "Description": "US Public Data", - "HTTPS": true, - "Link": "https://datausa.io/about/api/", - "Section": "Data Access" - }, - { - "API": "Dronestream", - "Auth": null, - "Description": "Tracks United States drone strikes", - "HTTPS": true, - "Link": "https://dronestre.am/", - "Section": "Data Access" - }, - { - "API": "fonoApi", - "Auth": null, - "Description": "Mobile Device Description", - "HTTPS": true, - "Link": "https://fonoapi.freshpixl.com/", - "Section": "Data Access" - }, - { - "API": "Open Government, Australia", - "Auth": null, - "Description": "Australian Government Open Data", - "HTTPS": true, - "Link": "https://www.data.gov.au/", - "Section": "Data Access" - }, - { - "API": "Open Government, USA", - "Auth": null, - "Description": "United States Government Open Data", - "HTTPS": true, - "Link": "https://www.data.gov/", - "Section": "Data Access" - }, - { - "API": "Open Government, Canada", - "Auth": null, - "Description": "Canadian Government Open Data", - "HTTPS": false, - "Link": "http://open.canada.ca/en", - "Section": "Data Access" - }, - { - "API": "Open Government Data, India", - "Auth": "apiKey", - "Description": "Indian Government Open Data", - "HTTPS": true, - "Link": "https://data.gov.in/", - "Section": "Data Access" - }, - { - "API": "Open Government, New Zealand", - "Auth": null, - "Description": "New Zealand Government Open Data", - "HTTPS": true, - "Link": "https://www.data.govt.nz/", - "Section": "Data Access" - }, - { - "API": "Outpan", - "Auth": "apiKey", - "Description": "A Database of Everything", - "HTTPS": true, - "Link": "https://outpan.mixnode.com/developers", - "Section": "Data Access" - }, - { - "API": "Pearson", - "Auth": "apiKey", - "Description": "Dictionary Data", - "HTTPS": false, - "Link": "http://developer.pearson.com/apis/dictionaries", - "Section": "Data Access" - }, - { - "API": "Prague Opendata", - "Auth": null, - "Description": "Prague City Open Data", - "HTTPS": false, - "Link": "http://opendata.praha.eu/en", - "Section": "Data Access" - }, - { - "API": "Quandl", - "Auth": null, - "Description": "Stock Market Data", - "HTTPS": true, - "Link": "https://www.quandl.com/", - "Section": "Data Access" - }, - { - "API": "Represent by Open North", - "Auth": null, - "Description": "Find Canadian Government Representatives", - "HTTPS": true, - "Link": "https://represent.opennorth.ca/", - "Section": "Data Access" - }, - { - "API": "Scoop.it", - "Auth": "apiKey", - "Description": "Content Curation Service", - "HTTPS": false, - "Link": "http://www.scoop.it/dev", - "Section": "Data Access" - }, - { - "API": "Teleport", - "Auth": null, - "Description": "Quality of Life Data", - "HTTPS": true, - "Link": "https://developers.teleport.org/", - "Section": "Data Access" - }, - { - "API": "UPC database", - "Auth": "apiKey", - "Description": "More than 15 million barcode numbers from all around the world", - "HTTPS": true, - "Link": "https://upcdatabase.org/api", - "Section": "Data Access" - }, - { - "API": "Wikipedia", - "Auth": null, - "Description": "Mediawiki Encyclopedia", - "HTTPS": true, - "Link": "https://www.mediawiki.org/wiki/API:Main_page", - "Section": "Data Access" - }, - { - "API": "Wordnik", - "Auth": null, - "Description": "Dictionary Data", - "HTTPS": false, - "Link": "http://developer.wordnik.com", - "Section": "Data Access" - }, - { - "API": "Yelp", - "Auth": "OAuth", - "Description": "Find Local Business", - "HTTPS": true, - "Link": "https://www.yelp.com/developers/documentation/v3", - "Section": "Data Access" - }, - { - "API": "languagelayer", - "Auth": null, - "Description": "Language detection", - "HTTPS": true, - "Link": "https://languagelayer.com", - "Section": "Data Validation" - }, - { - "API": "Lob.com", - "Auth": "apiKey", - "Description": "US Address Verification", - "HTTPS": true, - "Link": "https://lob.com/", - "Section": "Data Validation" - }, - { - "API": "mailboxlayer", - "Auth": null, - "Description": "Email address validation", - "HTTPS": true, - "Link": "https://mailboxlayer.com", - "Section": "Data Validation" - }, - { - "API": "numverify", - "Auth": null, - "Description": "Phone number validation", - "HTTPS": true, - "Link": "https://numverify.com", - "Section": "Data Validation" - }, - { - "API": "vatlayer", - "Auth": null, - "Description": "VAT number validation", - "HTTPS": true, - "Link": "https://vatlayer.com", - "Section": "Data Validation" - }, - { - "API": "Adorable Avatars", - "Auth": null, - "Description": "Generate random cartoon avatars", - "HTTPS": true, - "Link": "http://avatars.adorable.io", - "Section": "Development" - }, - { - "API": "APIs.guru", - "Auth": null, - "Description": "Wikipedia for Web APIs, OpenAPI/Swagger specs for public APIs", - "HTTPS": true, - "Link": "https://apis.guru/api-doc/", - "Section": "Development" - }, - { - "API": "BetterMeta", - "Auth": "X-Mashape-Key", - "Description": "Return a site's meta tags in JSON format", - "HTTPS": true, - "Link": "http://bettermeta.io", - "Section": "Development" - }, - { - "API": "Changelogs.md", - "Auth": null, - "Description": "Structured changelog metadata from open source projects", - "HTTPS": true, - "Link": "https://changelogs.md", - "Section": "Development" - }, - { - "API": "CDNJS", - "Auth": null, - "Description": "Library info on CDNJS", - "HTTPS": true, - "Link": "https://api.cdnjs.com/libraries/jquery", - "Section": "Development" - }, - { - "API": "Faceplusplus", - "Auth": "OAuth", - "Description": "A tool to detect face", - "HTTPS": true, - "Link": "https://www.faceplusplus.com/", - "Section": "Development" - }, - { - "API": "Genderize.io", - "Auth": null, - "Description": "Determines a gender from a first name", - "HTTPS": true, - "Link": "https://genderize.io", - "Section": "Development" - }, - { - "API": "Github - User Data", - "Auth": null, - "Description": "Pull public information for a user's github", - "HTTPS": true, - "Link": "https://api.github.com/users/hackeryou", - "Section": "Development" - }, - { - "API": "Gitter", - "Auth": "OAuth", - "Description": "Chat for GitHub", - "HTTPS": true, - "Link": "https://github.com/gitterHQ/docs", - "Section": "Development" - }, - { - "API": "HackerRank", - "Auth": "apiKey", - "Description": "Compile source code and run against a set of provided test cases", - "HTTPS": true, - "Link": "https://www.hackerrank.com/api/docs", - "Section": "Development" - }, - { - "API": "Hipster Ipsum", - "Auth": null, - "Description": "Generates Hipster Ipsum text", - "HTTPS": false, - "Link": "http://hipsterjesus.com/", - "Section": "Development" - }, - { - "API": "IPify", - "Auth": null, - "Description": "A simple IP Address API", - "HTTPS": true, - "Link": "https://www.ipify.org/", - "Section": "Development" - }, - { - "API": "JSON 2 JSONP", - "Auth": null, - "Description": "Convert JSON to JSONP (on-the-fly) for easy cross-domain data requests using client-side JavaScript", - "HTTPS": true, - "Link": "https://json2jsonp.com/", - "Section": "Development" - }, - { - "API": "JSONbin.io", - "Auth": null, - "Description": "Free JSON storage service Ideal for small scale Web apps, Websites and Mobile apps", - "HTTPS": true, - "Link": "https://jsonbin.io", - "Section": "Development" - }, - { - "API": "JSONPlaceholder", - "Auth": null, - "Description": "Fake data for testing and prototyping", - "HTTPS": false, - "Link": "http://jsonplaceholder.typicode.com/", - "Section": "Development" - }, - { - "API": "Judge0 API", - "Auth": null, - "Description": "Compile and run source code", - "HTTPS": true, - "Link": "https://api.judge0.com/", - "Section": "Development" - }, - { - "API": "Kairos", - "Auth": "apiKey", - "Description": "Face Recognition and Emotion Analysis", - "HTTPS": true, - "Link": "https://www.kairos.com/features", - "Section": "Development" - }, - { - "API": "Let's Validate", - "Auth": null, - "Description": "Uncovers the technologies used on websites and URL to thumbnail", - "HTTPS": true, - "Link": "https://github.com/letsvalidate/api", - "Section": "Development" - }, - { - "API": "LiveEdu", - "Auth": "OAuth", - "Description": "Live Coding Streaming", - "HTTPS": true, - "Link": "https://www.liveedu.tv/developer/applications/", - "Section": "Development" - }, - { - "API": "Lorem Text", - "Auth": "X-Mashape-Key", - "Description": "Generates Lorem Ipsum text", - "HTTPS": true, - "Link": "https://market.mashape.com/montanaflynn/lorem-text-generator", - "Section": "Development" - }, - { - "API": "Loripsum", - "Auth": null, - "Description": "The \"lorem ipsum\" generator that doesn't suck", - "HTTPS": false, - "Link": "http://loripsum.net/", - "Section": "Development" - }, - { - "API": "Myjson", - "Auth": null, - "Description": "A simple JSON store for your web or mobile app", - "HTTPS": false, - "Link": "http://myjson.com/api", - "Section": "Development" - }, - { - "API": "Plino", - "Auth": null, - "Description": "Spam filtering system", - "HTTPS": true, - "Link": "https://plino.herokuapp.com/", - "Section": "Development" - }, - { - "API": "Public APIs", - "Auth": null, - "Description": "A collective list of free JSON APIs for use in web development", - "HTTPS": true, - "Link": "https://github.com/toddmotto/public-apis/tree/master/json", - "Section": "Development" - }, - { - "API": "Random Word", - "Auth": null, - "Description": "Generate random word", - "HTTPS": false, - "Link": "http://www.setgetgo.com/randomword/", - "Section": "Development" - }, - { - "API": "RandomUser", - "Auth": null, - "Description": "Generates random user data", - "HTTPS": true, - "Link": "https://randomuser.me", - "Section": "Development" - }, - { - "API": "ReqRes", - "Auth": null, - "Description": "A hosted REST-API ready to respond to your AJAX requests", - "HTTPS": true, - "Link": "https://reqres.in/ ", - "Section": "Development" - }, - { - "API": "RoboHash", - "Auth": null, - "Description": "Generate random robot/alien avatars", - "HTTPS": true, - "Link": "https://robohash.org/", - "Section": "Development" - }, - { - "API": "StackExchange", - "Auth": "OAuth", - "Description": "Q&A forum for developers", - "HTTPS": true, - "Link": "https://api.stackexchange.com/", - "Section": "Development" - }, - { - "API": "Stormpath", - "Auth": "apiKey", - "Description": "User Authentication", - "HTTPS": true, - "Link": "https://stormpath.com/", - "Section": "Development" - }, - { - "API": "UI Names", - "Auth": null, - "Description": "Generate random fake names", - "HTTPS": true, - "Link": "https://github.com/thm/uinames", - "Section": "Development" - }, - { - "API": "Verse", - "Auth": null, - "Description": "Check what's the latest version of your favorite open-source project", - "HTTPS": true, - "Link": "https://verse.pawelad.xyz/", - "Section": "Development" - }, - { - "API": "File.io", - "Auth": null, - "Description": "File Sharing", - "HTTPS": true, - "Link": "https://www.file.io", - "Section": "Documents & Productivity" - }, - { - "API": "pdflayer API", - "Auth": null, - "Description": "HTML/URL to PDF", - "HTTPS": true, - "Link": "https://pdflayer.com", - "Section": "Documents & Productivity" - }, - { - "API": "Pocket", - "Auth": "OAuth", - "Description": "Bookmarking service", - "HTTPS": true, - "Link": "https://getpocket.com/developer/", - "Section": "Documents & Productivity" - }, - { - "API": "PrexView", - "Auth": "apiKey", - "Description": "Data from XML or JSON to PDF, HTML or Image", - "HTTPS": true, - "Link": "https://prexview.com", - "Section": "Documents & Productivity" - }, - { - "API": "Todoist", - "Auth": "OAuth", - "Description": "Todo Lists", - "HTTPS": true, - "Link": "https://developer.todoist.com", - "Section": "Documents & Productivity" - }, - { - "API": "Wunderlist", - "Auth": "OAuth", - "Description": "Todo Lists", - "HTTPS": true, - "Link": "https://developer.wunderlist.com/documentation", - "Section": "Documents & Productivity" - }, - { - "API": "AirVisual", - "Auth": "apiKey", - "Description": "Air quality and weather data", - "HTTPS": true, - "Link": "https://airvisual.com/api", - "Section": "Environment" - }, - { - "API": "OpenAQ", - "Auth": "apiKey", - "Description": "Open air quality data", - "HTTPS": true, - "Link": "https://docs.openaq.org/", - "Section": "Environment" - }, - { - "API": "PM2.5.in", - "Auth": "apiKey", - "Description": "Air quality of China", - "HTTPS": false, - "Link": "http://www.pm25.in/api_doc", - "Section": "Environment" - }, - { - "API": "Barchart OnDemand", - "Auth": "apiKey", - "Description": "Stock, Futures, and Forex Market Data", - "HTTPS": true, - "Link": "https://www.barchartondemand.com/free", - "Section": "Finance" - }, - { - "API": "CoinDesk", - "Auth": null, - "Description": "Bitcoin Price Index", - "HTTPS": false, - "Link": "http://www.coindesk.com/api/", - "Section": "Finance" - }, - { - "API": "Consumer Financial Protection Bureau", - "Auth": "apiKey", - "Description": "Financial services consumer complains data", - "HTTPS": true, - "Link": "https://data.consumerfinance.gov/resource/jhzv-w97w.json", - "Section": "Finance" - }, - { - "API": "IEX", - "Auth": null, - "Description": "Stocks and Market Data", - "HTTPS": true, - "Link": "https://iextrading.com/developer/", - "Section": "Finance" - }, - { - "API": "Razorpay IFSC", - "Auth": null, - "Description": "Indian Financial Systems Code (Bank Branch Codes)", - "HTTPS": true, - "Link": "https://ifsc.razorpay.com/", - "Section": "Finance" - }, - { - "API": "BigOven", - "Auth": "X-Mashape-Key", - "Description": "Recipe Search", - "HTTPS": false, - "Link": "http://api2.bigoven.com/", - "Section": "Food & Drink" - }, - { - "API": "BreweryDB", - "Auth": "apiKey", - "Description": "Beer", - "HTTPS": false, - "Link": "http://www.brewerydb.com/developers", - "Section": "Food & Drink" - }, - { - "API": "Edamam", - "Auth": "apiKey", - "Description": "Recipe Search", - "HTTPS": true, - "Link": "https://developer.edamam.com/", - "Section": "Food & Drink" - }, - { - "API": "Food2Fork", - "Auth": "apiKey", - "Description": "Recipe Search", - "HTTPS": false, - "Link": "http://food2fork.com/about/api", - "Section": "Food & Drink" - }, - { - "API": "LCBO", - "Auth": "apiKey", - "Description": "Alcohol", - "HTTPS": true, - "Link": "https://lcboapi.com/", - "Section": "Food & Drink" - }, - { - "API": "PunkAPI", - "Auth": null, - "Description": "Brewdog Beer Recipes", - "HTTPS": true, - "Link": "https://punkapi.com/", - "Section": "Food & Drink" - }, - { - "API": "Recipe Puppy", - "Auth": null, - "Description": "Food", - "HTTPS": false, - "Link": "http://www.recipepuppy.com/about/api/", - "Section": "Food & Drink" - }, - { - "API": "TacoFancy", - "Auth": null, - "Description": "Community-driven taco database", - "HTTPS": false, - "Link": "https://github.com/evz/tacofancy-api", - "Section": "Food & Drink" - }, - { - "API": "TheCocktailDB", - "Auth": null, - "Description": "Cocktail Recipes", - "HTTPS": false, - "Link": "http://www.thecocktaildb.com/", - "Section": "Food & Drink" - }, - { - "API": "The Report of the Week", - "Auth": null, - "Description": "Food & Drink Reviews", - "HTTPS": true, - "Link": "https://github.com/andyklimczak/TheReportOfTheWeek-API", - "Section": "Food & Drink" - }, - { - "API": "What's on the menu?", - "Auth": "apiKey", - "Description": "NYPL human-transcribed historical menu collection", - "HTTPS": false, - "Link": "nypl.github.io/menus-api/", - "Section": "Food & Drink" - }, - { - "API": "Yummly", - "Auth": null, - "Description": "Find food recipes", - "HTTPS": true, - "Link": "https://developer.yummly.com/", - "Section": "Food & Drink" - }, - { - "API": "Zomato", - "Auth": "apiKey", - "Description": "Discover restaurants", - "HTTPS": true, - "Link": "https://developers.zomato.com/api", - "Section": "Food & Drink" - }, - { - "API": "Whitepages Pro", - "Auth": "apiKey", - "Description": "Global identity verification with phone, address, email, and IP", - "HTTPS": true, - "Link": "https://pro.whitepages.com/developer/documentation/identity-check-api/", - "Section": "Fraud Prevention" - }, - { - "API": "Whitepages Pro", - "Auth": "apiKey", - "Description": "Phone reputation to detect spammy phones", - "HTTPS": true, - "Link": "https://pro.whitepages.com/developer/documentation/phone-reputation-api/", - "Section": "Fraud Prevention" - }, - { - "API": "Whitepages Pro", - "Auth": "apiKey", - "Description": "Get an owner\u2019s name, address, demographics based on the phone number", - "HTTPS": true, - "Link": "https://pro.whitepages.com/developer/documentation/reverse-phone-api/", - "Section": "Fraud Prevention" - }, - { - "API": "Whitepages Pro", - "Auth": "apiKey", - "Description": "Phone number validation, line_type, carrier append", - "HTTPS": true, - "Link": "https://pro.whitepages.com/developer/documentation/phone-intelligence-api/", - "Section": "Fraud Prevention" - }, - { - "API": "Whitepages Pro", - "Auth": "apiKey", - "Description": "Get normalized physical address, residents, address type, and validity", - "HTTPS": true, - "Link": "https://pro.whitepages.com/developer/documentation/reverse-address-api/", - "Section": "Fraud Prevention" - }, - { - "API": "Battle.net", - "Auth": null, - "Description": "Blizzard Entertainment", - "HTTPS": true, - "Link": "https://dev.battle.net/", - "Section": "Games & Comics" - }, - { - "API": "Battlefield 4", - "Auth": null, - "Description": "Battlefield 4 Information", - "HTTPS": true, - "Link": "https://bf4stats.com/api", - "Section": "Games & Comics" - }, - { - "API": "Chuck Norris Database", - "Auth": null, - "Description": "Jokes", - "HTTPS": false, - "Link": "http://www.icndb.com/api/", - "Section": "Games & Comics" - }, - { - "API": "Clash of Clans", - "Auth": null, - "Description": "Clash of Clans Game Information", - "HTTPS": true, - "Link": "https://developer.clashofclans.com", - "Section": "Games & Comics" - }, - { - "API": "Clash Royale", - "Auth": null, - "Description": "Clash Royale Game Information", - "HTTPS": true, - "Link": "https://github.com/martincarrera/clash-royale-api", - "Section": "Games & Comics" - }, - { - "API": "Comic Vine", - "Auth": null, - "Description": "Comics", - "HTTPS": true, - "Link": "https://comicvine.gamespot.com/api/documentation", - "Section": "Games & Comics" - }, - { - "API": "Deck of Cards", - "Auth": null, - "Description": "Deck of Cards", - "HTTPS": false, - "Link": "http://deckofcardsapi.com/", - "Section": "Games & Comics" - }, - { - "API": "Destiny The Game", - "Auth": "apiKey", - "Description": "Bungie Platform API", - "HTTPS": true, - "Link": "https://www.bungie.net/en/Clan/Post/39966/85087279/0/0", - "Section": "Games & Comics" - }, - { - "API": "Eve Online", - "Auth": "OAuth", - "Description": "Third-Party Developer Documentation", - "HTTPS": true, - "Link": "https://eveonline-third-party-documentation.readthedocs.io/en/latest/", - "Section": "Games & Comics" - }, - { - "API": "Giant Bomb", - "Auth": null, - "Description": "Video Games", - "HTTPS": true, - "Link": "https://www.giantbomb.com/api/documentation", - "Section": "Games & Comics" - }, - { - "API": "Guild Wars 2", - "Auth": "apiKey", - "Description": "Guild Wars 2 Game Information", - "HTTPS": true, - "Link": "https://wiki.guildwars2.com/wiki/API:Main", - "Section": "Games & Comics" - }, - { - "API": "Jservice", - "Auth": null, - "Description": "Jeopardy Question Database", - "HTTPS": false, - "Link": "http://jservice.io", - "Section": "Games & Comics" - }, - { - "API": "Magic The Gathering", - "Auth": null, - "Description": "Magic The Gathering Game Information", - "HTTPS": false, - "Link": "http://magicthegathering.io/", - "Section": "Games & Comics" - }, - { - "API": "Marvel", - "Auth": "apiKey", - "Description": "Marvel Comics", - "HTTPS": false, - "Link": "http://developer.marvel.com", - "Section": "Games & Comics" - }, - { - "API": "Minecraft", - "Auth": null, - "Description": "Minecraft server info & user info)", - "HTTPS": true, - "Link": "https://mcapi.ca/", - "Section": "Games & Comics" - }, - { - "API": "Open Trivia", - "Auth": null, - "Description": "Trivia Questions", - "HTTPS": true, - "Link": "https://opentdb.com/api_config.php", - "Section": "Games & Comics" - }, - { - "API": "PandaScore", - "Auth": "apiKey", - "Description": "E-sports games and results", - "HTTPS": true, - "Link": "https://api.pandascore.co", - "Section": "Games & Comics" - }, - { - "API": "Pok\u00e9api", - "Auth": null, - "Description": "Pok\u00e9mon Information", - "HTTPS": false, - "Link": "http://pokeapi.co", - "Section": "Games & Comics" - }, - { - "API": "Qriusity", - "Auth": null, - "Description": "Quiz/Trivia Questions", - "HTTPS": true, - "Link": "https://qriusity.com/", - "Section": "Games & Comics" - }, - { - "API": "Riot Games", - "Auth": "apiKey", - "Description": "League of Legends Game Information", - "HTTPS": true, - "Link": "https://developer.riotgames.com/", - "Section": "Games & Comics" - }, - { - "API": "Steam", - "Auth": "OAuth", - "Description": "Steam Client Interaction", - "HTTPS": true, - "Link": "https://developer.valvesoftware.com/wiki/Steam_Web_API", - "Section": "Games & Comics" - }, - { - "API": "adresse.data.gouv.fr", - "Auth": null, - "Description": "Address database of France, geocoding, and reverse", - "HTTPS": true, - "Link": "https://adresse.data.gouv.fr", - "Section": "Geocoding" - }, - { - "API": "Bing Maps", - "Auth": "apiKey", - "Description": "Create/customize digital maps based on Bing Maps data", - "HTTPS": true, - "Link": "https://www.microsoft.com/maps/", - "Section": "Geocoding" - }, - { - "API": "Geocode.xyz", - "Auth": null, - "Description": "Provides worldwide forward/reverse geocoding, batch geocoding and geoparsing", - "HTTPS": true, - "Link": "https://geocode.xyz/", - "Section": "Geocoding" - }, - { - "API": "GeoNames", - "Auth": null, - "Description": "Place names and other geographical data", - "HTTPS": false, - "Link": "http://www.geonames.org/export/web-services.html", - "Section": "Geocoding" - }, - { - "API": "G\u00e9oApi", - "Auth": null, - "Description": "French geographical data", - "HTTPS": true, - "Link": "https://api.gouv.fr/api/geoapi.html", - "Section": "Geocoding" - }, - { - "API": "Google Maps", - "Auth": "apiKey", - "Description": "Create/customize digital maps based on Google Maps data", - "HTTPS": true, - "Link": "https://developers.google.com/maps/", - "Section": "Geocoding" - }, - { - "API": "IP 2 Country", - "Auth": null, - "Description": "Map an IP to a country", - "HTTPS": true, - "Link": "https://ip2country.info", - "Section": "Geocoding" - }, - { - "API": "IP Address Details", - "Auth": null, - "Description": "Find geolocation with ip address", - "HTTPS": true, - "Link": "https://ipinfo.io/", - "Section": "Geocoding" - }, - { - "API": "IP Location", - "Auth": null, - "Description": "Find IP address location information", - "HTTPS": true, - "Link": "https://ipapi.co/", - "Section": "Geocoding" - }, - { - "API": "IP Vigilante", - "Auth": null, - "Description": "Free IP Geolocation API", - "HTTPS": true, - "Link": "https://www.ipvigilante.com/", - "Section": "Geocoding" - }, - { - "API": "Mapbox", - "Auth": "apiKey", - "Description": "Create/customize beautiful digital maps", - "HTTPS": true, - "Link": "https://www.mapbox.com/developers/", - "Section": "Geocoding" - }, - { - "API": "Mapzen Search", - "Auth": "apiKey", - "Description": "Open Source & Open Data Global Geocoding Service", - "HTTPS": true, - "Link": "https://mapzen.com/products/search/", - "Section": "Geocoding" - }, - { - "API": "Mexico", - "Auth": null, - "Description": "Mexico RESTful zip codes API", - "HTTPS": true, - "Link": "https://github.com/IcaliaLabs/sepomex", - "Section": "Geocoding" - }, - { - "API": "One Map 2.0, Singapore", - "Auth": "apiKey", - "Description": "Singapore Land Authority REST API services for Singapore addresses", - "HTTPS": true, - "Link": "https://docs.onemap.sg/", - "Section": "Geocoding" - }, - { - "API": "OnWater", - "Auth": null, - "Description": "Determine if a lat/lon is on water or land", - "HTTPS": true, - "Link": "https://onwater.io/", - "Section": "Geocoding" - }, - { - "API": "OpenCage", - "Auth": null, - "Description": "Forward and reverse geocoding using open data", - "HTTPS": true, - "Link": "https://geocoder.opencagedata.com", - "Section": "Geocoding" - }, - { - "API": "OpenStreetMap", - "Auth": "OAuth", - "Description": "Navigation, geolocation and geographical data", - "HTTPS": false, - "Link": "http://wiki.openstreetmap.org/wiki/API", - "Section": "Geocoding" - }, - { - "API": "PostcodeData.nl", - "Auth": null, - "Description": "Provide geolocation data based on postcode for Dutch addresses", - "HTTPS": false, - "Link": "http://api.postcodedata.nl/v1/postcode/?postcode=1211EP&streetnumber=60&ref=domeinnaam.nl&type=json", - "Section": "Geocoding" - }, - { - "API": "Postcodes.io", - "Auth": null, - "Description": "Postcode lookup & Geolocation for the UK", - "HTTPS": true, - "Link": "https://postcodes.io", - "Section": "Geocoding" - }, - { - "API": "REST Countries", - "Auth": null, - "Description": "Get information about countries via a RESTful API", - "HTTPS": true, - "Link": "https://restcountries.eu", - "Section": "Geocoding" - }, - { - "API": "Utah AGRC", - "Auth": "apiKey", - "Description": "Utah Web API for geocoding Utah addresses", - "HTTPS": true, - "Link": "https://api.mapserv.utah.gov", - "Section": "Geocoding" - }, - { - "API": "ViaCep", - "Auth": null, - "Description": "Brazil RESTful zip codes API", - "HTTPS": true, - "Link": "https://viacep.com.br", - "Section": "Geocoding" - }, - { - "API": "Zippopotam", - "Auth": null, - "Description": "Get information about place such as country, city, state, etc", - "HTTPS": false, - "Link": "http://www.zippopotam.us", - "Section": "Geocoding" - }, - { - "API": "Diabetes", - "Auth": null, - "Description": "Logging and retrieving diabetes information", - "HTTPS": false, - "Link": "http://predictbgl.com/api/", - "Section": "Health" - }, - { - "API": "Flutrack", - "Auth": null, - "Description": "Influenza-like symptoms with geotracking", - "HTTPS": false, - "Link": "http://www.flutrack.org/", - "Section": "Health" - }, - { - "API": "Makeup", - "Auth": null, - "Description": "Makeup Information", - "HTTPS": false, - "Link": "http://makeup-api.herokuapp.com/", - "Section": "Health" - }, - { - "API": "Medicare", - "Auth": null, - "Description": "Access to the data from the CMS - medicaregov", - "HTTPS": true, - "Link": "https://data.medicare.gov/developers", - "Section": "Health" - }, - { - "API": "Nutritionix", - "Auth": "apiKey", - "Description": "Worlds largest verified nutrition database", - "HTTPS": true, - "Link": "https://developer.nutritionix.com/", - "Section": "Health" - }, - { - "API": "openFDA", - "Auth": null, - "Description": "Public FDA data about drugs, devices, and foods", - "HTTPS": true, - "Link": "https://open.fda.gov/api/", - "Section": "Health" - }, - { - "API": "USDA Nutrients", - "Auth": null, - "Description": "National Nutrient Database for Standard Reference", - "HTTPS": true, - "Link": "https://ndb.nal.usda.gov/ndb/doc/index", - "Section": "Health" - }, - { - "API": "API.AI", - "Auth": "apiKey", - "Description": "Natural Language Processing", - "HTTPS": true, - "Link": "https://api.ai/", - "Section": "Machine Learning" - }, - { - "API": "Clarifai", - "Auth": "OAuth", - "Description": "Computer Vision", - "HTTPS": true, - "Link": "https://developer.clarifai.com/", - "Section": "Machine Learning" - }, - { - "API": "Cleverbot", - "Auth": "apiKey", - "Description": "Web chat bot", - "HTTPS": true, - "Link": "https://www.cleverbot.com/api/", - "Section": "Machine Learning" - }, - { - "API": "Keen IO", - "Auth": "apiKey", - "Description": "Data Analytics", - "HTTPS": true, - "Link": "https://keen.io/", - "Section": "Machine Learning" - }, - { - "API": "Unplugg", - "Auth": "apiKey", - "Description": "Forecasting API for timeseries data", - "HTTPS": true, - "Link": "https://unplu.gg/test_api.html", - "Section": "Machine Learning" - }, - { - "API": "Wit.ai", - "Auth": "OAuth", - "Description": "Natural Language Processing", - "HTTPS": true, - "Link": "https://wit.ai/", - "Section": "Machine Learning" - }, - { - "API": "Newton", - "Auth": null, - "Description": "Symbolic and Arithmetic Math Calculator", - "HTTPS": true, - "Link": "https://newton.now.sh/", - "Section": "Math" - }, - { - "API": "Numbers API", - "Auth": null, - "Description": "Facts about numbers", - "HTTPS": false, - "Link": "http://numbersapi.com", - "Section": "Math" - }, - { - "API": "Bandsintown", - "Auth": null, - "Description": "Music Events", - "HTTPS": true, - "Link": "https://app.swaggerhub.com/apis/Bandsintown/PublicAPI/3.0.0", - "Section": "Music" - }, - { - "API": "Deezer", - "Auth": "OAuth", - "Description": "Music", - "HTTPS": false, - "Link": "http://developers.deezer.com/login?redirect=/api", - "Section": "Music" - }, - { - "API": "Discogs", - "Auth": "OAuth", - "Description": "Music", - "HTTPS": true, - "Link": "https://www.discogs.com/developers/", - "Section": "Music" - }, - { - "API": "Genius", - "Auth": "OAuth", - "Description": "Crowdsourced lyrics and music knowledge", - "HTTPS": true, - "Link": "https://docs.genius.com/", - "Section": "Music" - }, - { - "API": "Jamendo", - "Auth": "OAuth", - "Description": "Music", - "HTTPS": true, - "Link": "https://developer.jamendo.com/v3.0", - "Section": "Music" - }, - { - "API": "iTunes Search", - "Auth": null, - "Description": "Software products", - "HTTPS": true, - "Link": "https://affiliate.itunes.apple.com/resources/documentation/itunes-store-web-service-search-api/", - "Section": "Music" - }, - { - "API": "LastFm", - "Auth": "apiKey", - "Description": "Music", - "HTTPS": false, - "Link": "http://www.last.fm/api", - "Section": "Music" - }, - { - "API": "Mixcloud", - "Auth": null, - "Description": "Music", - "HTTPS": true, - "Link": "https://www.mixcloud.com/developers/", - "Section": "Music" - }, - { - "API": "MusicBrainz", - "Auth": null, - "Description": "Music", - "HTTPS": true, - "Link": "https://musicbrainz.org/doc/Development/XML_Web_Service/Version_2", - "Section": "Music" - }, - { - "API": "Musikki", - "Auth": "apiKey", - "Description": "Music", - "HTTPS": true, - "Link": "https://music-api.musikki.com/reference", - "Section": "Music" - }, - { - "API": "Musixmatch", - "Auth": "apiKey", - "Description": "Music", - "HTTPS": true, - "Link": "https://developer.musixmatch.com/", - "Section": "Music" - }, - { - "API": "Songkick", - "Auth": "OAuth", - "Description": "Music Events", - "HTTPS": true, - "Link": "https://www.songkick.com/developer/", - "Section": "Music" - }, - { - "API": "Songsterr", - "Auth": null, - "Description": "Provides guitar, bass and drums tabs and chords", - "HTTPS": true, - "Link": "https://www.songsterr.com/a/wa/api/", - "Section": "Music" - }, - { - "API": "Soundcloud", - "Auth": null, - "Description": "Music", - "HTTPS": true, - "Link": "https://developers.soundcloud.com/", - "Section": "Music" - }, - { - "API": "Spotify", - "Auth": "OAuth", - "Description": "Music", - "HTTPS": true, - "Link": "https://developer.spotify.com/web-api/", - "Section": "Music" - }, - { - "API": "Vagalume", - "Auth": "apiKey", - "Description": "Crowdsourced lyrics and music knowledge", - "HTTPS": true, - "Link": "https://api.vagalume.com.br/docs/", - "Section": "Music" - }, - { - "API": "Chronicling America", - "Auth": null, - "Description": "Provides access to millions of pages of historic US newspapers from the Library of Congress", - "HTTPS": false, - "Link": "http://chroniclingamerica.loc.gov/about/api/", - "Section": "News" - }, - { - "API": "New York Times", - "Auth": "apiKey", - "Description": "Provides news", - "HTTPS": true, - "Link": "https://developer.nytimes.com/", - "Section": "News" - }, - { - "API": "News API", - "Auth": "apiKey", - "Description": "Headlines currently published on a range of news sources and blogs", - "HTTPS": true, - "Link": "https://newsapi.org/", - "Section": "News" - }, - { - "API": "The Guardian", - "Auth": "apiKey", - "Description": "Access all the content the Guardian creates, categorised by tags and section", - "HTTPS": true, - "Link": "http://open-platform.theguardian.com/", - "Section": "News" - }, - { - "API": "Countly", - "Auth": null, - "Description": "Countly web analytics", - "HTTPS": false, - "Link": "http://resources.count.ly/docs", - "Section": "Open Source projects" - }, - { - "API": "Drupal.org", - "Auth": null, - "Description": "Drupalorg", - "HTTPS": true, - "Link": "https://www.drupal.org/drupalorg/docs/api", - "Section": "Open Source projects" - }, - { - "API": "Libraries.io", - "Auth": "apiKey", - "Description": "Open source software libraries", - "HTTPS": true, - "Link": "https://libraries.io/api", - "Section": "Open Source projects" - }, - { - "API": "chucknorris.io", - "Auth": null, - "Description": "JSON API for hand curated Chuck Norris jokes", - "HTTPS": true, - "Link": "https://api.chucknorris.io", - "Section": "Personality" - }, - { - "API": "Forismatic", - "Auth": null, - "Description": "Inspirational Quotes", - "HTTPS": false, - "Link": "http://forismatic.com/en/api/", - "Section": "Personality" - }, - { - "API": "icanhazdadjoke", - "Auth": null, - "Description": "The largest selection of dad jokes on the internet", - "HTTPS": true, - "Link": "https://icanhazdadjoke.com/api", - "Section": "Personality" - }, - { - "API": "Medium", - "Auth": "OAuth", - "Description": "Community of readers and writers offering unique perspectives on ideas", - "HTTPS": true, - "Link": "https://github.com/Medium/medium-api-docs", - "Section": "Personality" - }, - { - "API": "Quotes on Design", - "Auth": null, - "Description": "Inspirational Quotes", - "HTTPS": true, - "Link": "https://quotesondesign.com/api-v4-0/", - "Section": "Personality" - }, - { - "API": "Traitify", - "Auth": null, - "Description": "Assess, collect, and analyze Personality", - "HTTPS": true, - "Link": "https://app.traitify.com/developer", - "Section": "Personality" - }, - { - "API": "tronalddump.io", - "Auth": null, - "Description": "Api & web archive for the things Donald Trump has said", - "HTTPS": true, - "Link": "https://www.tronalddump.io", - "Section": "Personality" - }, - { - "API": "500px", - "Auth": "OAuth", - "Description": "Photography Community", - "HTTPS": true, - "Link": "https://github.com/500px/api-documentation", - "Section": "Photography" - }, - { - "API": "Flickr", - "Auth": "OAuth", - "Description": "Flickr Services", - "HTTPS": true, - "Link": "https://www.flickr.com/services/api/", - "Section": "Photography" - }, - { - "API": "Gfycat", - "Auth": "OAuth", - "Description": "Jiffier GIFs", - "HTTPS": true, - "Link": "https://developers.gfycat.com/api/", - "Section": "Photography" - }, - { - "API": "Giphy", - "Auth": null, - "Description": "Get all your gifs", - "HTTPS": true, - "Link": "https://github.com/Giphy/GiphyAPI", - "Section": "Photography" - }, - { - "API": "Imgur", - "Auth": "OAuth", - "Description": "Images", - "HTTPS": true, - "Link": "https://api.imgur.com/#overview", - "Section": "Photography" - }, - { - "API": "ScreenShotLayer", - "Auth": null, - "Description": "URL 2 Image", - "HTTPS": true, - "Link": "https://screenshotlayer.com", - "Section": "Photography" - }, - { - "API": "Unsplash", - "Auth": "OAuth", - "Description": "Photography", - "HTTPS": true, - "Link": "https://unsplash.com/developers", - "Section": "Photography" - }, - { - "API": "PlaceKitten", - "Auth": null, - "Description": "Resizable kitten placeholder images", - "HTTPS": true, - "Link": "https://placekitten.com/", - "Section": "Photography" - }, - { - "API": "arcsecond.io", - "Auth": null, - "Description": "Multiple astronomy data sources", - "HTTPS": true, - "Link": "https://api.arcsecond.io/", - "Section": "Science" - }, - { - "API": "CORE", - "Auth": "apiKey", - "Description": "Access the world's Open Access research papers", - "HTTPS": true, - "Link": "https://core.ac.uk/services#api", - "Section": "Science" - }, - { - "API": "Fedger.io", - "Auth": null, - "Description": "Query machine intelligence data", - "HTTPS": true, - "Link": "https://dev.fedger.io/docs/", - "Section": "Science" - }, - { - "API": "inspirehep.net", - "Auth": null, - "Description": "High Energy Physics info system", - "HTTPS": true, - "Link": "https://inspirehep.net/info/hep/api?ln=en", - "Section": "Science" - }, - { - "API": "Launch Library", - "Auth": null, - "Description": "Upcoming Space Launches", - "HTTPS": true, - "Link": "https://launchlibrary.net/1.2/docs/api.html", - "Section": "Science" - }, - { - "API": "Minor Planet Center", - "Auth": null, - "Description": "Asterankcom Information", - "HTTPS": false, - "Link": "http://www.asterank.com/mpc", - "Section": "Science" - }, - { - "API": "NASA", - "Auth": null, - "Description": "NASA data, including imagery", - "HTTPS": true, - "Link": "https://api.nasa.gov", - "Section": "Science" - }, - { - "API": "Open Notify", - "Auth": null, - "Description": "ISS astronauts, current location, etc", - "HTTPS": false, - "Link": "http://open-notify.org/Open-Notify-API/", - "Section": "Science" - }, - { - "API": "Sunrise and Sunset", - "Auth": null, - "Description": "Sunset and sunrise times for a given latitude and longitude", - "HTTPS": true, - "Link": "https://sunrise-sunset.org/api", - "Section": "Science" - }, - { - "API": "USGS Earthquake Hazards Program", - "Auth": null, - "Description": "Earthquakes data real-time", - "HTTPS": true, - "Link": "https://earthquake.usgs.gov/fdsnws/event/1/", - "Section": "Science" - }, - { - "API": "USGS Water Services", - "Auth": null, - "Description": "Water quality and level info for rivers and lakes", - "HTTPS": true, - "Link": "https://waterservices.usgs.gov/", - "Section": "Science" - }, - { - "API": "World Bank", - "Auth": null, - "Description": "World Data", - "HTTPS": false, - "Link": "https://datahelpdesk.worldbank.org/knowledgebase/topics/125589", - "Section": "Science" - }, - { - "API": "AXFR Database", - "Auth": null, - "Description": "AXFR public database", - "HTTPS": false, - "Link": "http://api.axfrcheck.com", - "Section": "Security" - }, - { - "API": "UK Police", - "Auth": null, - "Description": "UK Police data", - "HTTPS": true, - "Link": "https://data.police.uk/docs/", - "Section": "Security" - }, - { - "API": "eBay", - "Auth": "OAuth", - "Description": "Sell and Buy on eBay", - "HTTPS": true, - "Link": "https://go.developer.ebay.com/", - "Section": "Shopping" - }, - { - "API": "Cisco Spark", - "Auth": "OAuth", - "Description": "Team Collaboration Software", - "HTTPS": true, - "Link": "https://developer.ciscospark.com", - "Section": "Social" - }, - { - "API": "Discord", - "Auth": "OAuth", - "Description": "Make bots for Discord, integrate Discord onto an external platform", - "HTTPS": true, - "Link": "https://discordapp.com/developers/docs/intro", - "Section": "Social" - }, - { - "API": "DonReach Social Count", - "Auth": null, - "Description": "Get the social share count of a URL from every major social network", - "HTTPS": true, - "Link": "https://donreach.com/social-share-count/", - "Section": "Social" - }, - { - "API": "Facebook", - "Auth": "OAuth", - "Description": "Facebook Login, Share on FB, Social Plugins, Analytics and more", - "HTTPS": true, - "Link": "https://developers.facebook.com/", - "Section": "Social" - }, - { - "API": "Foursquare", - "Auth": "OAuth", - "Description": "Interact with Foursquare users and places (geolocation-based checkins, photos, tips, events, etc)", - "HTTPS": true, - "Link": "https://developer.foursquare.com/", - "Section": "Social" - }, - { - "API": "Fuck Off as a Service", - "Auth": null, - "Description": "Asks someone to fuck off", - "HTTPS": true, - "Link": "https://www.foaas.com", - "Section": "Social" - }, - { - "API": "Full Contact", - "Auth": "OAuth", - "Description": "Get Social Media profiles and contact Information", - "HTTPS": true, - "Link": "https://www.fullcontact.com/developer/docs/", - "Section": "Social" - }, - { - "API": "HackerNews", - "Auth": null, - "Description": "Social news for CS and entrepreneurship", - "HTTPS": true, - "Link": "https://github.com/HackerNews/API", - "Section": "Social" - }, - { - "API": "Instagram", - "Auth": "OAuth", - "Description": "Instagram Login, Share on Instagram, Social Plugins and more", - "HTTPS": true, - "Link": "https://www.instagram.com/developer/", - "Section": "Social" - }, - { - "API": "LinkedIn", - "Auth": "OAuth", - "Description": "The foundation of all digital integrations with LinkedIn", - "HTTPS": true, - "Link": "https://developer.linkedin.com/docs/rest-api", - "Section": "Social" - }, - { - "API": "Meetup.com", - "Auth": "apiKey", - "Description": "Data about Meetups from Meetupcom", - "HTTPS": true, - "Link": "https://www.meetup.com/meetup_api/", - "Section": "Social" - }, - { - "API": "Telegram MTProto", - "Auth": "OAuth", - "Description": "Read and write Telegram data", - "HTTPS": true, - "Link": "https://core.telegram.org/api#getting-started", - "Section": "Social" - }, - { - "API": "Telegram bot", - "Auth": "OAuth", - "Description": "Simplified HTTP version of the MTProto API for bots", - "HTTPS": true, - "Link": "https://core.telegram.org/bots/api", - "Section": "Social" - }, - { - "API": "Pinterest", - "Auth": "OAuth", - "Description": "The world's catalog of ideas", - "HTTPS": true, - "Link": "https://developers.pinterest.com/", - "Section": "Social" - }, - { - "API": "PWRTelegram bot", - "Auth": "OAuth", - "Description": "Boosted version of the Telegram bot API", - "HTTPS": true, - "Link": "https://pwrtelegram.xyz", - "Section": "Social" - }, - { - "API": "Reddit", - "Auth": "OAuth", - "Description": "Homepage of the internet", - "HTTPS": true, - "Link": "https://www.reddit.com/dev/api", - "Section": "Social" - }, - { - "API": "Slack", - "Auth": "OAuth", - "Description": "Team Instant Messaging", - "HTTPS": true, - "Link": "https://api.slack.com/", - "Section": "Social" - }, - { - "API": "Tumblr", - "Auth": "OAuth", - "Description": "Read and write Tumblr Data", - "HTTPS": true, - "Link": "https://www.tumblr.com/docs/en/api/v2", - "Section": "Social" - }, - { - "API": "Twitch", - "Auth": "OAuth", - "Description": "Game Streaming API", - "HTTPS": true, - "Link": "https://github.com/justintv/Twitch-API", - "Section": "Social" - }, - { - "API": "Twitter", - "Auth": "OAuth", - "Description": "Read and write Twitter data", - "HTTPS": true, - "Link": "https://dev.twitter.com/rest/public", - "Section": "Social" - }, - { - "API": "vk", - "Auth": "OAuth", - "Description": "Read and write vk data", - "HTTPS": true, - "Link": "https://vk.com/dev/sites", - "Section": "Social" - }, - { - "API": "Cartola FC", - "Auth": null, - "Description": "The Cartola FC API serves to check the partial points of your team", - "HTTPS": true, - "Link": "https://github.com/wgenial/cartrolandofc", - "Section": "Sports & Fitness" - }, - { - "API": "City Bikes", - "Auth": null, - "Description": "City Bikes around the world", - "HTTPS": false, - "Link": "http://api.citybik.es/v2/", - "Section": "Sports & Fitness" - }, - { - "API": "Ergast F1", - "Auth": null, - "Description": "F1 data from the beginning of the world championships in 1950", - "HTTPS": false, - "Link": "http://ergast.com/mrd/", - "Section": "Sports & Fitness" - }, - { - "API": "Fitbit", - "Auth": "OAuth", - "Description": "Fitbit Information", - "HTTPS": true, - "Link": "https://dev.fitbit.com/", - "Section": "Sports & Fitness" - }, - { - "API": "Football-Data.org", - "Auth": null, - "Description": "Football Data", - "HTTPS": false, - "Link": "http://api.football-data.org/index", - "Section": "Sports & Fitness" - }, - { - "API": "JCDecaux Bike", - "Auth": "apiKey", - "Description": "JCDecaux's self-service bicycles", - "HTTPS": true, - "Link": "https://developer.jcdecaux.com/", - "Section": "Sports & Fitness" - }, - { - "API": "Cricket Live Scores", - "Auth": "X-Mashape-Key", - "Description": "Live cricket scores", - "HTTPS": true, - "Link": "https://market.mashape.com/dev132/cricket-live-scores", - "Section": "Sports & Fitness" - }, - { - "API": "NFL Arrests", - "Auth": null, - "Description": "NFL Arrest Data", - "HTTPS": false, - "Link": "http://nflarrest.com/api/", - "Section": "Sports & Fitness" - }, - { - "API": "Pro Motocross", - "Auth": null, - "Description": "The RESTful AMA Pro Motocross lap times for every racer on the start gate", - "HTTPS": false, - "Link": "http://promotocrossapi.com", - "Section": "Sports & Fitness" - }, - { - "API": "Strava", - "Auth": "OAuth", - "Description": "Connect with athletes, activities and more", - "HTTPS": true, - "Link": "https://strava.github.io/api/", - "Section": "Sports & Fitness" - }, - { - "API": "UFC Data", - "Auth": null, - "Description": "Ultimate Fighting Championship information for events and fighters", - "HTTPS": false, - "Link": "http://ufc-data-api.ufc.com/", - "Section": "Sports & Fitness" - }, - { - "API": "Wger", - "Auth": "apiKey", - "Description": "Workout manager data as exercises, muscles or equipment", - "HTTPS": true, - "Link": "https://wger.de/en/software/api", - "Section": "Sports & Fitness" - }, - { - "API": "Postmon", - "Auth": null, - "Description": "An API to query Brazilian ZIP codes and orders easily, quickly and free", - "HTTPS": false, - "Link": "http://postmon.com.br", - "Section": "Tracking" - }, - { - "API": "Sweden", - "Auth": "apiKey", - "Description": "Provides information about parcels in transport", - "HTTPS": false, - "Link": "https://developer.postnord.com/docs2", - "Section": "Tracking" - }, - { - "API": "ADS-B Exchange", - "Auth": null, - "Description": "Access real-time and historical data of any and all airbone aircraft", - "HTTPS": true, - "Link": "https://www.adsbexchange.com/data/", - "Section": "Transportation" - }, - { - "API": "Amadeus Travel Innovation Sandbox", - "Auth": "apiKey", - "Description": "Travel Search - Limited usage", - "HTTPS": true, - "Link": "https://sandbox.amadeus.com/", - "Section": "Transportation" - }, - { - "API": "Bay Area Rapid Transit", - "Auth": "apiKey", - "Description": "Stations and predicted arrivals for BART", - "HTTPS": false, - "Link": "http://api.bart.gov", - "Section": "Transportation" - }, - { - "API": "Community Transit", - "Auth": null, - "Description": "Transitland API", - "HTTPS": true, - "Link": "https://github.com/transitland/transitland-datastore/blob/master/README.md#api-endpoints", - "Section": "Transportation" - }, - { - "API": "Goibibo", - "Auth": "apiKey", - "Description": "API for travel search", - "HTTPS": true, - "Link": "https://developer.goibibo.com/docs", - "Section": "Transportation" - }, - { - "API": "Indian Railways", - "Auth": "apiKey", - "Description": "Indian Railways Information", - "HTTPS": false, - "Link": "http://api.erail.in/", - "Section": "Transportation" - }, - { - "API": "Izi", - "Auth": "apiKey", - "Description": "Audio guide for travellers", - "HTTPS": true, - "Link": "http://api-docs.izi.travel/", - "Section": "Transportation" - }, - { - "API": "Navitia", - "Auth": "apiKey", - "Description": "The open API for building cool stuff with transport data", - "HTTPS": true, - "Link": "https://api.navitia.io/", - "Section": "Transportation" - }, - { - "API": "The Nomad List", - "Auth": null, - "Description": "A list of the best places to live/work remotely", - "HTTPS": true, - "Link": "https://nomadlist.com/faq", - "Section": "Transportation" - }, - { - "API": "Schiphol Airport", - "Auth": "apiKey", - "Description": "Schiphol", - "HTTPS": true, - "Link": "https://developer.schiphol.nl/", - "Section": "Transportation" - }, - { - "API": "TransitLand", - "Auth": null, - "Description": "Transit Aggregation", - "HTTPS": true, - "Link": "https://transit.land/documentation/datastore/api-endpoints.html", - "Section": "Transportation" - }, - { - "API": "Transport for Atlanta, US", - "Auth": null, - "Description": "Marta", - "HTTPS": false, - "Link": "http://www.itsmarta.com/app-developer-resources.aspx", - "Section": "Transportation" - }, - { - "API": "Transport for Auckland, New Zealand", - "Auth": null, - "Description": "Auckland Transport", - "HTTPS": true, - "Link": "https://api.at.govt.nz/", - "Section": "Transportation" - }, - { - "API": "Transport for Belgium", - "Auth": null, - "Description": "Belgian transport API", - "HTTPS": true, - "Link": "https://hello.irail.be/api/", - "Section": "Transportation" - }, - { - "API": "Transport for Berlin, Germany", - "Auth": null, - "Description": "Third-party VBB API", - "HTTPS": true, - "Link": "https://github.com/derhuerst/vbb-rest/blob/master/docs/index.md", - "Section": "Transportation" - }, - { - "API": "Transport for Boston, US", - "Auth": null, - "Description": "MBTA API", - "HTTPS": false, - "Link": "http://realtime.mbta.com/Portal/Home/Documents", - "Section": "Transportation" - }, - { - "API": "Transport for Budapest, Hungary", - "Auth": null, - "Description": "Budapest public transport API", - "HTTPS": true, - "Link": "https://apiary.io/", - "Section": "Transportation" - }, - { - "API": "Transport for Chicago, US", - "Auth": null, - "Description": "CTA", - "HTTPS": false, - "Link": "http://www.transitchicago.com/developers/", - "Section": "Transportation" - }, - { - "API": "Transport for Czech Republic", - "Auth": null, - "Description": "Czech transport API", - "HTTPS": true, - "Link": "https://www.chaps.cz/eng/products/idos-internet", - "Section": "Transportation" - }, - { - "API": "Transport for Denver, US", - "Auth": null, - "Description": "RTD", - "HTTPS": false, - "Link": "http://www.rtd-denver.com/gtfs-developer-guide.shtml", - "Section": "Transportation" - }, - { - "API": "Transport for Finland", - "Auth": null, - "Description": "Finnish transport API", - "HTTPS": true, - "Link": "https://digitransit.fi/en/developers/ ", - "Section": "Transportation" - }, - { - "API": "Transport for Germany", - "Auth": "apiKey", - "Description": "Deutsche Bahn (DB) API", - "HTTPS": false, - "Link": "http://data.deutschebahn.com/dataset/api-fahrplan", - "Section": "Transportation" - }, - { - "API": "Transport for India", - "Auth": "apiKey", - "Description": "India Public Transport API", - "HTTPS": true, - "Link": "https://data.gov.in/sector/transport", - "Section": "Transportation" - }, - { - "API": "Transport for London, England", - "Auth": null, - "Description": "TfL API", - "HTTPS": true, - "Link": "https://api.tfl.gov.uk", - "Section": "Transportation" - }, - { - "API": "Transport for Madrid, Spain", - "Auth": "apiKey", - "Description": "Madrid BUS transport API", - "HTTPS": false, - "Link": "http://opendata.emtmadrid.es/Servicios-web/BUS", - "Section": "Transportation" - }, - { - "API": "Transport for Minneapolis, US", - "Auth": "OAuth", - "Description": "NexTrip API", - "HTTPS": false, - "Link": "http://svc.metrotransit.org/", - "Section": "Transportation" - }, - { - "API": "Transport for The Netherlands", - "Auth": "apiKey", - "Description": "NS, only trains", - "HTTPS": false, - "Link": "http://www.ns.nl/reisinformatie/ns-api", - "Section": "Transportation" - }, - { - "API": "Transport for The Netherlands", - "Auth": null, - "Description": "OVAPI, country-wide public transport", - "HTTPS": true, - "Link": "https://github.com/skywave/KV78Turbo-OVAPI/wiki", - "Section": "Transportation" - }, - { - "API": "Transport for New York City, US", - "Auth": "apiKey", - "Description": "MTA", - "HTTPS": false, - "Link": "http://datamine.mta.info/", - "Section": "Transportation" - }, - { - "API": "Transport for Norway", - "Auth": null, - "Description": "Norwegian transport API", - "HTTPS": false, - "Link": "http://reisapi.ruter.no/help", - "Section": "Transportation" - }, - { - "API": "Transport for Ottawa, Canada", - "Auth": null, - "Description": "OC Transpo next bus arrival API", - "HTTPS": false, - "Link": "http://www.octranspo.com/index.php/developers", - "Section": "Transportation" - }, - { - "API": "Transport for Paris, France", - "Auth": null, - "Description": "RATP Open Data API", - "HTTPS": false, - "Link": "http://data.ratp.fr/api/v1/console/datasets/1.0/search/", - "Section": "Transportation" - }, - { - "API": "Transport for Paris, France", - "Auth": null, - "Description": "Live schedules made simple", - "HTTPS": false, - "Link": "http://restratpws.azurewebsites.net/swagger/", - "Section": "Transportation" - }, - { - "API": "Transport for Philadelphia, US", - "Auth": null, - "Description": "SEPTA APIs", - "HTTPS": false, - "Link": "http://www3.septa.org/hackathon/", - "Section": "Transportation" - }, - { - "API": "Transport for Rio de Janeiro, Brazil", - "Auth": null, - "Description": "Prefeitura do Rio (City Hall)", - "HTTPS": false, - "Link": "http://data.rio/group/transporte-e-mobilidade", - "Section": "Transportation" - }, - { - "API": "Transport for S\u00e3o Paulo, Brazil", - "Auth": "OAuth", - "Description": "SPTrans", - "HTTPS": false, - "Link": "http://www.sptrans.com.br/desenvolvedores/APIOlhoVivo/Documentacao.aspx", - "Section": "Transportation" - }, - { - "API": "Transport for Sweden", - "Auth": "OAuth", - "Description": "Public Transport consumer", - "HTTPS": true, - "Link": "https://www.trafiklab.se/api", - "Section": "Transportation" - }, - { - "API": "Transport for Switzerland", - "Auth": null, - "Description": "Swiss public transport API", - "HTTPS": true, - "Link": "https://transport.opendata.ch/", - "Section": "Transportation" - }, - { - "API": "Transport for Switzerland", - "Auth": "apiKey", - "Description": "Official Swiss Public Transport Open Data", - "HTTPS": true, - "Link": "https://opentransportdata.swiss/en/", - "Section": "Transportation" - }, - { - "API": "Transport for Tokyo, Japan", - "Auth": "apiKey", - "Description": "Tokyo Metro", - "HTTPS": true, - "Link": "https://developer.tokyometroapp.jp/info", - "Section": "Transportation" - }, - { - "API": "Transport for Toronto, Canada", - "Auth": null, - "Description": "TTC", - "HTTPS": true, - "Link": "https://myttc.ca/developers", - "Section": "Transportation" - }, - { - "API": "Transport for Vancouver, Canada", - "Auth": "OAuth", - "Description": "TransLink", - "HTTPS": true, - "Link": "https://developer.translink.ca/", - "Section": "Transportation" - }, - { - "API": "Transport for U.S. (multiple locations)", - "Auth": null, - "Description": "NextBus API", - "HTTPS": false, - "Link": "http://www.nextbus.com/xmlFeedDocs/NextBusXMLFeed.pdf", - "Section": "Transportation" - }, - { - "API": "Transport for Victoria, AU", - "Auth": "apiKey", - "Description": "PTV API", - "HTTPS": true, - "Link": "https://www.ptv.vic.gov.au/about-ptv/ptv-data-and-reports/digital-products/ptv-timetable-api/", - "Section": "Transportation" - }, - { - "API": "Transport for Washington, US", - "Auth": "OAuth", - "Description": "Washington Metro transport API", - "HTTPS": true, - "Link": "https://developer.wmata.com/", - "Section": "Transportation" - }, - { - "API": "Uber", - "Auth": "OAuth", - "Description": "Request Uber rides, reach riders, transport things, and reward drivers", - "HTTPS": true, - "Link": "https://developer.uber.com/", - "Section": "Transportation" - }, - { - "API": "WhereIsMyTransport", - "Auth": "OAuth", - "Description": "Platform for public transport data in emerging cities", - "HTTPS": true, - "Link": "https://developer.whereismytransport.com/", - "Section": "Transportation" - }, - { - "API": "Universities List", - "Auth": null, - "Description": "University names, countries and domains", - "HTTPS": true, - "Link": "https://github.com/Hipo/university-domains-list", - "Section": "University" - }, - { - "API": "Vehicles", - "Auth": "apiKey", - "Description": "Lot of vehicles information", - "HTTPS": false, - "Link": "http://developer.edmunds.com/api-documentation/overview/", - "Section": "Vehicle" - }, - { - "API": "Brazilian Vehicles and Prices", - "Auth": null, - "Description": "Vehicles information from Funda\u00e7\u00e3o Instituto de Pesquisas Econ\u00f4micas - Fipe", - "HTTPS": true, - "Link": "https://deividfortuna.github.io/fipe/", - "Section": "Vehicle" - }, - { - "API": "NHTSA Vehicles", - "Auth": null, - "Description": "NHTSA Product Information Catalog and Vehicle Listing", - "HTTPS": true, - "Link": "https://vpic.nhtsa.dot.gov/api/", - "Section": "Vehicle" - }, - { - "API": "An API of Ice And Fire", - "Auth": null, - "Description": "Game Of Thrones API", - "HTTPS": true, - "Link": "https://anapioficeandfire.com/", - "Section": "Video" - }, - { - "API": "Dailymotion", - "Auth": "OAuth", - "Description": "Dailymotion Developer API", - "HTTPS": true, - "Link": "https://developer.dailymotion.com/", - "Section": "Video" - }, - { - "API": "Netflix Roulette", - "Auth": null, - "Description": "Netflix database", - "HTTPS": true, - "Link": "https://netflixroulette.net/api/", - "Section": "Video" - }, - { - "API": "Ron Swanson Quotes", - "Auth": null, - "Description": "Television", - "HTTPS": true, - "Link": "https://github.com/jamesseanwright/ron-swanson-quotes#ron-swanson-quotes-api", - "Section": "Video" - }, - { - "API": "SWAPI", - "Auth": null, - "Description": "Star Wars Information", - "HTTPS": true, - "Link": "https://swapi.co", - "Section": "Video" - }, - { - "API": "TMDb", - "Auth": "apiKey", - "Description": "Community-based movie data", - "HTTPS": true, - "Link": "https://www.themoviedb.org/documentation/api", - "Section": "Video" - }, - { - "API": "TVMaze", - "Auth": null, - "Description": "TV Show Data", - "HTTPS": false, - "Link": "http://www.tvmaze.com/api", - "Section": "Video" - }, - { - "API": "Vimeo", - "Auth": "OAuth", - "Description": "Vimeo Developer API", - "HTTPS": true, - "Link": "https://developer.vimeo.com/", - "Section": "Video" - }, - { - "API": "YouTube", - "Auth": "OAuth", - "Description": "Add YouTube functionality to your sites and apps", - "HTTPS": true, - "Link": "https://developers.google.com/youtube/", - "Section": "Video" - }, - { - "API": "Dark Sky", - "Auth": "apiKey", - "Description": "Weather", - "HTTPS": true, - "Link": "https://darksky.net/dev/", - "Section": "Weather" - }, - { - "API": "MetaWeather", - "Auth": null, - "Description": "Weather", - "HTTPS": true, - "Link": "https://www.metaweather.com/api/", - "Section": "Weather" - }, - { - "API": "OpenWeatherMap", - "Auth": "apiKey", - "Description": "Weather", - "HTTPS": false, - "Link": "http://openweathermap.org/api", - "Section": "Weather" - }, - { - "API": "Weatherbit", - "Auth": "apiKey", - "Description": "Weather", - "HTTPS": true, - "Link": "https://www.weatherbit.io/api", - "Section": "Weather" - }, - { - "API": "Wunderground", - "Auth": "apiKey", - "Description": "Weather", - "HTTPS": true, - "Link": "https://www.wunderground.com/weather/api/", - "Section": "Weather" - } - ] -}