Skip to content

Instantly share code, notes, and snippets.

@brigand
Last active May 27, 2017 07:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brigand/7959772ea4ba75dbe917814063587b36 to your computer and use it in GitHub Desktop.
Save brigand/7959772ea4ba75dbe917814063587b36 to your computer and use it in GitHub Desktop.
Useful http apis for sample projects and experiments

Reddit

An api for accessing reddit information. Supports CORS. Doesn't require auth. Great for learning new frontend frameworks.

https://www.reddit.com/dev/api/

Hacker News

Similar to reddit, but different. Hacker News has posts, comments, and voting. You can use a firebase client for real time updates. Supports CORS.

https://github.com/HackerNews/API

Github

All sorts of information about github repos, including issues. It can be used for learning new frontend frameworks.

https://developer.github.com/v3/

Imgur

Upload and browse images. It can be used similarly to s3, limited to images, but it's free and fast.

https://api.imgur.com/endpoints

themoviedb

Lots of information about movies. You can create some cool movie listing sites with it.

https://www.themoviedb.org/documentation/api

ifconfig.me

Get your public ip and related info.

http://ifconfig.me/

Gist

Create and read gists. It can be used to store arbitrary text. Supports CORS. It deserves a special mention.

https://developer.github.com/v3/gists/

swapi

Lots of starwars info.

http://swapi.co/

pokeapi

Building a pokédex is fun and nostalgic, and you can do much more with this free api.

http://pokeapi.co/

crossorigin.me

There are many sites like it, but this is the first result on google. It allows accessing web resources without getting cross origin errors. For example, you could use it to access this lorem ipsum text file. Sometimes the site crashes, so don't use it for anything too critical.

https://crossorigin.me/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment