Discover/Warframe API
live

Warframe APIwarframe.wiki

Access Warframe item stats, crafting requirements, augment mod details, event data, and patch notes from the Warframe Wiki via 5 structured endpoints.

This API takes change requests — .
Endpoint health
verified 4d ago
get_item_details
get_events
search_items
get_augment_details
get_update_notes
5/5 passing latest checkself-healing
Endpoints
5
Updated
1mo ago

What is the Warframe API?

The Warframe Wiki API exposes 5 endpoints covering item stats, crafting data, augment mods, in-game events, and update notes pulled from warframe.wiki. Use get_item_details to retrieve infobox fields like health, armor, sprint speed, and blueprint components for any Warframe or weapon by exact page title, or use search_items to resolve names to page IDs before drilling into specifics.

This call costs1 credit / call— charged only on success
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.

"""Walkthrough: Warframe Wiki SDK — bounded, re-runnable; every call capped."""
from parse_apis.Warframe_Wiki_API import WarframeWiki, ItemNotFound

wiki = WarframeWiki()

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

# Navigate from search result to full item details
hit = wiki.item_summaries.search(query="Rhino", limit=1).first()
if hit:
    detail = hit.details()
    print(detail.name, detail.stats)

# Get augment mod details
augment = wiki.augments.get(name="Tribunal")
print(augment.name, augment.warframe, augment.ability, augment.polarity)
for rank in augment.ranks:
    print(rank.rank, rank.drain, rank.effects)

# Get current events
event_info = wiki.event_infos.get()
print(event_info.current_indicators)
for page in event_info.recent_event_pages[:3]:
    print(page.title, page.pageid)

# List recent updates
for update in wiki.updates.list(limit=3):
    print(update.title, update.pageid)

# Typed error handling
try:
    wiki.items.get(name="NonExistentItemXYZ")
except ItemNotFound as e:
    print("not found:", e.name)

print("exercised: item_summaries.search / details / items.get / augments.get / event_infos.get / updates.list")
All endpoints · 5 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

search_items accepts a query string and returns up to 10 matching wiki pages, each carrying a title and pageid. The title value can be passed directly to get_item_details as the name parameter. get_item_details returns a stats object containing infobox key-value pairs (abilities, health, armor, sprint speed, and other fields that vary by item type) alongside a crafting object that includes blueprint cost, credit cost, build time, and component parts when the item is craftable.

Augment Mods

get_augment_details takes an exact augment name (e.g. 'Seeking Shuriken' or 'Warding Thurible') and returns structured per-rank data: each rank object includes the drain cost and effect values at that rank. The endpoint also surfaces the augment's rarity, polarity, associated ability, warframe, and a description reflecting max-rank behavior. Effect column names vary per augment, reflecting the actual mechanic the mod modifies.

Events and Update Notes

get_events requires no inputs and returns two arrays: current_indicators listing active event references such as Nightwave, and recent_event_pages with titles and page IDs for operation and event pages. Note that current_indicators may be empty when no events are currently flagged on the main wiki page. get_update_notes accepts an optional limit integer (1–50) and returns update and patch page entries from the wiki's Updates category, sorted most-recent first — useful for tracking the current game version or detecting recent balance changes.

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
4d ago
Latest check
5/5 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
  • Build a Warframe companion app that looks up item stats and crafting requirements by name
  • Track active in-game events and Nightwave seasons using get_events current_indicators
  • Display ranked augment mod effects and drain costs in a loadout planner
  • Monitor the latest patch notes by polling get_update_notes for new entries
  • Resolve fuzzy item name searches to canonical wiki page titles before fetching full details
  • Compare blueprint component requirements across multiple Warframe or weapon builds
  • Alert players when a new update page appears in the Updates category
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does the Warframe Wiki have an official developer API?+
The Warframe Wiki (warframe.wiki) does not publish an official public developer API. Community projects like the Warframe Wiki's own export tools exist but are not a supported REST API. This Parse API provides structured access to wiki data without requiring you to handle wiki markup or page parsing yourself.
What does `get_item_details` return for items that have no crafting recipe?+
The crafting object is returned when the item has a blueprint on the wiki. For items without crafting requirements — such as unvaulted Prime Access items purchased directly or certain event rewards — the crafting object will be absent or empty. The stats object from the infobox is still returned regardless.
Can I retrieve the full text or patch note body from `get_update_notes`?+
Not currently. get_update_notes returns page title and pageid fields for each update entry, not the full note body. You can fork this API on Parse and revise it to add an endpoint that fetches the full content of a specific update page by pageid.
Does the API cover Warframe market pricing or trade data?+
No trade or market pricing data is included. The API covers wiki-sourced fields: item stats, crafting components, augment mod ranks, events, and patch note page listings. You can fork this API on Parse and revise it to add an endpoint pulling data from a trade-focused source like warframe.market.
How fresh is the event data returned by `get_events`?+
The data reflects the current state of the Warframe Wiki's main page and event/operation page listings. Wiki pages are community-maintained, so there may be a short lag between a new in-game event launching and the wiki being updated. The current_indicators array can also be empty if no events are currently referenced on the main page.
Page content last updated . Spec covers 5 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.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.
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.
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.
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.
bg3.wiki API
Search and retrieve detailed information about Baldur's Gate 3 classes, subclasses, spells, items, quests, and other game content from the official wiki. Build character guides, plan builds, and look up game mechanics without leaving your app.