piped-api/README.md
2023-08-03 21:14:38 +03:00

350 B

Piped API

This is the API wrapper for Piped in Node.js (Typescript).

Installation

npm i piped-api

Usage

import { PipedAPI } from "piped-api";

const api = new PipedApi("https://ytapi.dc09.ru");

let trending = await api.trending("US");

console.log(trending[0].title);