/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.

Primary LanguageJavaScript

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:
// GET All Records
GET '/subscribers'

// GET a specific Record
GET '/subscribers/[id]'
  1. POST Request:
// Add a Record
POST '/subscribers'
{
  "name": "String",
  "channelSubscribed": "String",
}
  1. PATCH request:
// Update a Record
PATCH '/subscribers/[id]'
{
  "name": "String",
  "channelSubscribed": "String",
}
  1. DELETE Request:
// DELETE a Record
DELETE '/subscribers/[id]'