eldenring.wiki.fextralife.com APIeldenring.wiki.fextralife.com ↗
Access structured Elden Ring game data from the Fextralife Wiki. List articles, search by keyword, and retrieve full article content with sections, tables, and images.
curl -X GET 'https://api.parse.bot/scraper/657062b1-a85f-416c-a7be-e364dcb806fc/list_articles?limit=5&offset=0' \ -H 'X-API-Key: $PARSE_API_KEY'
List all articles from the wiki via sitemap, with pagination. Returns article titles, paths, and URLs.
| Param | Type | Description |
|---|---|---|
| limit | integer | Max number of articles to return per page. |
| offset | integer | Number of articles to skip for pagination. |
{
"type": "object",
"fields": {
"limit": "limit used for this request",
"total": "total number of articles in the wiki",
"offset": "offset used for this request",
"articles": "array of article objects each containing title, path, and url"
},
"sample": {
"data": {
"limit": 5,
"total": 4607,
"offset": 0,
"articles": [
{
"url": "https://eldenring.wiki.fextralife.com/Rellana's+Set",
"path": "Rellana's+Set",
"title": "Rellana's Set"
},
{
"url": "https://eldenring.wiki.fextralife.com/Elden+Bling",
"path": "Elden+Bling",
"title": "Elden Bling"
}
]
},
"status": "success"
}
}About the eldenring.wiki.fextralife.com API
This API exposes 3 endpoints for retrieving structured game data from the Elden Ring Fextralife Wiki, covering weapons, bosses, locations, spells, items, and lore. The get_article endpoint returns a full article broken into typed content blocks — text, tables, images, and lists — organized into hierarchical sections. The search_articles endpoint matches keywords against article titles across the entire wiki catalog.
Endpoints and Coverage
The API provides three endpoints: list_articles, search_articles, and get_article. Together they cover the full article catalog of the Elden Ring Fextralife Wiki, which documents weapons, armor, spells, ashes of war, bosses, NPCs, locations, quests, and lore.
Listing and Searching Articles
list_articles returns the full article index with pagination via limit and offset parameters. Each entry includes the article title, path, and url. The total field tells you the full size of the catalog so you can page through it incrementally. search_articles accepts a query string and matches it case-insensitively against article titles, returning up to 50 results with the same title, path, and url fields.
Retrieving Article Content
get_article takes a path parameter (spaces replaced with +, e.g. Malenia+Blade+of+Miquella) and returns the article's full structured content. The sections array contains objects with a title, level (heading depth), and a content array of typed items. Each item carries a type field — text, table, image, or list — so you can extract stat tables, drop tables, lore text, and image references independently without parsing raw HTML. The url and path fields are also returned for reference.
- Build a Elden Ring companion app that lets players look up weapon stats by searching article titles and rendering the stat tables from
get_article. - Index the full wiki catalog via
list_articlespagination to power a searchable offline database of all game items and bosses. - Extract boss drop tables from
get_articlecontent blocks of typetableto generate loot guides. - Map NPC quest lines by pulling
sectionsfrom character articles and filtering for list-type content blocks. - Aggregate all location articles by keyword-searching
search_articleswith region names and collecting linked item references. - Sync a Discord bot's game-info command with up-to-date wiki data by resolving player queries through
search_articlesthen fetching the top result viaget_article. - Compile a spell and incantation reference sheet by listing all articles and filtering paths that match magic-related terms.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.
Does Fextralife have an official developer API for the Elden Ring Wiki?+
What does `get_article` return for a boss page — just text, or does it include stat tables?+
sections array contains content items with a type field. A boss article typically includes text blocks for lore and strategy, table blocks for stats and drops, image blocks for screenshots or maps, and list blocks for move sets or recommended builds. You can filter the content array by type to isolate exactly what you need.Does `search_articles` support full-text search across article body content?+
search_articles matches the query string against article titles only, returning up to 50 results. Body content is not indexed for search. You can fork this API on Parse and revise it to add a full-text search endpoint that queries article body sections.How does pagination work in `list_articles`, and how many articles are in the wiki?+
list_articles includes a total field with the full article count and echoes back the limit and offset values used. Set offset to your current position and limit to your preferred page size to page through the entire catalog. The total value tells you when you have retrieved all articles.