Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

better-youtube-api

Package Overview
Dependencies
Maintainers
1
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

better-youtube-api

A very easy to use promise-based Youtube Data v3 API.

  • 1.0.5
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
7
decreased by-66.67%
Maintainers
1
Weekly downloads
 
Created
Source

Better YouTube API

Want to access data from the YouTube Data v3 API? Want a Node.js YouTube API wrapper with typings, promises, and caching? No problem! We've got ya covered. npm i better-youtube-api

GitHub issues GitHub stars GitHub license Coverage Status Actions Status

Examples

First of all, I recommend that you check out the documentation for all of the methods and what they return. Here are some basic methods:

Instantiate the object:

const { YouTube } = require('better-youtube-api')
const youtube = new YouTube(apiKey)

Instantiate the object without caching:

const { YouTube } = require('better-youtube-api')
const youtube = new YouTube(apiKey, { cache: false })

Get a video by ID:

const video = await youtube.getVideo('dQw4w9WgXcQ')
console.log(video)

Get a video by URL:

const video = await youtube.getVideoByUrl('https://youtube.com/watch?v=dQw4w9WgXcQ')
console.log(video)

You can do the same thing with playlists, channels, and comments by replacing Video with either one.

Note 1: By using better-youtube-api, you are agreeing to be bound to the YouTube ToS.

Note 2: This wrapper does not implement every feature of the YouTube API. With a single developer working on it, there just isn't time for everything to be implemented. Some of the objectively most-important features have been added. The limits imposed by the wrapper are not imposed by YouTube.

Privacy Policy

better-youtube-api uses YouTube API services.
No personal user information is stored by the client.
Public channel/video/playlist/comment data is stored by the client for an amount of time editable by the user. This amount of time defaults to 10 minutes.
The client stores public channel data explicitly and/or implicitly (requesting video stores the uploader's ID, etc.) requested by the user.
Follows the Google Privacy Policy.

Keywords

FAQs

Package last updated on 17 Sep 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc