DEV Community

Cover image for Make your own API under 30 lines of code
Shreyas Pahune
Shreyas Pahune

Posted on • Updated on

Make your own API under 30 lines of code

Hey readers πŸ‘‹πŸ», in this blog we are going to discuss about making our own API in just 30 lines of code.

Topics Covered :

  1. What is an API.

  2. Tech used to make one.

  3. How to code it.

  4. How to deploy it (FOR FREE).

Those who all know what APIs are and don't want to know anything else then 'How to code it', you can skip to that part directly.

What is an API :

API stands for Application Programming Interface, which is a way for computer to talk to each other. APIs are just like website, except the UI part, it sends a request to a server and in return the server send a response .

Most APIs which we use are RESTFUL APIs, which means they follow a set of protocols/rules .

You all already know what URLs are, but APIs use URIs which stands for Uniform Resource Identifiers and they help to differentiate between data on a server.

api

There can me many more end points, like here in the above image the end point is /names.

There are many requests we can make to the server but most common ones are :

  • GET: Reading the data.
  • POST: Creating new data.
  • PATCH: Updating new data.
  • DELETE: Delete new data.

We have talked a lot about requesting, let's talk about responses.

There is a thing called status code, which tells you about the response you got from the server. The responses can be divided into 3 levels.

  • 2** Level (200-300) : Everything was fine, the response is fetched.
  • 4** Level (400-500): There was something with our request, and the data is not fetched.
  • 5** Level (500+): Server has failed to send the data.

Tech used to make an API:

I have used :

  • JavaScript
  • Node.JS
    • Express JS
  • Replit (for deployment)

How to code an API:

This is going to be the most important part of the blog.

In this blog, I am going to make an API which returns the details of devices available at an electronic shop.

const products = [
    {
      name: 'iPhone 13',
      color: 'White',
      company: 'Apple'
    },
    {
      name: 'OnePlus 9',
      color: 'Blue',
      company: 'Oneplus'
    },
    {
      name: 'iPhone 12',
      color: 'Purple',
      company: 'Apple'
    }
]
Enter fullscreen mode Exit fullscreen mode

Above is an object which we want the API to return.

By this point I am assuming that you all have initialized npm and installed express

npm init -y (Initializes NPM)

npm i express (Install Express)

Steps :

  • Step 1: We have to import express in our project.
    • const express = require('express');
  • Step 2 : Initialize a variable to call the main express() method.
    • const app = express();
  • Step 3: Setup a port.
    • const PORT = 8080;
  • Step 4: Use a middleware to parse the data into json.
    • app.use(express.json());
  • Step 5: Add the Product Object to the file.

Till now the code looks like :

const express = require('express');
const app = express();
const PORT = 8080;
app.use(express.json());

const products = [
    {
      name: 'iPhone 13',
      color: 'White',
      company: 'Apple'
    },
    {
      name: 'OnePlus 9',
      color: 'Blue',
      company: 'Oneplus'
    },
    {
      name: 'iPhone 12',
      color: 'Purple',
      company: 'Apple'
    }
]
Enter fullscreen mode Exit fullscreen mode
  • Step 6: Make the server listen to our port / Start the server.
    • app.listen(PORT, () => console.log('server is 🟒'))
    • .listen() is a function, which starts the server and listens at the port assigned.

The code is πŸ‘‡πŸ»

const express = require('express');
const app = express();
const PORT = 8080;
app.use(express.json());

const products = [
    {
      name: 'iPhone 13',
      color: 'White',
      company: 'Apple'
    },
    {
      name: 'OnePlus 9',
      color: 'Blue',
      company: 'Oneplus'
    },
    {
      name: 'iPhone 12',
      color: 'Purple',
      company: 'Apple'
    }
]

app.listen(PORT, () => console.log(`API 🟒`))
Enter fullscreen mode Exit fullscreen mode
  • Step 7: Make a function which handles GET Requests.

    • For this we have an in-built function called as .get(resource-link, callBack-Function)
    app.get('/products', (req, res) =>{
      res.status(200).send(products)
    })
Enter fullscreen mode Exit fullscreen mode
  • Here we are setting the resource-link as /products which means the user can get the data when he heads to www.xyz.com/products.

    • In the callback function, we have 2 parameters one is for request and another is for response.
    • Now as a server, when a user sends get request we have to respond to that and send data.
    • In agreement to the above point, we are sending the data using res (response parameter).
    • To send the data we use .send() method, and additionally we are also sending the status code using .status().

That's It!! Your API is ready πŸŽ‰ and right now you can start your localhost server and head on to http://localhost:3000/products and you will be able to see the data.

How to deploy your API for FREE :

If we do not deploy our API, then what is the use of it?

Deployment in simple terms is making your API go live for 24 x 7, you can use it whenever you like.

By this point I am assuming that you all have a Replit Account

The steps are really simple :

  • Step 1: Make a new project in replit account under the section of Node.JS
  • Copy Paste the code you just wrote in your text editor / IDE.
  • On the right hand side, you'll see a package section.
    • Go inside it and download express.
  • Run the code.
  • You'll see a URI on the right hand side of the screen like this πŸ‘‡πŸ»

link

Now head on to the link and write /products or the any endpoint which you created and you'll be able to see the data in json format.


Thank you so much for reading the whole blog πŸ‘πŸ», I really appreciate it.

Till then...good bye !

Oldest comments (32)

Collapse
 
hrushikesh41 profile image
Hrushikesh Kokardekar

Good Work Shreyas and I find this very informative

Collapse
 
shreyazz profile image
Shreyas Pahune

Thanks bro

Collapse
 
thomasbnt profile image
Thomas Bnt β˜•

Simple, good post πŸ‘πŸΌ

Collapse
 
anuragdev profile image
Anurag Sharma

Great work Shreyas , and it is so informative.

Collapse
 
shreyazz profile image
Shreyas Pahune

Thanks bro, more informative blogs coming soon!

Collapse
 
tanwi2209 profile image
Tanwi Kumari

Very useful!!
Thanks for sharing :)

Collapse
 
barungh profile image
Barun Ghosh

Friend... there is a little typo , 27 x 7, I think it should be 24 x 7

Collapse
 
shreyazz profile image
Shreyas Pahune

Thanks a lot, I edited it.

Collapse
 
ahmedsouidi profile image
Ahmedsouidi

Thanks, very nice post.

Collapse
 
shreyazz profile image
Shreyas Pahune

Thanks bro

Collapse
 
mdmyr profile image
YuvaRaj Raghunapu

Thanks for sharing

Collapse
 
johntarus profile image
johntarus

Short and precise!

Collapse
 
liyasthomas profile image
Liyas Thomas

If you'd like to spin up these APIs and test them β€” try an online API development / testing platform - we're building Hoppscotch.io.

GitHub:

GitHub logo hoppscotch / hoppscotch

πŸ‘½ Open source API development ecosystem https://hoppscotch.io

Collapse
 
shreyazz profile image
Shreyas Pahune

Hey I have used this!! Have you guys tied up with Aviyel?

Collapse
 
liyasthomas profile image
Liyas Thomas

Yes we did. They're doing an amazing job on growing OSS β€οΈπŸ’―.

Collapse
 
disjohndoe profile image
disjohndoe

Very clean and simple. Thank you.

Collapse
 
krishsavani profile image
Krish Savani

Loved this one! Hoping to use my own API soon.

Collapse
 
shreyazz profile image
Shreyas Pahune

That's awesome!

Collapse
 
roljlevy profile image
Roland

Hi Shreyas, I enjoyed the article. It was simple and to the point.

For the get request I think it would be better to use .json so that the response renders as JSON, like this:

res.status(200).json(products)

Collapse
 
shreyazz profile image
Shreyas Pahune

Thanks for sharing… I didn’t know this!!

Collapse
 
roljlevy profile image
Roland

you're welcome! Will you update the article?

It's shown here in the docs: expressjs.com/en/api.html#res.json

Thread Thread
 
shreyazz profile image
Shreyas Pahune

Yup I'll surely add this in it

Thread Thread
 
roljlevy profile image
Roland

Cool :)

Collapse
 
raqibnur profile image
Raqib Nur

Thanks a lot very helpful article

Collapse
 
shubhampatilsd profile image
Shubham Patil

Sweet and simple Express. Awesome!

Collapse
 
shreyazz profile image
Shreyas Pahune

Thanks πŸ˜πŸ’―

Collapse
 
lakiramd profile image
Lakira Minlaka

great jobπŸ‘πŸ€Ÿ

Collapse
 
shreyazz profile image
Shreyas Pahune

Thanks