FNovels

Api Documentation

Welcome to Fnovels documentation.
This api let you use our service and get novels data for free to use for your own.



Use Own Host

Host your own api by deploying on vercel.


Deploy


Get Started

FNovels is a powerful downloader for novels in epub/pdf format. This api allow anyone to use it's service for free. Get started on using this api.

Request Latest Data
// Example request
https://jellee.vercel.app/novel/jellee/latest?page=1&perPage=1
Request Popular Data
// Example request
https://jellee.vercel.app/novel/jellee/popular?page=1&perPage=1
Request Most Rated Data
// Example request
https://jellee.vercel.app/novel/jellee/most-rated?page=1&perPage=1
Request Publisher Data
// Example request
https://jellee.vercel.app/novel/jellee/publisher?query=yen press&page=1&perPage=1
Request Filter Data
// Example request
// Example choices for type= [all, popularity, ratings]
// Example for genre= romance,drama,action
https://jellee.vercel.app/novel/jellee/filter?type=all&genre=romance&page=1&perPage=1
Request Search Data
// Example request
https://jellee.vercel.app/novel/jellee/search?query=angel next door&page=1&perPage=1
Request Recommendations Data
// Example request with id
https://jellee.vercel.app/novel/jellee/recommendation?id={id}&page=1&perPage=10
Request Response
// Example Successful Response
{
  "success": true,
  "total": 103,
  "page": 1,
  "perPage": 1,
  "data": [
    {
      "id": "",
      "title": "",
      "cover": "",
      "status": "",
      "type": "",
      "translation": "",
      "genres": [],
      "rating": "0",
      "popularity": "0",
      "synopsis": ""
      }
    ]
}
Request Info Data
// Example request by id
https://jellee.vercel.app/novel/jellee/info?id={id}
Request Response
// Example Successful Response
{
  "success": true,
  "data": {
    "id": "",
    "title": "",
    "cover": "",
    "status": "",
    "type": "",
    "translation": "",
    "genres": [],
    "anilist": {
      "rating": "",
      "popularity": ""
    },
    "synopsis": "",
    "volumes": [
      {
        "number": "",
        "epub": "",
        "pdf": ""
      }
    ]
  }
}
Request Volumes Data
// Example request with id
https://jellee.vercel.app/novel/jellee/volumes?id={id}&page=1&perPage=10
Request Response
// Example Successful Response
{
  "success": true,
  "total": 2,
  "page": 1,
  "perPage": 10,
  "data": [
    {
      "number": "",
      "epub": "",
      "pdf": ""
    }
  ]
}


Noted: Download link extracted as google drive id. Add https://drive.google.com/uc?export=download&id={id} for direct download file