Search
Request Served by API :
Endpoint : https://gomanga-api.vercel.app/api/search/[value]
The https://gomanga-api.vercel.app/api/search/[search] endpoint provides a list of Manwha with associated metadata. Follow the steps below to make a request and understand the response.
Simple Fetch
Example :
GET http://gomanga-api.vercel.app/api/search/100 girlfriend
Response :
{
  "keyword": "100_girlfriend",
  "count": 1,
  "manga": [
    {
      "id": "the-100-girlfriends-who-really-really-really-really-really-love-you",
      "title": "The 100 Girlfriends Who Really, Really, Really, Really, Really Love You",
      "imgUrl": "http://gomanga-api.vercel.app/api/p?p=https%3A%2F%2Fimg-r1.2xstorage.com%2Fthumb%2Fthe-100-girlfriends-who-really-really-really-really-really-love-you.webp",
      "latestChapters": [
        {
          "name": "Chapter 221",
          "chapter": "221"
        },
        {
          "name": "Chapter 220",
          "chapter": "220"
        }
      ],
      "authors": "Yukiko Nozawa,Rikito Nakamura",
      "updated": "Jul-11-2025 06:41",
      "views": "27,998,895"
    }
  ]
}... more
NEXT >
Example (NextJS)