Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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.

Contact me

## 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]'
```