Discover/gamepedia.com API
live

gamepedia.com APIgamepedia.com

Access page content, search, categories, images, and metadata from any Fandom/Gamepedia wiki via 19 endpoints. Target any game wiki by subdomain.

Endpoints
19
Updated
3mo ago
Try it
Max results to return
Search query string
Offset for pagination (from continue.sroffset in previous response)
Namespace ID to search in (e.g., '0' for Main, '14' for Category)
Wiki subdomain (e.g., 'minecraft', 'zelda', 'leagueoflegends')
api.parse.bot/scraper/8e808513-8d56-405d-9ad6-94360a42ad04/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/8e808513-8d56-405d-9ad6-94360a42ad04/search_wiki?wiki=minecraft&limit=3&query=Diamond&subdomain=minecraft' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 19 totalclick to expand

Search for pages on a specific game wiki. Returns page titles, IDs, sizes, timestamps, and text snippets. Supports pagination via offset.

Input
ParamTypeDescription
limitintegerMax results to return
queryrequiredstringSearch query string
offsetintegerOffset for pagination (from continue.sroffset in previous response)
namespacestringNamespace ID to search in (e.g., '0' for Main, '14' for Category)
subdomainstringWiki subdomain (e.g., 'minecraft', 'zelda', 'leagueoflegends')
Response
{
  "type": "object",
  "fields": {
    "query": "object containing search array with page title, pageid, size, snippet, and timestamp per result",
    "continue": "object with sroffset for pagination"
  },
  "sample": {
    "data": {
      "query": {
        "search": [
          {
            "ns": 0,
            "size": 15655,
            "title": "Diamond",
            "pageid": 31051,
            "snippet": "",
            "timestamp": "2025-12-14T05:52:54Z",
            "titlesnippet": ""
          }
        ]
      },
      "continue": {
        "continue": "-||",
        "sroffset": 3
      },
      "batchcomplete": true
    },
    "status": "success"
  }
}

About the gamepedia.com API

This API exposes 19 endpoints covering content, search, navigation, and media across any Fandom/Gamepedia wiki. Use search_wiki to find pages by keyword with snippet previews, get_wiki_page_html to retrieve fully rendered article HTML with sections and categories, or get_image_info to pull direct download URLs and dimensions for any wiki image file. A single subdomain parameter switches the target wiki — from minecraft to leagueoflegends to zelda.

Page Content and Formats

Three endpoints cover the same article in different formats. get_wiki_page_html returns the rendered text field (full HTML), plus sections, images, links, and categories — useful when you need display-ready content. get_wiki_page_wikitext returns the raw wikitext source via revisions, which preserves infobox templates and structured markup. get_wiki_page_summary accepts a comma-separated list of numeric article ids and returns title, url, abstract, and thumbnail for each — practical for lightweight card-style displays without fetching full HTML.

Search and Discovery

search_wiki accepts a query string and optional namespace and limit params, returning pageid, title, size, snippet, and timestamp per result. Pagination uses continue.sroffset from each response. opensearch_wiki returns a four-element positional array — query string, matching titles, descriptions, and full URLs — suited for autocomplete UIs. get_top_articles returns the most-viewed articles on a wiki as an array with id, title, url, and ns fields.

Categories and Navigation

list_category_members lists every page in a named category, paginating via continue.cmcontinue. list_all_categories enumerates all categories on a wiki with optional prefix filtering. get_wiki_page_categories retrieves every category a single page belongs to. list_pages_by_namespace lets you walk all pages in a given namespace (Main=0, Template=10, File=6, etc.) with apcontinue-based pagination. get_page_links and get_backlinks expose the internal link graph in both directions.

Images, Metadata, and Site Info

get_image_info returns url, size, width, height, mime, timestamp, and user for any named file. get_page_images lists all filenames embedded on a page. get_wiki_page_metadata includes thumbnail, pageimage, pageprops, fullurl, and canonicalurl — the pageprops field often carries infobox identifiers. get_wiki_site_info gives aggregate statistics: total pages, articles, edits, images, and users alongside namespace definitions. get_recent_changes streams edit activity with type, user, timestamp, and comment per change.

Common use cases
  • Build a Minecraft item database by iterating list_category_members for item categories and fetching wikitext infoboxes via get_wiki_page_wikitext
  • Power an in-game tooltip overlay by calling get_wiki_page_summary with article IDs to retrieve abstract and thumbnail fields
  • Track wiki edit activity on a League of Legends wiki by polling get_recent_changes for user, timestamp, and comment fields
  • Construct a cross-wiki search UI using search_wiki with snippet previews and opensearch_wiki for live title autocomplete
  • Resolve user-typed redirects (e.g. alternate item spellings) to canonical page titles using resolve_redirect
  • Audit image assets on a wiki page by combining get_page_images to list filenames with get_image_info for direct URLs and dimensions
  • Map the internal link graph of a game wiki by walking get_page_links and get_backlinks for a seed article
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Fandom/Gamepedia have an official developer API?+
Yes. Fandom exposes a MediaWiki-compatible API at https://{wiki}.fandom.com/api.php and a Fandom-specific extension API. Documentation is available at https://www.mediawiki.org/wiki/API:Main_page and Fandom's own developer docs. The Parse API consolidates common operations across wikis into a single interface with a uniform subdomain parameter.
How does the `subdomain` parameter work, and what happens if I omit it?+
Every endpoint accepts a subdomain string such as minecraft, zelda, or leagueoflegends, which routes the request to that specific Fandom wiki (e.g. minecraft.fandom.com). If you omit it, the API targets a default wiki. You should always specify it explicitly when working with game-specific content.
How does pagination work across list endpoints?+
Endpoints that return large sets — search_wiki, list_category_members, list_all_categories, list_pages_by_namespace, get_backlinks, and get_recent_changes — include a continue object in the response. Pass the token from that object (e.g. sroffset, cmcontinue, apcontinue) as the continue input on your next call to retrieve the next page. Each token is specific to its endpoint and cannot be mixed across different endpoints.
Can I retrieve wiki user profiles, talk-page discussions, or edit history for a specific page?+
Not currently. The API covers page content, categories, images, site statistics, and recent changes globally, but does not expose per-page revision history, individual user profile data, or talk-page threads. You can fork this API on Parse and revise it to add those endpoints.
Does `get_wiki_page_metadata` return full infobox field values?+
The pageprops field in the metadata response carries infobox-related identifiers and properties as set by the wiki's templates, but it does not return fully parsed key-value infobox tables. For complete infobox data, use get_wiki_page_wikitext and parse the raw template markup from the revisions field. You can fork this API on Parse and add a dedicated infobox-parsing endpoint if you need structured output.
Page content last updated . Spec covers 19 endpoints from gamepedia.com.
Related APIs in EntertainmentSee all →
noor-book.com API
Search and discover books across 1,800+ categories in the Noor Book library, retrieving detailed information about titles, authors, biographies, and book metadata. Access comprehensive author profiles and browse one of the largest Arabic and English digital book collections with over 289,000 authors.
vg.no API
Access VG.no's latest news, articles, sports scores, and TV guides through a single interface where you can browse the front page, search articles by topic, view category-specific content, and find related stories. Get real-time sports scores and television schedules alongside comprehensive news coverage from Norway's leading news outlet.
vegasinsider.com API
Retrieve MLB betting odds from major sportsbooks including bet365, FanDuel, and DraftKings, covering Moneyline, Total, and Runline markets for any supported date. Easily compare odds across books to identify the best available lines.
novelbin.me API
Search and browse novels by title, genre, or popularity, and explore trending, completed, or recently updated works. Access full novel details, chapter listings, chapter content, author information, related titles, and reader comments. Authenticated users can manage bookmarks with reading-status tracking and subscribe to novels for update notifications.
quizbowlpackets.com API
Search and browse thousands of quizbowl question sets across all competition levels, then access detailed metadata like difficulty, subjects, and download links for each packet. Find the perfect practice materials for High School, Collegiate, Middle School, or Pop Culture quizbowl competitions.
glastonburyfestivals.co.uk API
Discover historical and current Glastonbury Festival line-ups, find artist set times and stage locations, and search for specific performers across all festival years. Stay updated with the latest festival news and explore detailed information about festival areas and stages.
puntoticket.com API
Browse and search events happening in Chile with PuntoTicket, viewing featured shows, filtering by category, and checking detailed pricing and availability for concerts, theater, sports, and more. Find the perfect event by exploring all listings or discovering what's trending right now.
wynncraft.com API
Access detailed Wynncraft game information to look up item metadata and search across the complete item database, retrieve player statistics and character inventories, and browse guild information and global search results. Use this data to compare gear, track player progress, analyze guild rosters, or build tools for the Wynncraft community.