mirror of
https://github.com/artegoser/piped-api.git
synced 2025-04-06 07:37:36 +03:00
feat: trending
And all types
This commit is contained in:
parent
d407a14448
commit
7c363cd803
8 changed files with 2601 additions and 0 deletions
30
src/index.ts
Normal file
30
src/index.ts
Normal file
|
@ -0,0 +1,30 @@
|
|||
import got from "got";
|
||||
import { Video } from "./responses.interface";
|
||||
|
||||
export class PipedAPI {
|
||||
host: string;
|
||||
constructor(host: string = "https://pipedapi.kavin.rocks") {
|
||||
this.host = host;
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieves data from the specified URL.
|
||||
*
|
||||
* @param {string} url - The URL from which to retrieve data.
|
||||
* @return {Promise<any>} - A Promise that resolves to the parsed JSON data.
|
||||
*/
|
||||
private async _get(url: string) {
|
||||
const data = await got.get(`${this.host}${url}`);
|
||||
return JSON.parse(data.body);
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieves the trending videos for a specific region.
|
||||
*
|
||||
* @param {string} region - The region for which to retrieve trending videos.
|
||||
* @return {Promise<Video[]>} - A promise that resolves to an array of Video objects representing the trending videos.
|
||||
*/
|
||||
async trending(region: string): Promise<Video[]> {
|
||||
return await this._get(`/trending?region=${region}`);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue