Skip to content
This repository has been archived by the owner on Nov 21, 2022. It is now read-only.

comic id

Meir edited this page Jul 19, 2021 · 6 revisions

GET /comic/:id

  • Description: Get information about a specific comic with a given ID.
  • Request Parameters/Queries:
Parameter Type Description
id string The comic ID.
  • Response Parameters:

This parameters table only explain objects in the data object. For the parent object response parameters, go to the Normal API Response page.

The parameters with the (*) mark means that these parameters are optional.

Name Type Description
name string The name of the comic.
image_url string The wallpaper image URL.
uploaders array(object) - uploaders.id (int): The name of the uploader.
- uploaders.name (string): The name of the uploader.
other_names (*) array(object) - other_names.name (string): The other name.
- other_names.link (string): The URL leads to search page of the other name.
tags array(object) - tags.name (string): The tag name.
- tags.link (string): The URL leads to search page of the tag.
- tags.tag (string): The code to be used in the tag endpoint.
authors array(object) - authors.name (string): The author name.
- authors.link (string): The URL leads to search page of the author.
characters (*) array(object) - characters.name (string): The character name.
- characters.link (string): The URL leads to search page of the character.
doujins (*) array(object) - doujins.name (string): The doujinshi name.
- doujins.link (string): The URL leads to search page of the doujinshi.
credits string The comic's custom credits.
completed boolean Whether the comic was completed or not.
views integer The comic's current views.
other_parts (*) array(object) - other_parts.name (string): The other part comic name.
- doujins.link (string): The URL leads to other part comic page.
download_link (*) string The comic's download URL.
group_external_link (*) string The external URL of the translation group.
likes integer The comic's current likes.
dislikes integer The comic's current dislikes.
chapters array(object) - chapters.name (string): The chapter name.
- chapters.link (string): The URL leads to the chapter link.
- chapters.upload_date (string): The chapter's upload date.
- chapters.code (string): The chapter's code to be used in the read endpoint.

Example success response

GET /comic/8606

This response was done by myself in July 19, 2021 at 6:19 PM (GMT +7).

{
    "success": true,
    "url": "https://hentaivn.tv/8606-doc-truyen-.html",
    "ping": "637ms",
    "data": {
        "name": "Tôi Cứu Được Một Bé Elf Loli Ở Thế Giới Khác",
        "image_url": "https://t.htvncdn.net/images/190/zx-toi-cuu-duoc-mot-be-elf-loli-o-the-gioi-khac.jpg",
        "uploaders": [{
            "id": 11066,
            "name": "Hagito Neko"
        }, {
            "id": 6939,
            "name": "NekoRakuen"
        }],
        "other_names": [{
            "name": "Isekai de Loli Elf Tasuketara Kou Natta",
            "link": "https://hentaivn.tv/ten-khac/isekai+de+loli+elf+tasuketara+kou+natta"
        }, {
            "name": "I Saved a Loli Elf in Another World and This Happened",
            "link": "https://hentaivn.tv/ten-khac/i+saved+a+loli+elf+in+another+world+and+this+happened"
        }],
        "tags": [{
            "name": "Che ít",
            "link": "https://hentaivn.tv/the-loai-101-che_it.html",
            "tag": "101-che_it"
        }, {
            "name": "Elf",
            "link": "https://hentaivn.tv/the-loai-125-elf.html",
            "tag": "125-elf"
        }, {
            "name": "Fantasy",
            "link": "https://hentaivn.tv/the-loai-123-fantasy.html",
            "tag": "123-fantasy"
        }, {
            "name": "Loli",
            "link": "https://hentaivn.tv/the-loai-63-loli.html",
            "tag": "63-loli"
        }, {
            "name": "Oneshot",
            "link": "https://hentaivn.tv/the-loai-71-oneshot.html",
            "tag": "71-oneshot"
        }, {
            "name": "Small Boobs",
            "link": "https://hentaivn.tv/the-loai-84-small_boobs.html",
            "tag": "84-small_boobs"
        }, {
            "name": "Tsundere",
            "link": "https://hentaivn.tv/the-loai-111-tsundere.html",
            "tag": "111-tsundere"
        }, {
            "name": "Virgin",
            "link": "https://hentaivn.tv/the-loai-95-virgin.html",
            "tag": "95-virgin"
        }],
        "group": {
            "name": "Loli Rules The World",
            "link": "https://hentaivn.tv/g/LoliRulesTheWorld"
        },
        "authors": [{
            "name": "Noise",
            "link": "https://hentaivn.tv/tacgia=noise.html"
        }],
        "credits": "Trans: Hagito Neko + Snowrita Irine | Edit: NekoRakuen",
        "completed": true,
        "views": 178079,
        "other_parts": [{
            "name": "Tôi Cứu Được Một Bé Elf Loli Ở Thế Giới Khác Ep.100",
            "link": "https://hentaivn.tv/11117-doc-truyen-toi-cuu-duoc-mot-be-elf-loli-o-the-gioi-khac-ep-100.html"
        }],
        "group_external_link": "https://www.facebook.com/LoliRulesTheWorldTeam/",
        "description": "Kể từ 1 tuần tôi đến thế giới khác, tại đây tôi đã trở thành một mạo hiểm giả, trong lúc làm nhiệm vụ tôi đã cứu được một bé elf loli.",
        "likes": 1483,
        "dislikes": 51,
        "chapters": [{
            "name": "Oneshot",
            "link": "https://hentaivn.tv/8606-17247-xem-truyen-toi-cuu-duoc-mot-be-elf-loli-o-the-gioi-khac-oneshot.html",
            "upload_date": "17/07/2017",
            "code": "8606-17247-xem-truyen-toi-cuu-duoc-mot-be-elf-loli-o-the-gioi-khac-oneshot"
        }]
    }
}
Clone this wiki locally