https://github.com/codelikeagirl29/moviedex-api
https://github.com/codelikeagirl29/moviedex-api
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/codelikeagirl29/moviedex-api
- Owner: CodeLikeAGirl29
- Created: 2022-07-12T03:23:21.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-12T03:49:34.000Z (almost 4 years ago)
- Last Synced: 2024-12-05T02:07:59.923Z (over 1 year ago)
- Language: JavaScript
- Homepage: moviedex-api-silk.vercel.app
- Size: 24.4 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Moviedex API


## Requirements
Users can search for Movies by genre, country or avg_vote
- The endpoint is GET /movie
- The search options for genre, country, and/or average
vote are provided in query string parameters.
- When searching by genre, users are searching for
whether the Movie’s genre includes a specified string.
The search should be case insensitive.
- When searching by country, users are searching for
whether the Movie’s country includes a specified
string. The search should be case insensitive.
- When searching by average vote, users are searching
for Movies with an `avg_vote` that is greater than or
equal to the supplied number.
- The API responds with an array of full movie entries
for the search results
- The endpoint only responds when given a
valid Authorization header with a Bearer API token value.
- The endpoint should have general security in place such
as best practice headers and support for CORS.