2

Ive been working with APIs in web dev for a couple of months now and now I think Im ready to make my own. However, im not really what what I should make an API for. Any ideas?

Comments
  • 3
    Data API? For that you first need data.

    Or maybe some kind of conversion or processing API?
  • 1
    @joas I have a good amout of microcontrollers/rasberry pis around my house. Do u think a good project would be making a API with the data from those?
  • 1
    Perhaps a troll api? Or a useless api for fun? 😛

    Like the touppercase api or the capitalize api
  • 1
    Try making a github app; no GUI required, and it has to respond to very specific github webhooks.

    The webhooks are well documented and it has the potential for wide usage. The hardest part is probably authenticating as a github application, which is probably already built for you if you want to look for it.
  • 3
    Make an API that can deliver mockdata as requested by user.
    You have some basic fields like "first name", "last name", "company name", address info etc and the user can design its own format in which you return the format with mock data.
  • 1
    @Codex404 mock as a service?
  • 0
  • 1
    You can try recreating one of these:
    https://noopschallenge.com
  • 0
    Thank you for the recommendations! I think i'm going to try to make a REST API with node.js and mongoDB. Im planning on posting another rant soon to keep you guys updated. Thank you!
Add Comment