/swapi-api

a small set of rest API endpoints using NodeJS that can be used for listing the names of Star Wars movies along with their opening crawls and comment counts, adding and listing anonymous comments for a movie, and getting the character list for a movie.

Primary LanguageJavaScript

SWAPI-API

a small set of rest API endpoints using NodeJS that can be used for listing the names of Star Wars movies along with their opening crawls and comment counts, adding and listing anonymous comments for a movie, and getting the character list for a movie.

API Endpoints

Get all movies in json format.
Get all Characters in json format
Get all comments in json format
POST request to add comment to database
Post request json format

{ "comment": "my first comment" }

TO BE UPDATED.