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.
Welcome to Fnovels documentation.
This api let you use our service and get novels data for free to use for your own.
Host your own api by deploying on vercel.
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.
// Example request
https://jellee.vercel.app/novel/jellee/latest?page=1&perPage=1
// Example request
https://jellee.vercel.app/novel/jellee/popular?page=1&perPage=1
// Example request
https://jellee.vercel.app/novel/jellee/most-rated?page=1&perPage=1
// Example request
https://jellee.vercel.app/novel/jellee/publisher?query=yen press&page=1&perPage=1
// 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
// Example request
https://jellee.vercel.app/novel/jellee/search?query=angel next door&page=1&perPage=1
// Example request with id
https://jellee.vercel.app/novel/jellee/recommendation?id={id}&page=1&perPage=10
// Example Successful Response
{
"success": true,
"total": 103,
"page": 1,
"perPage": 1,
"data": [
{
"id": "",
"title": "",
"cover": "",
"status": "",
"type": "",
"translation": "",
"genres": [],
"rating": "0",
"popularity": "0",
"synopsis": ""
}
]
}
// Example request by id
https://jellee.vercel.app/novel/jellee/info?id={id}
// Example Successful Response
{
"success": true,
"data": {
"id": "",
"title": "",
"cover": "",
"status": "",
"type": "",
"translation": "",
"genres": [],
"anilist": {
"rating": "",
"popularity": ""
},
"synopsis": "",
"volumes": [
{
"number": "",
"epub": "",
"pdf": ""
}
]
}
}
// Example request with id
https://jellee.vercel.app/novel/jellee/volumes?id={id}&page=1&perPage=10
// Example Successful Response
{
"success": true,
"total": 2,
"page": 1,
"perPage": 10,
"data": [
{
"number": "",
"epub": "",
"pdf": ""
}
]
}