PYthon Warframe Market API(pywmapi)
π₯ API for warframe market, implemented in Python.
"Thank you tinsuit, a fine trade. Transaction complete, haha!" -- Maroo
For now, the implemented function is listed below:
- auth
- β sign in
- π register
- π restore password
- profile
- β get current user's profile
- π² manage current user profile
- β get a user's profile
- π² get all of a user's achievements
- π² get all of a user's reviews
- β set current user's online/offline status
- items
- β list all tradable items
- β get info about an item
- statistics
- β get statistics of an item
- π² get global market statistics
- orders
- β get orders of a single item
- π² get orders for the last 4 hours
- β update a single order on the current profile
- β delete a single order on the current profile
- β add a new order for the current profile
- π² get user's sale statistics(closed orders)
- β get all of a user's orders
- liches
- β list all lich weapons
- β list all lich ephemeras
- β list all lich quirks
- rivens
- β list all riven items
- β get a list of riven attributes
- misc
- π² get a list of all known game locations
- π² get a list of all known npcs
- π² get a list of all known missions
- auctions
- β
create auction
β οΈ - π² get a list of riven auctions by given search params
- π² get a list of lich auctions by given search params
- β
create auction
- auction entryοΈ
- π² get info about auction by auction id
- π² get auction bids by auction id
Symbols:
- β : implemented
- π: unavailable due to some intractable problem
- π²: not implemented yet
β οΈ : experimental and unstable
There are more APIs that are not recorded in the official documentation. Once all the above APIs are done, we would get on these undocumented APIs ASAP.
According to the official API documentation, there's a limit on the API that could only be called 3 times per sec. Otherwise, the request may be blocked by the cloudflare.
pip install pywmapi
The version of Python MUST >= 3.7 since dataclasses
is used.
package of pywmapi is structured as:
.
βββ auth
βββ common
βββ exceptions
βββ experimental
β βββ auctions
βββ items
βββ lang
βββ liches
βββ orders
βββ profile
βββ rivens
βββ statistics
βββ utils.py
auth
: authentication such as signinexperimental
: experimental functionalitiesauctions
: auctions related
items
: item relatedliches
lich relatedorders
: orders manipulationprofile
: user profile manipulationrivens
: riven relatedstatistics
: statistics of items
πͺ More functionalities is coming!
ποΈ Better documentation is under construction!
The param url_name
of some functions is regarded as the unique name for each item. For instance, if I search for the item Chroma Prime Systems on warframe market, the url for this page become https://warframe.market/items/chroma_prime_systems. And the last part of this url string is exactly the url_name
for this item, i.e. chroma_prime_systems
!
Another way to get url_name
for an item is through the items.list_items()
function.
First, we import the package as:
import pywmapi as wm
To list all of the tradable items:
wm.items.list_items()
To get the info for any item with its url_name
:
wm.items.get_item("chroma_prime_systems")
To get the orders of a specific item:
wm.items.get_orders("chroma_prime_systems")
To create order:
sess = wm.auth.signin("your_account", "your_password")
# new selling order item of "Flame Gland" for 1000 platinum, quantity 1, rank 0 and invisible
new_item = wm.orders.OrderNewItem(
item_id="5be5f5a23ffcc7038857f119",
order_type=wm.common.OrderType.sell,
platinum=1000,
quantity=1,
rank=0,
visible=False,
)
new_order = wm.orders.add_order(sess, new_item)
To get the statistics of historical prices of any item:
wm.statistics.get_statistic("chroma_prime_systems")
Signin & get current orders:
sess = wm.auth.signin("your_account", "your_password")
sell_orders, buy_orders = wm.orders.get_current_orders(sess)
To get all rivens templates:
wm.rivens.list_items()
Some of these function may have various optional params, such as platform
, lang
, include
, etc.
More APIs and docs could be found in corresponding packages and docstrings.
Warframe market official API documentation
See CHANGELOG.md.
Check out CONTRIBUTE.md for more information.
Feel free to make any issue or PR! π
Or contact me in game!
Any sort of donation in game would be appreciated.
Contact me in game:
/w AyajiLin Hi! ${Your words here}.
π€£ Relics or 5 platinums would be enough.