4Geeks logo
4Geeks logo

Bootcamps

Explore our extensive collection of courses designed to help you master various subjects and skills. Whether you're a beginner or an advanced learner, there's something here for everyone.

Academy

Learn live

Join us for our free workshops, webinars, and other events to learn more about our programs and get started on your journey to becoming a developer.

Upcoming live events

Learning library

For all the self-taught geeks out there, here is our content library with most of the learning materials we have produced throughout the years.

It makes sense to start learning by reading and watching videos about fundamentals and how things work.

Full-Stack Software Developer - 16w

Data Science and Machine Learning - 16 wks

Search from all Lessons


LoginGet Started
← Back to Projects

Build a StarWars REST API

Difficulty

  • easy

Average duration

8 hrs

Technologies

  • REST

  • Python

    Flask

  • APIs

Difficulty

  • easy

Average duration

8 hrs

Technologies

Signup and get access to similar projects

We will use it to give you access to your account.
Already have an account? Login here.

Difficulty

  • easy

Average duration

8 hrs

Technologies

Difficulty

  • easy

Average duration

8 hrs

Technologies

Weekly Coding Challenge

Every week, we pick a real-life project to build your portfolio and get ready for a job. All projects are built with ChatGPT as co-pilot!

Start the Challenge

Podcast: Code Sets You Free

A tech-culture podcast where you learn to fight the enemies that blocks your way to become a successful professional in tech.

Listen the podcast

StarWars Blog API

It is recommended to develop this project in conjuntion with the StartWars Blog Reading List, you will eventually integrate both projects and have fully functional applications with backend and front-end.

Today we are going to build one API to manage a blog (about StartWars), users on this blog will be able to list planets, list characters, and create or remove favorites.

To allow users to do all of this, we must follow these steps:

  1. Start by modeling the database: Create a database and the tables needed to store that information, you may have already done this when you did the StartWars DataModeling project in python/flask or node/express
  2. Build your endpoints using Flask or Express (depending on your cohort's main language).
  3. Constantly test your endpoints with the postman.

🌱 How to start this project

Do not clone this repository because we are going to be using a different template.

We recommend opening the flask or the ``express.js boilerplateusing a provisioning tool like [Codespaces](https://4geeks.com/lesson/what-is-github-codespaces) (recommended) or [Gitpod](https://4geeks.com/lesson/how-to-use-gitpod). Alternatively, you can clone it on your local computer using thegit clone` command.

These are the repositories you need to open or clone:

For Python/Flask:
https://github.com/4GeeksAcademy/flask-rest-hello

For Node/Express.js:
https://github.com/4GeeksAcademy/expressjs-rest-hell

(you will need to have a database installed and python 3.7+ installed if you do it locally but all of that it's already installed on Gitpod)

The boiplerplate's README files has a video on how to start and complete your API.

🐍 For python: There is an interactive tutorial on how to build a Flask API, it's a similar process but instead of tasks here you will be dealing with people and planets.

πŸ‘‰ Please follow these steps on how to start a coding project.

πŸ’‘ Important: Remember to save and upload your code to GitHub by creating a new repository, updating the remote (git remote set-url origin <your new url>), and uploading the code to your new repository using the add, commit and push commands from the git terminal.

πŸ“ Instructions

Create an API that connects to a database and implements the following Endpoints (very similar to SWAPI.dev or SWAPI.tech):

  • [GET] /people Get a list of all the people in the database
  • [GET] /people/<int:people_id> Get a one single people information
  • [GET] /planets Get a list of all the planets in the database
  • [GET] /planets/<int:planet_id> Get one single planet information

Additionally create the following endpoints to allow your StartWars blog to have users and favorites:

  • [GET] /users Get a list of all the blog post users
  • [GET] /users/favorites Get all the favorites that belong to the current user.
  • [POST] /favorite/planet/<int:planet_id> Add a new favorite planet to the current user with the planet id = planet_id.
  • [POST] /favorite/people/<int:people_id> Add new favorite people to the current user with the people id = people_id.
  • [DELETE] /favorite/planet/<int:planet_id> Delete favorite planet with the id = planet_id.
  • [DELETE] /favorite/people/<int:people_id> Delete favorite people with the id = people_id.
  • Your current API does not have an authentication system (yet), which is why the only way to create users is directly on the database using the flask admin.

☝️ Note: here is a sample API in Postman: https://documenter.getpostman.com/view/2432393/TzRSgnTS#a4174b48-3fc8-46e3-bf82-19a08107666f

πŸ“– Fundamentals

This exercise will make you practice the following fundamentals:

  1. Building an RESTful API using one of the most popular libraries Python Flask or Express.js.
  2. Building a database with the ORM called SQLAlchemy or TypeORM
  3. Database Migrations using migration system Alembic or the native migration system from TypeORM.

😎 Feeling confident?

The following requirements are not necessary to successfully complete this project, but you wpuld like to try coding them if you feel like challenging yourself ☺️

+1 Create also an endpoint to add (POST), update (PUT), and delete (DELETE) planets and people, that way all the database information can be managed using the API instead of having to rely on the flask admin to create the plantes and people.

This and many other projects are built by students as part of the 4Geeks Academy Coding Bootcamp by Alejandro Sanchez and many other contributors. Find out more about our Full Stack Developer Course, and Data Science Bootcamp.

Difficulty

  • easy

Average duration

8 hrs

Technologies

Difficulty

  • easy

Average duration

8 hrs

Technologies

Signup and get access to similar projects

We will use it to give you access to your account.
Already have an account? Login here.

Difficulty

  • easy

Average duration

8 hrs

Technologies

Difficulty

  • easy

Average duration

8 hrs

Technologies

Weekly Coding Challenge

Every week, we pick a real-life project to build your portfolio and get ready for a job. All projects are built with ChatGPT as co-pilot!

Start the Challenge

Podcast: Code Sets You Free

A tech-culture podcast where you learn to fight the enemies that blocks your way to become a successful professional in tech.

Listen the podcast