Skip to content

An API made to simplify tasks for retrieving information from quizlet sets. More to be added soon.

License

Notifications You must be signed in to change notification settings

amin-codes/QuizletAPI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 

Repository files navigation

QuizletAPI

An API made to simplify tasks for retrieving information from quizlet sets.

Note: The official Quizlet API has been discontinued and, thus, this unofficial tool to connect to their API no longer works.

Example Usage

package com.example;

import com.example.package.where.api.is.located.QuizletAPI;

public class Example
{
  public static final String CLIENT_ID = "YOUR_CLIENT_ID";

  public static void main(String[] args)
  {
    String set_id = "234104177"; //Random quizlet set I found online. I am not the owner/creator of it.
    
    QuizletAPI api = new QuizletAPI(CLIENT_ID, set_id);
    
    //Now you can use all public methods within the QuizletAPI class.
    //For example:
    System.out.println(api.getTerms().get(0)); //Carbon
  }
  
}

About

An API made to simplify tasks for retrieving information from quizlet sets. More to be added soon.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages