DEV Community

Cover image for  Create Your Own Quote API with Netlify Functions - Part 2
Liz Lam
Liz Lam

Posted on • Updated on

Create Your Own Quote API with Netlify Functions - Part 2

Photo by Jon Tyson on Unsplash

This is a 3 part exercise on how to create and use your own quote API with Netlify functions.

If you have been following along from Part 1, push your random-quotes project to your git hosting provider. I'm using GitHub, but other providers such as GitLab or BitBucket will work as well.

  1. Install the Netlify app on GitHub
  2. Sign up for a Netlify account.
  3. Once you're logged in, click on the New site from git button.
  4. Click on the GitHub button
  5. Authorize Netlify to have access to your GitHub account
  6. Search for and select the random-quotes repository.
  7. Fill in the following: Build command: yarn build. Publish directory: build.
  8. Click on Deploy site

Once the deploy is finish, you should see a unique Netlify URL that looks something like this:
https://gracious-jones-94f7bb.netlify.app

Test your deployed API by navigating to:
https://gracious-jones-94f7bb.netlify.app/.netlify/functions/quotes

If you see a quote, congratulations! You've deployed your first Netlify Function with usable quote API!

NOTE: Your exact URL will be unique to you.

In the next and final section, we will use this API to display a quote in our React app.

Top comments (0)