Skip to content
GET /v1/tags

All genre & theme tags

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/mangadex-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/mangadex-api/v1/tags" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mangadex-api/v1/tags", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mangadex-api/v1/tags");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/mangadex-api/v1/tags",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "tags": [
            {
                "id": "0234a31e-a729-4e28-9d6a-3f87c4966b9e",
                "name": "Oneshot",
                "group": "format"
            },
            {
                "id": "07251805-a27e-4d59-b488-f0bfbec15168",
                "name": "Thriller",
                "group": "genre"
            },
            {
                "id": "0a39b5a1-b235-4886-a747-1d05d216532d",
                "name": "Award Winning",
                "group": "format"
            },
            {
                "id": "0bc90acb-ccc1-44ca-a34a-b9f3a73259d0",
                "name": "Reincarnation",
                "group": "theme"
            },
            {
                "id": "256c8bd9-4904-4360-bf4f-508a76d67183",
                "name": "Sci-Fi",
                "group": "genre"
            },
            {
                "id": "292e862b-2d17-4062-90a2-0356caa4ae27",
                "name": "Time Travel",
                "group": "theme"
            },
            {
                "id": "2bd2e8d0-f146-434a-9b51-fc9ff2c5fe6a",
                "name": "Genderswap",
                "group": "theme"
            },
            {
                "id": "2d1f5d56-a1e5-4d0d-a961-2193588b08ec",
                "name": "Loli",
                "group": "theme"
            },
            {
                "id": "31932a7e-5b8e-49a6-9f12-2afa39dc544c",
                "name": "Traditional Games",
                "group": "theme"
            },
            {
                "id": "320831a8-4026-470b-94f6-8353740e6f04",
                "name": "Official Colored",
                "group": "format"
            },
            {
                "id": "33771934-028e-4cb3-8744-691e866a923e",
                "name": "Historical",
                "group": "genre"
            },
            {
                "id": "36fd93ea-e8b8-445e-b836-358f02b3d33d",
                "name": "Monsters",
                "group": "theme"
            },
            {
                "id": "391b0423-d847-456f-aff0-8b0cfc03066b",
                "name": "Action",
                "group": "genre"
            },
            {
                "id": "39730448-9a5f-48a2-85b0-a70db87b1233",
                "name": "Demons",
                "group": "theme"
            },
            {
                "id": "3b60b75c-a2d7-4860-ab56-05f391bb889c",
                "name": "Psychological",
                "group": "genre"
            },
            {
                "id": "3bb26d85-09d5-4d2e-880c-c34b974339e9",
                "name": "Ghosts",
                "group": "theme"
            },
            {
                "id": "3de8c75d-8ee3-48ff-98ee-e20a65c86451",
                "name": "Animals",
                "group": "theme"
            },
            {
                "id": "3e2b8dae-350e-4ab8-a8ce-016e844b9f0d",
                "name": "Long Strip",
                "group": "format"
            },
            {
                "id": "423e2eae-a7a2-4a8b
…