Discover/Warframe API
live

Warframe APIwiki.warframe.com

Access structured damage stats, fire modes, and combat metrics for every Warframe weapon via 3 endpoints covering all weapon slots and attack types.

Endpoint health
verified 20h ago
get_all_weapons
search_weapons
get_weapon_details
3/3 passing latest checkself-healing
Endpoints
3
Updated
22d ago

What is the Warframe API?

The Warframe Wiki Weapon Stats API exposes damage breakdowns, fire mode data, and combat metadata for every weapon in Warframe across 3 endpoints. The get_all_weapons endpoint returns one record per attack entry — not one per weapon — covering primary, secondary, melee, archwing, and companion slots. Each record includes damage type distributions, reload times, accuracy values, mastery rank requirements, and riven disposition scores, giving you the full stat picture the wiki carries.

Try it
Comma-separated list of weapon slots to fetch. Accepted values: primary, secondary, melee, archwing, companion, railjack, modular, misc.
api.parse.bot/scraper/764de28a-44e4-4670-8534-9514dd2ed147/<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/764de28a-44e4-4670-8534-9514dd2ed147/get_all_weapons?slots=misc' \
  -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 wiki-warframe-com-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 Weapons Stats — search, filter, and inspect weapon damage data."""
from parse_apis.warframe_weapons_stats_api import Warframe, WeaponCategory, WeaponNotFound

client = Warframe()

# Search for rifles in the primary category, capped at 5 results.
for record in client.attackrecords.search(query="Braton", category=WeaponCategory.PRIMARY, limit=5):
    print(record.weapon_name, record.attack_name, record.total_damage)

# Drill into one weapon's full details by name.
weapon = client.weapons.get(weapon_name="Nikana Prime")
print(weapon.weapon_name, weapon.mastery_rank, weapon.disposition)
for attack in weapon.attacks:
    print(f"  {attack.attack_name}: {attack.total_damage} dmg, crit={attack.critical_chance}")

# List all attack records from a single slot.
for record in client.attackrecords.list(slots="misc", limit=3):
    print(record.weapon_name, record.weapon_subtype, record.fire_rate)

# Handle a weapon that doesn't exist.
try:
    client.weapons.get(weapon_name="Nonexistent Weapon XYZ")
except WeaponNotFound as exc:
    print(f"Not found: {exc.weapon_name}")

print("exercised: attackrecords.search / weapons.get / attackrecords.list / WeaponNotFound")
All endpoints · 3 totalmissing one? ·

Get complete weapon attack stats for all Warframe weapons across all categories. Returns one record per attack/fire mode entry (not one per weapon). Each record includes the full damage breakdown by element type plus combat stats (crit, status, fire rate). Fetches from 8 weapon data modules; the slots parameter controls which modules are queried. Total records typically exceed 2000 across all slots.

Input
ParamTypeDescription
slotsstringComma-separated list of weapon slots to fetch. Accepted values: primary, secondary, melee, archwing, companion, railjack, modular, misc.
Response
{
  "type": "object",
  "fields": {
    "weapons": "array of attack record objects with full damage breakdowns per element type",
    "total_records": "integer total count of attack records returned"
  },
  "sample": {
    "data": {
      "weapons": [
        {
          "gas": null,
          "cold": null,
          "heat": null,
          "true": null,
          "void": null,
          "blast": null,
          "range": 300,
          "slash": 66.6,
          "toxin": null,
          "viral": null,
          "impact": 66.7,
          "pellets": 1,
          "wind_up": null,
          "finisher": null,
          "magnetic": null,
          "puncture": 66.7,
          "ammo_cost": null,
          "corrosive": null,
          "fire_mode": "Hit-Scan",
          "fire_rate": 13.3,
          "multishot": 1,
          "radiation": null,
          "attack_name": "Normal Attack",
          "burst_count": null,
          "charge_time": null,
          "electricity": null,
          "falloff_end": null,
          "melee_range": null,
          "reload_time": 4,
          "slam_attack": null,
          "slam_radius": null,
          "weapon_name": "Rampart",
          "attack_speed": null,
          "forced_procs": null,
          "heavy_attack": null,
          "sweep_radius": null,
          "total_damage": 200,
          "trigger_type": "Auto",
          "falloff_start": null,
          "magazine_size": 200,
          "punch_through": 0,
          "status_chance": 0,
          "combo_duration": null,
          "follow_through": null,
          "weapon_subtype": "Unique",
          "critical_chance": 0,
          "weapon_category": "Emplacement",
          "falloff_reduction": null,
          "heavy_slam_attack": null,
          "heavy_slam_radius": null,
          "critical_multiplier": 0,
          "headshot_multiplier": null
        }
      ],
      "total_records": 2
    },
    "status": "success"
  }
}

About the Warframe API

Weapon Coverage and Data Shape

The API returns attack-level records, meaning a single weapon with multiple fire modes or an alternate fire will produce multiple records. get_all_weapons accepts an optional slots parameter as a comma-separated list (primary, secondary, melee, archwing, companion) so you can pull only the categories you need rather than the full dataset. The total_records field in every response tells you exactly how many attack entries came back.

Searching and Filtering

search_weapons lets you narrow results by weapon name substring (query), weapon subtype (class, e.g. Nikana, Shotgun, Pistol), or slot category (category). The limit parameter caps the result count. All string matches are case-insensitive substrings, so querying query=braton will match Braton, Braton Prime, and Braton Vandal. The category field accepts values including archgun and archmelee in addition to the standard slots, giving slightly broader coverage than the slots filter on get_all_weapons.

Weapon-Level Metadata via get_weapon_details

get_weapon_details requires an exact weapon name (case-insensitive) and returns both weapon-level fields and a full attacks array. Weapon-level fields include family, traits (e.g. Prime, Vaulted), introduced (update version string), disposition (riven disposition), mastery_rank, max_ammo, reload_time, and accuracy. Fields that the wiki does not list for a given weapon come back as null rather than being omitted, so response shapes are consistent across all weapon types.

Source

Data is sourced from the community-maintained Warframe Wiki at wiki.warframe.com, which is updated by players and wiki contributors as the game receives patches. Stat accuracy reflects the wiki's current content at the time of the request.

Reliability & maintenanceVerified

The Warframe API is a managed, monitored endpoint for wiki.warframe.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when wiki.warframe.com 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 wiki.warframe.com 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
20h ago
Latest check
3/3 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 weapon comparison tool using damage breakdowns and reload_time from get_weapon_details to rank weapons by effective DPS.
  • Filter all Nikana-class weapons by passing class=Nikana to search_weapons to compare mastery rank requirements and riven dispositions.
  • Identify newly introduced weapons by sorting on the introduced field returned from get_weapon_details.
  • List all Vaulted Prime weapons by checking the traits array in get_weapon_details responses for the Vaulted trait.
  • Pull companion slot weapon stats using the slots=companion filter on get_all_weapons to evaluate Kubrow and Kavat attack data.
  • Generate a per-damage-type breakdown across all secondary weapons to analyze slash, puncture, and impact distributions for status-focused builds.
  • Check riven disposition scores across all primary weapons by iterating get_all_weapons results filtered to slots=primary and reading disposition.
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 the Warframe Wiki have an official developer API?+
The Warframe Wiki (wiki.warframe.com) runs on Fandom's MediaWiki platform, which exposes a public MediaWiki Action API at wiki.warframe.com/api.php. That API returns raw wiki markup and page metadata but does not provide structured weapon stat tables. This API delivers pre-structured, field-level weapon data without requiring any wiki markup parsing.
What does `get_weapon_details` return that `search_weapons` does not?+
get_weapon_details adds weapon-level metadata fields not present in search results: family, traits, introduced, disposition, mastery_rank, max_ammo, reload_time, and accuracy. The attacks array in get_weapon_details is the same attack record format returned by the search endpoints, so damage breakdowns are identical across all three endpoints.
Does the API cover weapon mod stats or build calculations?+
Not currently. The API covers base weapon stats, damage type distributions, fire mode entries, and wiki metadata such as mastery rank, riven disposition, and introduced version. Mod effects, modded stat calculations, or build recommendations are not included. You can fork this API on Parse and revise it to add an endpoint that pulls mod data from the wiki and applies multipliers to base stats.
How current is the weapon data, and is it updated after game patches?+
Data reflects what the Warframe Wiki carries at request time. The wiki is community-maintained and typically updated within days of a major patch, but there can be a lag between a Warframe game update and the wiki reflecting revised stats. Newly released weapons may appear on the wiki before or after their in-game release depending on contributor activity.
Does the API return enemy or Warframe ability stats in addition to weapon stats?+
Not currently. The three endpoints cover weapon attack records across primary, secondary, melee, archwing, companion, and related slots only. Warframe ability stats, enemy unit data, and mission/drop table data are not exposed. You can fork this API on Parse and revise it to add endpoints targeting those wiki pages.
Page content last updated . Spec covers 3 endpoints from wiki.warframe.com.
Related APIs in EntertainmentSee all →
warframe.wiki API
Search for Warframe items and weapons to view their stats, crafting requirements, and mod information, while staying updated on current in-game events and patch notes. Get detailed information about gear, resources, and game updates all from one convenient source.
light.gg API
Search Destiny 2 weapons by name or perks and instantly access detailed stats, popular god rolls, and perk combination ratings to optimize your loadouts. Compare weapon data and discover top-performing gear configurations to dominate in PvP and PvE activities.
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.
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.
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.
dofusroom.com API
Browse and search thousands of Dofus equipment pieces and weapons to find detailed stats, compare items by category, and discover crafting recipes with all required resources. Get instant access to comprehensive game equipment data covering over 3,200 items to optimize your gear and crafting strategies.
tarkov.dev API
Get Escape from Tarkov ammunition stats (damage, penetration, armor damage, modifiers) and wipe-length history with computed durations and averages from tarkov.dev.
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.