Discover/wikia.org API
live

wikia.org APIwikia.org

Access structured data from any Fandom wiki: page infoboxes, categories, sections, and site statistics across thousands of fan communities.

Endpoints
4
Updated
3mo ago
Try it
The wiki subdomain (e.g., 'starwars' for starwars.fandom.com).
Maximum number of results to return.
Search keyword.
api.parse.bot/scraper/3d672e96-ab72-47c3-a6bd-214cfc76e418/<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/3d672e96-ab72-47c3-a6bd-214cfc76e418/search_pages?wiki=starwars&limit=5&query=Luke+Skywalker' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 4 totalclick to expand

Search for pages within a specific Fandom wiki. Returns matching page titles, IDs, snippets, and word counts.

Input
ParamTypeDescription
wikirequiredstringThe wiki subdomain (e.g., 'starwars' for starwars.fandom.com).
limitintegerMaximum number of results to return.
queryrequiredstringSearch keyword.
Response
{
  "type": "object",
  "fields": {
    "wiki": "string - the wiki subdomain queried",
    "query": "string - the search keyword used",
    "results": "array of objects with title, pageid, snippet, and wordcount"
  },
  "sample": {
    "data": {
      "wiki": "starwars",
      "query": "Luke Skywalker",
      "results": [
        {
          "title": "Luke Skywalker (The Star Wars)",
          "pageid": 428999,
          "snippet": "",
          "wordcount": 1605
        },
        {
          "title": "Luke Starkiller",
          "pageid": 201108,
          "snippet": "",
          "wordcount": 309
        }
      ]
    },
    "status": "success"
  }
}

About the wikia.org API

The Fandom Wiki API provides 4 endpoints that retrieve structured data from any Fandom wiki by subdomain, covering page search, category browsing, detailed page content, and site-level statistics. The get_page_data endpoint returns infobox key-value pairs, section outlines, categories, and a plain-text description for any named page — making it straightforward to pull character sheets, episode summaries, or lore articles without parsing wiki markup by hand.

What the API Covers

The API targets Fandom wikis (hosted at *.fandom.com) and accepts a wiki subdomain parameter on every endpoint, so the same four calls work for any of the thousands of communities on the platform — from starwars to minecraft to niche fandoms. All endpoints return the wiki field in the response for easy traceability in multi-wiki pipelines.

Searching and Browsing Content

search_pages takes a query string and an optional limit, returning an array of results where each item includes title, pageid, snippet, and wordcount. This is useful for fuzzy discovery when you don't know the exact page title. list_category_members accepts a category name (with or without the Category: prefix) and pages results using a continue token — pass the token from one response into the next call to walk through categories with more than 500 members.

Structured Page and Wiki Data

get_page_data is the most data-rich endpoint. Given a wiki and exact page title, it returns the full canonical url, a pageid, an infobox object of sidebar key-value pairs, an ordered sections array (each with index, level, and title), a categories array, and a plain description string from the opening paragraph. This structured shape is consistent across different wiki templates because infobox data is normalized into a flat object. get_wiki_info returns top-level wiki metadata — sitename, server, language, and MediaWiki generator version — alongside a statistics object covering pages, articles, edits, images, users, activeusers, and admins.

Pagination and Identifiers

MediaWiki integer pageid values are returned by search_pages, list_category_members, and get_page_data, so results can be cross-referenced or used to build stable identifiers. Category pagination via the continue field is the only form of cursor-based pagination; search_pages respects a numeric limit but does not currently expose a continuation cursor.

Common use cases
  • Build a character database for a game franchise by iterating a 'Characters' category with list_category_members and fetching infobox fields via get_page_data.
  • Compare contributor activity and article counts across multiple fandom communities using get_wiki_info statistics.
  • Power an autocomplete or search feature in a fan app using search_pages snippets and word counts.
  • Extract episode summaries and section outlines for an episode guide using the sections and description fields from get_page_data.
  • Seed a knowledge graph with structured lore data by pulling infobox key-value pairs for items, locations, or species pages.
  • Monitor wiki growth over time by periodically polling get_wiki_info for edits, articles, and activeusers counts.
  • Classify pages by franchise topic by reading the categories array returned from get_page_data.
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 have an official developer API?+
Yes. Fandom exposes the standard MediaWiki Action API at https://<wiki>.fandom.com/api.php, which supports read operations on any public wiki. The Parse API builds a structured, normalized interface on top of that surface so you get clean JSON without assembling raw MediaWiki query parameters yourself.
What does `get_page_data` return for the infobox, and how consistent is it across wikis?+
The infobox field is a flat key-value object extracted from the sidebar template on a page. The keys reflect whatever fields that specific wiki's infobox template defines — for example, 'affiliation', 'species', or 'first_appearance' on a Star Wars character page. Because different wikis use different infobox templates, the exact keys vary by community and page type.
Can `list_category_members` return more than 500 results?+
Each individual call is capped at 500 members. For categories larger than 500 pages, the response includes a continue string. Pass that value as the continue parameter in a subsequent call to retrieve the next batch. Repeat until continue is null to exhaust the full category.
Does the API return the full wikitext or rendered HTML content of a page?+
Not currently. get_page_data returns a plain-text description (the opening paragraph), an infobox object, and a sections array with section titles and hierarchy — but not the full body text or rendered HTML. You can fork this API on Parse and revise it to add a full-text or parsed-HTML endpoint for the sections you need.
Does the API cover wikis not hosted on fandom.com, such as independent MediaWiki sites?+
Not currently. All four endpoints are scoped to Fandom subdomains (e.g., starwars.fandom.com) via the wiki subdomain parameter. Independent MediaWiki installations are not covered. You can fork this API on Parse and revise the base URL logic to point at other MediaWiki-powered sites.
Page content last updated . Spec covers 4 endpoints from wikia.org.
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.