Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mdtehseenkhan/subscribers-api
A simple REST API that helps you remember the YouTube channels you've subscribed to. It can be your personal assistant, if you want to make it private and want some changes in the API, I will do this for you.
https://github.com/mdtehseenkhan/subscribers-api
expressjs javascript mongodb mongodb-atlas mongoose nodejs
Last synced: about 5 hours ago
JSON representation
A simple REST API that helps you remember the YouTube channels you've subscribed to. It can be your personal assistant, if you want to make it private and want some changes in the API, I will do this for you.
- Host: GitHub
- URL: https://github.com/mdtehseenkhan/subscribers-api
- Owner: MdTehseenKhan
- Created: 2023-01-10T13:25:22.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-10T14:48:18.000Z (about 2 years ago)
- Last Synced: 2024-11-13T19:42:49.190Z (2 months ago)
- Topics: expressjs, javascript, mongodb, mongodb-atlas, mongoose, nodejs
- Language: JavaScript
- Homepage: https://subscribers-api.vercel.app
- Size: 42 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Subscribers API:
A simple REST API that helps you remember the YouTube channels you've subscribed to. It can be your personal assistant, if you want to make it `private` and want some changes in the API, I will do this for you. Contact me to buy it.
## Endpoints:
Currently hosted on https://subscribers-api.vercel.app/
1. GET Requests:
```js
// GET All Records
GET '/subscribers'// GET a specific Record
GET '/subscribers/[id]'
```2. POST Request:
```js
// Add a Record
POST '/subscribers'
{
"name": "String",
"channelSubscribed": "String",
}
```3. PATCH request:
```js
// Update a Record
PATCH '/subscribers/[id]'
{
"name": "String",
"channelSubscribed": "String",
}
```4. DELETE Request:
```js
// DELETE a Record
DELETE '/subscribers/[id]'
```