Discover/Warframe API
live

Warframe APIwarframe.wiki

Access Warframe item stats, crafting requirements, mod data, events, and patch notes from the Warframe Wiki via 4 structured API endpoints.

Endpoint health
verified 3d ago
get_item_details
get_update_notes
search_items
get_events
4/4 passing latest checkself-healing
Endpoints
4
Updated
26d ago

What is the Warframe API?

The Warframe Wiki API exposes 4 endpoints covering item search, detailed stats, active events, and update notes drawn from warframe.wiki. The get_item_details endpoint returns infobox fields like health, armor, and abilities alongside full blueprint crafting data — credits cost, build time, required parts, and quantities. Use search_items to resolve item names to page IDs before fetching detail pages.

Try it
Item name or keyword to search for
api.parse.bot/scraper/2e48ef53-83c8-4fe3-8af5-90693ca160db/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/2e48ef53-83c8-4fe3-8af5-90693ca160db/search_items?query=Excalibur' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace warframe-wiki-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.warframe_wiki_api import WarframeWiki, Item, ItemSummary, ItemNotFound

wiki = WarframeWiki()

# Search for items by keyword
for result in wiki.itemsummaries.search(query="Braton"):
    print(result.title, result.pageid)

# Get full details for a specific item
item = wiki.items.get(name="Excalibur")
print(item.name, item.stats)

# Navigate from search result to full details
for result in wiki.itemsummaries.search(query="Rhino"):
    detail = result.details()
    print(detail.name, detail.crafting)
    break

# Get current events
event_info = wiki.eventinfos.get()
print(event_info.current_indicators, event_info.recent_event_pages)

# List recent updates
for update in wiki.updates.list():
    print(update.title, update.pageid)
All endpoints · 4 totalmissing one? ·

Full-text search across all Warframe Wiki pages (Warframes, Weapons, Mods, etc.) by name or keyword. Returns up to 10 matching results. Each result carries a title usable as the `name` parameter to get_item_details.

Input
ParamTypeDescription
queryrequiredstringItem name or keyword to search for
Response
{
  "type": "object",
  "fields": {
    "items": "array of search result objects with title and pageid"
  },
  "sample": {
    "data": {
      "items": [
        {
          "title": "Excalibur",
          "pageid": 2107
        },
        {
          "title": "Excalibur/Abilities",
          "pageid": 40559
        }
      ]
    },
    "status": "success"
  }
}

About the Warframe API

Item Search and Detail

The search_items endpoint accepts a query string and returns up to 10 matching results, each with a title and pageid. These identifiers feed directly into get_item_details, which accepts an exact wiki page name — such as 'Excalibur', 'Braton', or 'Rhino Prime' — and returns two top-level objects: stats and crafting. The stats object contains infobox key-value pairs including abilities, health, armor, and other frame- or weapon-specific attributes. The crafting object, when present, holds blueprint data: credits cost, build time, component parts, and their individual quantities.

Events and Update Notes

get_events requires no inputs and returns two fields: current_indicators, an array of strings describing active events detected on the wiki's main page, and recent_event_pages, an array of page objects (title + pageid) linking to full event and operation articles. get_update_notes retrieves pages from the wiki's Updates category sorted most-recent first; an optional limit integer caps how many entries are returned. Each entry in the data array carries a title and pageid, letting you identify which update is newest and fetch further detail by page name if needed.

Coverage Scope

The API covers the community-maintained warframe.wiki, which documents Warframes, weapons, mods, resources, enemies, and game history. Because the underlying source is a wiki, data freshness depends on community edits; major game updates may take hours to days to appear in full detail. Infobox field availability varies by item type — a Warframe page exposes ability data that a resource or mod page will not.

Reliability & maintenanceVerified

The Warframe API is a managed, monitored endpoint for warframe.wiki — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when warframe.wiki changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official warframe.wiki API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3d ago
Latest check
4/4 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Look up armor and health values for a specific Warframe before investing forma
  • Retrieve blueprint crafting costs and component lists to plan resource farming
  • Pull recent update page titles to track patch history in a game companion app
  • Detect active event indicators to surface in-game event alerts to players
  • Resolve partial item names to page IDs using search, then batch-fetch detail stats
  • Build a loadout comparison tool using per-item infobox stats from get_item_details
  • Display the latest patch notes in a Discord bot using get_update_notes with a small limit
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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 Warframe have an official developer API?+
Digital Extremes does not publish an official public REST API for Warframe game data. The community maintains warframe.wiki as the authoritative reference, and community projects like Warframe Market have their own narrow APIs, but there is no first-party developer API from the game studio.
What does get_item_details return for items that don't have a crafting blueprint?+
The crafting object is returned when blueprint data is present on the wiki page. For items without blueprints — such as base resources, purely dropped items, or certain quest rewards — the crafting field will be absent or empty. The stats object with infobox key-value pairs is still returned regardless.
How current is the event data returned by get_events?+
The current_indicators field reflects what is visible on the wiki's main page at request time. The wiki is community-edited, so there can be a lag between an event going live in-game and it being reflected on the wiki. For time-sensitive event detection, treat this data as approximate rather than authoritative.
Does the API return individual mod stats like drain, rarity, or effect values?+
Not currently. The API covers item infobox stats for Warframes and weapons, crafting requirements, event pages, and update notes. Mod-specific fields such as drain cost, rank progression, rarity tier, and polarity are not exposed in the current response shapes. You can fork this API on Parse and revise it to add a dedicated mod detail endpoint targeting those infobox fields.
Can I retrieve a full list of all items without searching first?+
Not currently. The search_items endpoint returns up to 10 results per query, and there is no bulk catalog or paginated list endpoint. If you need broader coverage, you can fork this API on Parse and revise it to add a category-walk or all-items listing endpoint.
Page content last updated . Spec covers 4 endpoints from warframe.wiki.
Related APIs in EntertainmentSee all →
wiki.warframe.com API
Search and retrieve detailed damage statistics for every Warframe weapon, including breakdowns by damage type, fire modes, and alternate attacks to optimize your loadout. Compare combat performance metrics across weapons to find the perfect gear for your playstyle.
wiki.rustclash.com API
Access Rust game items, skins, blueprints, and crafting data from the RustClash Wiki. Browse and search items by category, explore skin listings with market prices, and retrieve detailed stats including crafting recipes, repair costs, loot locations, and workbench blueprint tiers.
eldenring.wiki.fextralife.com API
Search and retrieve structured Elden Ring game information from the Fextralife Wiki, including weapons, enemies, locations, and lore. Access full article content with hierarchical sections, tables, and images, or search the complete article catalog by keyword.
wikia.org API
Search and retrieve detailed information about characters, episodes, lore, and other content from Fandom wikis across thousands of fan communities. Browse wiki categories, look up specific pages, and access structured data about your favorite franchises all in one place.
wikia.com API
Extract structured data from Fandom (formerly Wikia) gaming wikis. Search pages, retrieve full page content, list category members, and convert wiki pages into organized guides with infoboxes, section breakdowns, and clean text.
wiki.warthunder.com API
Look up detailed specs, armaments, and economic data for any War Thunder ship or boat. Search through the complete naval vehicle database to find technical information and compare stats across the Bluewater and Coastal fleets.
gamepedia.com API
Search gaming wikis across Fandom to find guides, maps, strategies, and game information, then retrieve detailed page content in multiple formats along with images and metadata. Discover trending articles, browse categories, and navigate game-specific knowledge bases to get the gaming data you need.
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.