What To Read

Description: Provides book recommendations and reading suggestions based on interests and genres.

API Response Structure:

{
  "recommendations": [
    {
      "title": "Book Title",
      "author": "Author Name",
      "genre": ["Fiction", "Mystery"],
      "rating": 4.5,
      "reviews": "10,000+",
      "summary": "Brief book description...",
      "publishYear": "2023",
      "availability": {
        "ebook": true,
        "audiobook": true,
        "physical": true
      }
    }
  ],
  "categories": [
    {
      "name": "Best Sellers",
      "books": []
    },
    {
      "name": "New Releases",
      "books": []
    }
  ],
  "type": "instantAnswers",
  "configType": "whatToRead"
}

Fields:

  • recommendations (array): Recommended books

    • title (string): Book title

    • author (string): Author name

    • genre (array): Book genres

    • rating (number): Average rating

    • reviews (string): Number of reviews

    • summary (string): Book description

    • publishYear (string): Publication year

    • availability (object): Format availability

  • categories (array): Categorized recommendations

  • type (string): Always "instantAnswers"

  • configType (string): Always "whatToRead"