WARFRAME Wiki
Advertisement
WARFRAME Wiki
OrdisArchwingtrailer
“I want more... Operator, please hurry! This story is getting quite good!”
This article is a stub. You can help WARFRAME Wiki by adding a sentence or two.
Sgt Nef AnyoIcon
“Orokin secrets cannot remain secret forever! Start talking!”
The following article/section is conjecture. Content is subjected to change/removal as the game progresses. Please do not use this article for critical in-game information.

Mobile Export refers to a public endpoint hosted by Digital Extremes that is used to feed internal data to Warframe Nexus, the official mobile companion app for WARFRAME, and the Warframe Arsenal Twitch Extension. Note that the wiki is not responsible for any malicious use of this data. Any data extracted should be used for informational purposes only and does not necessarily represent the current and future state of the game. Content is subjected for removal as the game updates so please do not use this for speculative reasons.

Details

The endpoint can be found on https://content.warframe.com/PublicExport/. To access its contents, users must add the desired string from the index file provided in https://content.warframe.com/PublicExport/index_<language_code>.txt.lzma to https://content.warframe.com/PublicExport/Manifest/

For example, the following URL is valid as of Hotfix 30.7.6 (2021-09-23): https://content.warframe.com/PublicExport/Manifest/ExportCustoms_en.json!00_uxbrm+cu3HU-I5yyC7wXSw

The data obtained from the Mobile Export will be in the form of a JSON file. Note that the 26 character hash (e.g. !00_uxbrm+cu3HU-I5yyC7wXSw) at the end of file names will change every time the developers update the manifest.

Available Languages

Depending on the language code used, the name and description keys of most content will be localized to the appropriate locale.

Code Language
de German
en English
es Spanish (Spain)
fr French
it Italian
ja Japanese
ko Korean
pl Polish
pt Portuguese (Brazil)
ru Russian
tc Chinese (Traditional)
th Thai
tr Turkish
uk Ukrainian
zh Chinese (Simplified)

Available Content

Extracting Images

ExportManifest.json has every item's uniqueName paired with a textureLocation. textureLocation can be added to the end of https://content.warframe.com/PublicExport/ to get the item's image asset.

  • Most assets will be 512 by 512 pixels in dimensions
  • Mod images will be 256 by 256 pixels however

For example, as of Hotfix 30.7.6 (2021-09-23) the following link is valid to get Lato Lato's image: https://content.warframe.com/PublicExport/Lotus/Interface/Icons/Store/Pistol.png!00_l6qtnhCRgAMSyjjAp1RdVQ

Weapons Schema

Guns

  • "name" {string} Weapon name in all caps
  • "uniqueName" {string} Relative path to weapon data
  • "codexSecret" {boolean} Whether or not weapon is hidden from Codex if player does not have it
  • "damagePerShot" {float[]} A 20-element array of floats representing individual damage type values in the following order:
  • "totalDamage" {float} Total damage
  • "description" {string} Weapon description
  • "criticalChance" {float} Weapon critical chance
  • "criticalMultiplier" {float} Weapon critical multiplier
  • "procChance" {float} Weapon status chance
  • "fireRate" {float} Weapon fire rate
  • "masteryReq" {int} Mastery Rank requirement
  • "productCategory" {string} Weapon's product category ("Pistols", "LongGuns", "Melee", "SpaceGuns", "SpaceMelee", "SpecialItems")
  • "slot" {int} Weapon's slot number (0 for secondaries, 1 for primaries/Arch-guns, 5 for melees/Arch-melees, 7 for Exalted Weapons)
  • "accuracy" {float} Weapon accuracy rating
  • "omegaAttenuation" {float} Weapon Riven Mod disposition
  • "maxLevelCap" {int} Weapon's max rank, reserved for Kuva and Tenet weapons
  • "noise" {string} Weapon's Noise Level in all caps
  • "trigger" {string} Weapon's Trigger Type in all caps
  • "magazineSize" {int} Weapon's Magazine size
  • "reloadTime" {float} Weapon's Reload time
  • "multishot" {int} Weapon's base Multishot

Sample:

{
    "name":"MARA DETRON",
    "uniqueName":"/Lotus/Weapons/VoidTrader/VTDetron",
    "codexSecret":true,
    "damagePerShot":[0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0],
    "totalDamage":40,
    "description":"For Orokin-era smugglers, this fearsome handheld shotgun was a favored tool for 'dispute resolution'.",
    "criticalChance":0.079999998,
    "criticalMultiplier":1.5,
    "procChance":0.1371429,
    "fireRate":3.3333335,
    "masteryReq":9,
    "productCategory":"Pistols",
    "slot":0,
    "accuracy":13.333333,
    "masteryReq":9,
    "omegaAttenuation":1.1,
    "noise":"ALARMING",
    "trigger":"SEMI",
    "magazineSize":8,
    "reloadTime":1.05,
    "multishot":7
}

External Links

See Also


Advertisement