# Manga

Warning

This data is provided by groups. We do our best to resolve duplicates, but we cannot guarantee there won't be duplicated data.

# List all Manga

You can use this endpoint to return a paginated list of all manga within the database.

# Endpoint

GET /manga

# Parameters

Name Type Description Required
search string Allows you to search for a manga using the name of the series.

# Response

{
  "data": [
    {
      "id": 1,
      "unique_id": "c932b0c7-a984-4ab6-8be5-47ea047bd692",
      "name": "The Great Mage Returns After 4000 Years",
      "slug": "2829584385-the-great-mage-returns-after-4000-years",
      "description": "The worst student of Westrod Academy, the disgrace of the Blake House. A new soul enters the lifeless body of Frey Blake, the boy who couldn’t handle his painful life and chose death instead. “What’s with this body? I’ll have to check every little detail of it.” The Great Mage Lucas Traumen. He earned his chance at revenge by gaining the flesh and bones of Frey Blake the disgrace! And now begins the interesting adventure of the Great Mage who returned after 4000 years!",
      "thumbnail_url": "https:\/\/cdn.genkan.io\/file\/genkan-io\/manga\/c932b0c7-a984-4ab6-8be5-47ea047bd692\/EPFMyb0jOeUgvR32oPLTreUihBF34jfdc96jJMA1.jpg",
      "proxy_thumbnail_url": "https:\/\/images.weserv.nl?h=420&w=320&q=100&t=absolute&errorredirect=https%3A%2F%2Fcdn.genkan.io%2Ffile%2Fgenkan-io%2Fmanga%2Fc932b0c7-a984-4ab6-8be5-47ea047bd692%2FEPFMyb0jOeUgvR32oPLTreUihBF34jfdc96jJMA1.jpg&output=webp&url=ssl%3Acdn.genkan.io%2Ffile%2Fgenkan-io%2Fmanga%2Fc932b0c7-a984-4ab6-8be5-47ea047bd692%2FEPFMyb0jOeUgvR32oPLTreUihBF34jfdc96jJMA1.jpg",
      "created_at": "2021-03-27T23:13:14.000000Z",
      "updated_at": "2021-04-22T13:24:26.000000Z",
      "is_over_18": false,
      "is_hentai": false
    },
    {
      "id": 2,
      "unique_id": "d09da603-b1ba-42cb-9d49-24102145a687",
      "name": "Aire",
      "slug": "3142174919-aire",
      "description": "A journey to find the power of the lost Queen. Their great adventure begins.",
      "thumbnail_url": "https:\/\/cdn.genkan.io\/file\/genkan-io\/manga\/d09da603-b1ba-42cb-9d49-24102145a687\/F8JeP6AAOo3Vk9EsueOJ8v5DLakrpS3c5mNejKop.jpg",
      "proxy_thumbnail_url": "https:\/\/images.weserv.nl?h=420&w=320&q=100&t=absolute&errorredirect=https%3A%2F%2Fcdn.genkan.io%2Ffile%2Fgenkan-io%2Fmanga%2Fd09da603-b1ba-42cb-9d49-24102145a687%2FF8JeP6AAOo3Vk9EsueOJ8v5DLakrpS3c5mNejKop.jpg&output=webp&url=ssl%3Acdn.genkan.io%2Ffile%2Fgenkan-io%2Fmanga%2Fd09da603-b1ba-42cb-9d49-24102145a687%2FF8JeP6AAOo3Vk9EsueOJ8v5DLakrpS3c5mNejKop.jpg",
      "created_at": "2021-03-27T23:17:45.000000Z",
      "updated_at": "2021-04-02T08:37:35.000000Z",
      "is_over_18": false,
      "is_hentai": false
    }
  ],
  "links": {
    "first": "http:\/\/genkan.io\/api\/v1\/manga?page=1",
    "last": null,
    "prev": null,
    "next": "http:\/\/genkan.io\/api\/v1\/manga?page=2"
  },
  "meta": {
    "current_page": 1,
    "from": 1,
    "path": "http:\/\/genkan.io\/api\/v1\/manga",
    "per_page": 24,
    "to": 24
  }
}

# Get Manga Details

You can use this endpoint to return details about a specific manga using the id.

# Endpoint

GET /manga/:id

# Response

{
    "data": {
        "id": 1,
        "unique_id": "c932b0c7-a984-4ab6-8be5-47ea047bd692",
        "name": "The Great Mage Returns After 4000 Years",
        "slug": "2829584385-the-great-mage-returns-after-4000-years",
        "description": "The worst student of Westrod Academy, the disgrace of the Blake House. A new soul enters the lifeless body of Frey Blake, the boy who couldn’t handle his painful life and chose death instead. “What’s with this body? I’ll have to check every little detail of it.” The Great Mage Lucas Traumen. He earned his chance at revenge by gaining the flesh and bones of Frey Blake the disgrace! And now begins the interesting adventure of the Great Mage who returned after 4000 years!",
        "thumbnail_url": "https:\/\/cdn.genkan.io\/file\/genkan-io\/manga\/c932b0c7-a984-4ab6-8be5-47ea047bd692\/EPFMyb0jOeUgvR32oPLTreUihBF34jfdc96jJMA1.jpg",
        "proxy_thumbnail_url": "https:\/\/images.weserv.nl?h=420&w=320&q=100&t=absolute&errorredirect=https%3A%2F%2Fcdn.genkan.io%2Ffile%2Fgenkan-io%2Fmanga%2Fc932b0c7-a984-4ab6-8be5-47ea047bd692%2FEPFMyb0jOeUgvR32oPLTreUihBF34jfdc96jJMA1.jpg&output=webp&url=ssl%3Acdn.genkan.io%2Ffile%2Fgenkan-io%2Fmanga%2Fc932b0c7-a984-4ab6-8be5-47ea047bd692%2FEPFMyb0jOeUgvR32oPLTreUihBF34jfdc96jJMA1.jpg",
        "created_at": "2021-03-27T23:13:14.000000Z",
        "updated_at": "2021-04-22T13:24:26.000000Z",
        "is_over_18": false,
        "is_hentai": false
    }
}