https://github.com/andyklimczak/thereportoftheweek-api
API of The Report Of The Week Reviews
https://github.com/andyklimczak/thereportoftheweek-api
api drink food report review
Last synced: 30 days ago
JSON representation
API of The Report Of The Week Reviews
- Host: GitHub
- URL: https://github.com/andyklimczak/thereportoftheweek-api
- Owner: andyklimczak
- License: mit
- Created: 2016-04-03T04:55:55.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2025-04-21T22:41:06.000Z (about 1 month ago)
- Last Synced: 2025-05-01T12:49:46.857Z (30 days ago)
- Topics: api, drink, food, report, review
- Language: JavaScript
- Homepage: https://www.thereportoftheweekapi.com/docs
- Size: 335 KB
- Stars: 28
- Watchers: 4
- Forks: 11
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# The Report of the Week API
API to provide information on reviews by [The Report of the Week](https://www.youtube.com/user/TheReportOfTheWeek)
## Endpoints & Docs
Checkout the [OpenAPI Docs](https://thereportoftheweekapi.com/docs) for more info and to test the endpoints.
The base URL is `https://www.thereportoftheweek.com`.
## Data
This API returns all reviews done on The Report of the Week youtube channel.
All the reviews live in the [reports.json file](./data/reports.json) if you're just interested pulling in the data into your own datastore..### Example Review
```json
{
"product": "5 Hour Energy Pomegranate",
"manufacturer": "Living Essentials",
"category": "Energy Crisis",
"videoTitle": "Energy Crisis--Energy Drink Review",
"videoCode": "wyD3nCv_emI",
"dateReleased": "2011-02-20",
"rating": 7.0,
"id": "0b399d91-1673-4708-ba60-f1312b037b35"
}
```## Local Setup
In the project directory, you can run:
### `npm run dev`
To start the app in dev mode.\
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.### `npm start`
For production mode
### `npm run test`
Run the test cases.