Public data

Mewgenics Data API

Unofficial static data exports from Mewgenics Wiki, including item and ability JSON data for personal, educational, and research use.

Usage and Attribution

These JSON files are intended for Python, Pandas, SQL, visualization, and personal research. If you publish a project using this data, please include a visible source link on the page, README, data notes, or footer: Mewgenics Wiki.

Suggested attribution: Data from Mewgenics Wiki. This is an unofficial fan-maintained wiki, not affiliated with the Mewgenics developers.

Endpoints

File Contents
/api/v1/index.json API index Lists available public JSON data files and attribution notes.
/api/v1/items.json Items Equipment, weapons, trinkets, consumables, stats, sources, and icon URLs.
/api/v1/abilities.json Abilities Skills, spells, classes, costs, damage, tags, elements, and page URLs.

Example

import json
from urllib.request import urlopen
import pandas as pd

with urlopen("https://mewgenics.wiki/api/v1/items.json") as response:
    data = json.load(response)

items = pd.json_normalize(data["records"])
print(items[["id", "kind", "rarity"]].head())