Warframe Market Prices Scraper
Pricing
from $19.00 / 1,000 results
Warframe Market Prices Scraper
Scrapes Warframe Market item records and live order price summaries. Returns one flat row per item with lowest sell, highest buy, and order counts.
Pricing
from $19.00 / 1,000 results
Rating
0.0
(0)
Developer
ParseForge
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
0
Monthly active users
9 days ago
Last modified
Categories
Share
Warframe Market Prices Scraper
Scrape Warframe Market prices for any item, with live buy and sell order summaries. Get lowest sell, highest buy, order counts, and online-only prices. No API key. Export to JSON, CSV, Excel, or XML.
Warframe Market's official API needs manual item lookups and gives you raw order dumps. This reads the public item and order feeds directly, filters to online sellers, and returns each item as one flat row with a price summary. You can target specific item slugs or pull the first N items from the full catalog.
| Who uses it | What they scrape Warframe Market for |
|---|---|
| Warframe traders | Check current buy and sell prices before listing an item |
| Market analysts | Track price trends across many items over time |
| Tool builders | Feed price data into a companion app or website |
| Data hobbyists | Export the full catalog with prices for offline analysis |
What it does
This Actor collects Warframe Market item records and live order price summaries, and returns each item as one flat row.
- ๐ฏ Item slugs: fetch specific items by their URL slug, like mirage_prime_blueprint or creeping_bullseye.
- ๐ฆ Catalog mode: leave slugs empty and set maxItems to pull the first N items from the full catalog.
- ๐ Live order prices: include lowest sell, highest buy, and order counts for each item.
- ๐ข Online sellers only: count only orders from users currently online or in game, so prices reflect what you can trade right now.
- โก Fast catalog mode: turn off order prices to return item data only, much faster for large catalogs.
Results export to CSV, JSON, Excel, or XML, or straight from the API.
What you can do with Warframe Market data
๐ฐ Price check before trading.
A Warframe player enters the slug for a prime blueprint and gets the lowest sell and highest buy from online sellers, so they can list at a competitive price.
๐ Track market trends.
A market analyst runs the Actor daily on a list of popular items and stores the price summaries to spot which items are rising or falling.
๐ ๏ธ Build a price tool.
A developer pulls the full catalog with live prices and feeds the flat rows into a website that shows current Warframe Market rates.
๐๏ธ Export catalog data.
A data hobbyist sets maxItems to 1000 and exports item records with prices to Excel for offline sorting and filtering.
Why choose this scraper
| What you get | |
|---|---|
| Live price summary | Lowest sell, highest buy, and order counts for every item |
| Online-only filter | Prices from traders who are in game right now |
| Flexible input | Target specific slugs or pull the first N catalog items |
| Flat output | One row per item, ready for CSV, JSON, Excel, or XML |
How it compares
This Actor focuses on live price summaries with online-only filtering, while the competitor returns item metadata without order prices.
| Feature | ParseForge | Warframe Market Items Scraper |
|---|---|---|
| Live buy and sell order prices | Yes | Not listed |
| Online sellers only filter | Yes | Not listed |
| Price summary (lowest sell, highest buy, order counts) | Yes | Not listed |
| Item metadata (id, name, slug, icon) | Yes | Yes |
| Export to JSON, CSV, Excel | Yes | Yes |
Configure the run
Drive the Actor from item slugs or the full catalog, and set maxItems to control how many items to collect. When order prices are enabled, you can restrict the summary to online sellers only. The Input tab lists every parameter.
A first run with the defaults:
{"items": ["mirage_prime_blueprint","creeping_bullseye","secura_dual_cestra"],"maxItems": 10}
A larger pull:
{"items": ["mirage_prime_blueprint","creeping_bullseye","secura_dual_cestra"],"maxItems": 200}
Pricing
Pay-per-result: $0.042 per result collected. You pay only for the results written to your dataset.
| Results collected | Approximate cost |
|---|---|
| 100 results | $4.20 |
| 1,000 results | $42.00 |
| 10,000 results | $420.00 |
New Apify accounts start with $5 in free credit.
Free users
Free-plan runs return up to 10 results as a preview. Upgrade your Apify plan to collect up to 1,000,000 results per run.
Run it
- Create a free Apify account with $5 in credit.
- Open the Warframe Market Prices Scraper.
- Set your inputs and any filters, then click Start.
- Export the results as CSV, Excel, JSON, or XML from the Dataset tab.
Run it programmatically through the Apify API (run-sync-get-dataset-items) or the ApifyClient for JavaScript and Python.
Use with AI agents (MCP)
Give an AI agent live access to Warframe Market through the Model Context Protocol. Add the Actor to Claude, Cursor, or any MCP client:
$claude mcp add --transport http apify "https://mcp.apify.com?tools=parseforge/warframe-market-prices-scraper"
Then prompt it in plain language to run the scraper and read back the results.
Troubleshooting
Why am I getting no results?
Check that the item slugs you entered are correct. Slugs are case-sensitive and must match the last part of the warframe.market URL exactly. If you left slugs empty, make sure maxItems is at least 1.
Why are the prices different from what I see on the website?
The website may show all orders, while this Actor defaults to online sellers only. Set onlineOnly to false to include offline orders in the summary, or compare the same filters on the site.
Why is the run taking so long?
Fetching live orders for many items is slow. Reduce maxItems, or set includeOrders to false to get catalog data only, which is much faster.
Why do I see fewer items than maxItems?
The catalog may have fewer items than your maxItems value, or some slugs you provided do not exist. Check the run log for skipped slugs and verify them on warframe.market.
Can I get prices for items not in the catalog?
No, the Actor only returns items that exist on warframe.market. If an item is missing, it may be new or delisted. Check the website to confirm the slug.
FAQ
| Question | Answer |
|---|---|
| How do I find the item slug for a specific item? | Open the item's page on warframe.market and copy the last part of the URL. For example, the page for Mirage Prime Blueprint ends with 'mirage_prime_blueprint', so that is the slug. |
| What does 'online sellers only' do? | When enabled, the price summary counts only orders from users whose status is online or in game. This gives you prices you can trade right now, instead of including offline listings. |
| Can I scrape the entire Warframe Market catalog? | Yes. Leave the item slugs field empty and set maxItems to a high number, up to 1,000,000. The Actor will fetch items from the catalog in order until it reaches that count. |
| What is the difference between catalog mode and order mode? | Catalog mode returns item data only, like name and slug, and is much faster. Order mode also fetches live buy and sell orders and adds a price summary with lowest sell, highest buy, and order counts. |
| Does this Actor require an API key or login? | No. It reads the public warframe.market feeds directly, so you do not need to register an app or provide any credentials. |
| What output formats are supported? | You can export the results as JSON, CSV, Excel, or XML from the Apify dataset, depending on your plan and the export options available. |
| How often should I run this Actor to keep prices current? | Warframe Market prices change frequently. For active trading, run it every few minutes. For trend analysis, a daily or hourly schedule is usually enough. |
| Can I get historical price data? | This Actor returns the current prices at the time of the run. To build history, schedule regular runs and store the results in a dataset or database. |
| What is the maximum number of items I can scrape in one run? | The maxItems input allows up to 1,000,000 items per run. Keep in mind that fetching live orders for many items takes longer. |
| Does the Actor handle rate limits? | The Actor is designed to work within warframe.market's public access limits. If you run it very frequently, you may see slower responses, but it will continue to collect data. |
Related actors
Browse the full ParseForge collection for more scrapers.
๐ Need help? Email parseforge@protonmail.com with your run ID, your input, and what you expected.
โ ๏ธ Disclaimer. This Actor is unofficial and is not affiliated with, endorsed by, or sponsored by Warframe Market. It collects only publicly available data. You are responsible for using the collected data in compliance with the source's terms of service and applicable data-protection laws, including GDPR, CCPA, and PIPL. Do not use it to collect personal data unlawfully.
