Understanding And Using REST APIs
- 14 min read
- API,REST API,JavaScript
- Share onTwitter, LinkedIn
There’s a high chance you came across the term “REST API” if you’ve thought about getting data from another source on the internet, such as Twitter or Github. But what is a REST API? What can it do for you? How do you use it?
In this article, you’ll learn everything you need to know about REST APIs to be able to read API documentations and use them effectively.
Part Of: Rest API & GraphQL
- Understanding And Using REST APIs
- Consuming REST APIs In React With Fetch And Axios
- A GraphQL Primer: Why We Need A New Kind Of API (Part 1)
- A GraphQL Primer: The Evolution Of API Design (Part 2)
- Introducing The Component-Based API
- Also,subscribe to our newsletter to not miss the next ones.
MeetSmashing Workshops onfront-end, design & UX, with practical takeaways, live sessions,video recordings and a friendly Q&A. With Brad Frost, Stéph Walter andso many others.
Jump to the workshops ↬What Is A REST API
Let’s say you’re trying to find videos about Batman on Youtube. You open up Youtube, type “Batman” into a search field, hit enter, and you see a list of videos about Batman. A REST API works in a similar way. You search for something, and you get a list of results back from the service you’re requesting from.
AnAPI is an application programming interface. It is a set of rules that allow programs to talk to each other. The developer creates the API on the server and allows the client to talk to it.
REST determines how the API looks like. It stands for “Representational State Transfer”. It is a set of rules that developers follow when they create their API. One of these rules states that you should be able to get a piece of data (called a resource) when you link to a specific URL.
Each URL is called arequest while the data sent back to you is called aresponse.
The Anatomy Of A Request
It’s important to know that a request is made up of four things:
- The endpoint
- The method
- The headers
- The data (or body)
The endpoint (or route) is the url you request for. It follows this structure:
root-endpoint/? Theroot-endpoint is the starting point of the API you’re requesting from. The root-endpoint ofGithub’s API ishttps://api.github.com while the root-endpointTwitter’s API ishttps://api.twitter.com.
Thepath determines the resource you’re requesting for. Think of it like an automatic answering machine that asks you to press 1 for a service, press 2 for another service, 3 for yet another service and so on.
You can access paths just like you can link to parts of a website. For example, to get a list of all posts tagged under “JavaScript” on Smashing Magazine, you navigate tohttps://www.smashingmagazine.com/tag/javascript/.https://www.smashingmagazine.com/ is the root-endpoint and/tag/javascript is the path.
To understand what paths are available to you, you need to look through the API documentation.For example, let’s say you want to get a list of repositories by a certain user through Github’s API. Thedocs tells you to use the the following path to do so:
/users/:username/reposAny colons (:) on a path denotes a variable. You should replace these values with actual values of when you send your request. In this case, you should replace:username with the actual username of the user you’re searching for. If I’m searching for my Github account, I’ll replace:username withzellwk.
The endpoint to get a list of my repos on Github is this:
https://api.github.com/users/zellwk/reposThe final part of an endpoint isquery parameters. Technically, query parameters are not part of the REST architecture, but you’ll see lots of APIs use them. So, to help you completely understand how to read and use API’s we’re also going to talk about them.Query parameters give you the option to modify your request with key-value pairs. They always begin with a question mark (?). Each parameter pair is then separated with an ampersand (&), like this:
?query1=value1&query2=value2When you try to get a list of a user’s repositories on Github, you add three possible parameters to your request to modify the results given to you:

If you’d like to get a list the repositories that I pushed to recently, you can setsort topush.
https://api.github.com/users/zellwk/repos?sort=pushedHow do you know if this endpoint works? Well, it’s time to give it a try!
Testing Endpoints With curl
You can send a request with any programming language. JavaScript users can use methods like theFetch API andjQuery’s Ajax method; Ruby users can useRuby’s Net::HTTP class, Python users can usePython Requests; and so on.
For this article, we’ll use the command line utility calledcURL. We use cURL because API documentations are normally written with reference to cURL. If you understand how to use cURL, you’ll have no problems understanding API documentations. Then, you can easily perform requests with your preferred language.
Before you continue, you’ll want to make sure you have cURL installed on your machine. Open up your Terminal and typecurl -version. This command checks the version of cURL you have installed on your system.
curl --versionIf you don’t have cURL installed, you’ll get a “command not found” error. If you get this error, you will need toinstall curl before moving on.
To use cURL, you typecurl, followed by the endpoint you’re requesting for. For example, to get Github’s root endpoint, you type the following:
curl https://api.github.comOnce you hit enter, you should get a response from Github that looks like this:

To get a list of a user’s repositories, you modify the endpoint to the correct path, like what we discussed above. To get a list of my repositories, you can use this command:
curl https://api.github.com/users/zellwk/reposIf you wish to include query parameters with cURL, make sure you prepend a backslash (\) before the? and= characters. This is because? and= are special characters in the command line. You need to use\ before them for the command line to interpret them as normal characters:
curl https://api.github.com/users/zellwk/repos\?sort\=pushedTry using either commands and perform a request! You’ll get a similar response to what you’ve seen with Github’s root-endpont (but with a lot more data).
JSON
JSON (JavaScript Object Notation) a common format for sending and requesting data through a REST API. The response that Github sends back to you is also formatted as JSON.
A JSON object looks like a JavaScript Object. In JSON, each property and value must be wrapped with double quotation marks, like this:
{ "property1": "value1", "property2": "value2", "property3": "value3"}Back To The Anatomy Of A Request
You’ve learned that a request consists of four parts.
- The endpoint
- The method
- The headers
- The data (or body)
Let’s go through the rest of what makes up a request.
The Method
The method is the type of request you send to the server. You can choose from these five types below:
GETPOSTPUTPATCHDELETE
These methods provide meaning for the request you’re making. They are used to perform four possible actions:Create,Read,Update andDelete (CRUD).
| Method Name | Request Meaning |
|---|---|
| `GET` | This request is used to get a resource from a server. If you perform a `GET` request, the server looks for the data you requested and sends it back to you. In other words, a `GET` request performs a `READ` operation. This is the default request method. |
| `POST` | This request is used to create a new resource on a server. If you perform a `POST` request, the server creates a new entry in the database and tells you whether the creation is successful. In other words, a `POST` request performs an `CREATE` operation. |
| `PUT` and `PATCH` | These two requests are used to update a resource on a server. If you perform a `PUT` or `PATCH` request, the server updates an entry in the database and tells you whether the update is successful. In other words, a `PUT` or `PATCH` request performs an `UPDATE` operation. |
| `DELETE` | This request is used to delete a resource from a server. If you perform a `DELETE` request, the server deletes an entry in the database and tells you whether the deletion is successful. In other words, a `DELETE` request performs a `DELETE` operation. |
The API lets you know what request method to use each request. For example, to get a list of a user’s repositories, you need aGET request:

A GET request is required to get a list of repositories from a user. Tocreate a new Github repository, you need aPOST request:

You can set the request method in cURL by writing-X or--request, followed by the request method. This command below tries to create a repository via cURL:
curl -X POST https://api.github.com/user/reposTry running this request. You’ll get a response that tells you that authentication is required. (More on authentication later).
{ "message": "Requires authentication", "documentation_url": "https://developer.github.com/v3"}The Headers
Headers are used to provide information to both the client and server. It can be used for many purposes, such as authentication and providing information about the body content. You can find a list of valid headers on MDN’sHTTP Headers Reference.
HTTP Headers are property-value pairs that are separated by a colon. The example below shows a header that tells the server to expect JSON content.
"Content-Type: application/json". Missing the opening ".You can send HTTP headers with curl through the-H or--header option. To send the above header to Github’s API, you use this command:
curl -H "Content-Type: application/json" https://api.github.com(Note: the Content-Type header is not a requirement for Github’s API to work. This is only an example to illustrate how to use a header with cURL).
To view headers you’ve sent, you can use the-v or--verbose option as you send the request, like this:
curl -H "Content-Type: application/json" https://api.github.com -v
Here,* refers to additional information provided by cURL.> refers to request headers, and< refers to the response headers.
The Data (Or “Body”)
The data (sometimes called “body” or “message”) contains information you want to be sent to the server. This option is only used withPOST,PUT,PATCH orDELETE requests.
To send data through cURL, you can use the-d or--data option:
curl -X POST <URL> -d property1=value1To send multiple data fields, you can create multiple-d options:
curl -X POST <URL> -d property1=value1 -d property2=value2If it makes sense, you can break your request into multiple lines\ to make it easier to read:
curl -X POST <URL> \ -d property1=value1 \ -d property2=value2If you know how to spin up a server, you can make an API and test your own data. If you don’t know, but feel courageous enough to try, you can followthis article to learn to create a server with Node, Express, and MongoDB
If you don’t want to spin up your server, you can go toRequestbin.com (it’s free!) and click on the “create endpoint”. You’ll be given a URL that you can use to test requests, likehttps://requestb.in/1ix963n1 shown in the picture below.

Make sure you create your own request bin if you want to test your request. Request bins only remains open for 48 hours after its creation. By the time you read this article, the bin I created above will be long gone.
Now, try sending some data to your request bin, then refresh your bin’s webpage. You’ll see some data, like this:
curl -X POST https://requestb.in/1ix963n1 \ -d property1=value1 \ -d property2=value2
By default, cURL sends data as if they’re sent through “form fields” on a page. If you wish to send JSON data, you’ll need to set theContent-Type toapplication/json, and you’ll need to format your data as a JSON object, like this:
curl -X POST https://requestb.in/1ix963n1 \ -H "Content-Type: application/json" \ -d '{ "property1":"value1", "property2":"value2"}'
And that is (almost!) everything you need to know about the structure of a request.
Now, remember when you tried to send aPOST request through Github’s API, you got a message that says “Requires authentication”? Well, that’s because you’re not authorized to perform thePOST request!
Authentication
You wouldn’t allow anyone to access your bank account without your permission, would you? On the same line of thought, developers put measures in place to ensure you perform actions only when you’re authorized to do. This prevents others from impersonating you.
SincePOST,PUT,PATCH andDELETE requests alter the database, developers almost always put them behind an authentication wall. In some cases, aGET request also requires authentication (like when you access your bank account to check your current balance, for example).
On the web, there are two main ways to authenticate yourself:
- With a username and password (also called basic authentication)
- With a secret token
The secret token method includesoAuth, which lets you to authenticate yourself with social media networks like Github, Google, Twitter, Facebook, etc.
For this article, you’ll only learn to use basic authentication with a username and a password. If you’re interested in authenticating with oAuth, I suggest reading “What You Need To Know About OAuth2 And Logging In With Facebook” byZack Grossbart.
To perform a basic authentication with cURL, you can use the-u option, followed by your username and password, like this:
curl -x POST -u "username:password" https://api.github.com/user/reposTry authenticating yourself with your username and password in the above request. Once you succeed in authentication, you’ll see the response change from “Requires authentication” to “Problems parsing JSON.”
This is because you’ve yet to provide any data (which is required by allPOST,PUT,PATCH andDELETE requests) to the server.
With the knowledge you’ve learned so far, you should be able to edit the code above to create a Github repository via your cURL. I’d leave you to try it yourself!
Now, let’s talk about HTTP Status codes and error messages.
HTTP Status Codes And Error Messages
Some of the messages you’ve received earlier, like “Requires authentication” and “Problems parsing JSON” are error messages. They only appear when something is wrong with your request.HTTP status codes let you tell the status of the response quickly. The range from 100+ to 500+. In general, the numbers follow the following rules:
- 200+ means the request hassucceeded.
- 300+ means the request isredirected to another URL
- 400+ means anerror that originates from the client has occurred
- 500+ means anerror that originates from the server has occurred
You can debug the status of a response with the verbose option (-v or--verbose) or the head option (-I or--head).
For example, if you tried adding-I to aPOST request without providing your username and password, you’ll get a 401 status code (Unauthorized):

If your request is invalid because your data is wrong or missing, you usually get a 400 status code (Bad Request).

To get more information about specific HTTP status codes, you may want to consult MDN’sHTTP Status Reference.
API Versions
Developers update their APIs from time to time. Sometimes, the API can change so much that the developer decides to upgrade their API to another version. If this happens, and your application breaks, it’s usually because you’ve written code for an older API, but your request points to the newer API.
You can request for a specific API version in two ways. Which way you choose depends on how the API is written.
These two ways are:
- Directly in the endpoint
- In a request header
Twitter, for example, uses the first method. At the time of writing, Twitter’s API is at version 1.1, which is evident through its endpoint:
https://api.twitter.com/1.1/account/settings.jsonGithub, on the other hand, uses the second method. At the time of writing, Github’s API is at version 3, and you can specify the version with anAccept header:
curl https://api.github.com -H Accept:application/vnd.github.v3+jsonWrapping Up
In this article, you learned what a REST API is and how to use cURL to perform a request withGET,POST,PUT,PATCH andDELETE methods. In addition, you also learned how to authenticate your requests with the-u option, and what HTTP statuses mean.
I hope this article has helped you learn enough about REST APIs, and you can use them fluently as you create your applications. Feel free to pop over to myblog or leave your comments below if you have any questions.
Further Reading
- Generating Real-Time Audio Sentiment Analysis With AI
- SolidStart: A Different Breed Of Meta-Framework
- Consuming REST APIs In React With Fetch And Axios
- Web Development Is Getting Too Complex, And It May Be Our Fault


SurveyJS: White-Label Survey Solution for Your JS App

Save 60% on Vue School Black Friday Sale
Agent Ready is the new Headless