Skip to content
This repository has been archived by the owner on May 16, 2020. It is now read-only.

Latest commit

 

History

History
37 lines (33 loc) · 1.08 KB

README.md

File metadata and controls

37 lines (33 loc) · 1.08 KB

Textbook API

Undergraduate textbook API with book details and which courses they are required for. This API shows textbook information for the current school session.

Format

{  
  "id": String,
  "isbn": String,
  "title": String,
  "edition": Number,
  "author": String,
  "image": String,
  "price": Number,
  "url": String,
  "courses":[{
    "id": String,
    "code": String,
    "requirement": String,
    "meeting_sections":[{
      "code": String,
      "instructors": [String]
    }]
  }]
}