Socket
Socket
Sign inDemoInstall

unof-quizlet-api

Package Overview
Dependencies
77
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    unof-quizlet-api

An API that scrapes Quizlet Study Sets and returns Study Set terms and definitions. Great for high scale educational applications!


Version published
Weekly downloads
8
increased by700%
Maintainers
1
Install size
3.09 MB
Created
Weekly downloads
 

Readme

Source

Quizlet API

An API that scrapes Quizlet Study Sets and returns Study Set terms and definitions. Great for high scale educational applications!

Add the API to your project!

const quizlet = require('unof-quizlet-api');
import quizlet from 'unof-quizlet-api'

Code Sample

async function getQuizlet() { 
     const { data } = await quizlet('https://quizlet.com/20384381/apush-chapter-35-flash-cards/'); 
     console.log(data); 
}

getQuizlet()
const quizlet = require('unof-quizlet-api'); 

quizlet('https://quizlet.com/20384381/apush-chapter-35-flash-cards/')
   .then(data => console.log(data));

API Output

{
  title: 'Biology Honors Terms Flashcards | Quizlet',
  author: 'HelloSP',
  cards: [
    {
      term: 'Photosynthesis',
      definition: 'Conversion of light energy from the sun into chemical energy.'
    },
    {
      term: 'cellular respiration',
      definition: 'Process that releases energy by breaking down glucose and other food molecules in the presence of oxygen'
    }
  ]
}

Why you can use this?

Educational applications sometimes need information from Quizlet but can not do so easily, so this API can help convert the Quizlets into easier, JSON format.

License

ISC

Keywords

FAQs

Last updated on 16 Jan 2022

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc