Warframe Market Prices Scraper avatar

Warframe Market Prices Scraper

Pricing

from $19.00 / 1,000 results

Go to Apify Store
Warframe Market Prices Scraper

Warframe Market Prices Scraper

Track live platinum prices on Warframe.market for any tradable item. Pull item name, tags, ducats, mod ranks, plus the lowest sell and highest buy across active orders with seller counts. Handy for flipping prime parts, pricing mods, or watching the trade economy.

Pricing

from $19.00 / 1,000 results

Rating

0.0

(0)

Developer

ParseForge

ParseForge

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

6 days ago

Last modified

Share

ParseForge Banner

🎮 Warframe Market Prices Scraper

🚀 Export live Warframe.market platinum prices in seconds. Pull any tradable item with its lowest sell and highest buy across active orders.

🕒 Last updated: 2026-06-08 · 📊 Up to 21 fields per record · official Warframe.market API · live order prices

Turn Warframe.market into clean, structured records you can drop into a trading spreadsheet, a price tracker, or a Discord flipping bot. Give the Actor a list of item slugs (or let it pull from the full catalog) and get each item's name, tags, ducats, and mod ranks, plus a live price summary built from active buy and sell orders.

Coverage is the public Warframe.market catalog and live order book as the official v2 API publishes it: every tradable item with its English name, tags, ducat value, mod ranks, and trading tax, enriched with the lowest sell price, highest buy price, and order counts from currently active orders. Data is read live, so every run reflects the market at run time.

🎯 Target Audience💡 Primary Use Cases
Traders and prime-part flippersFind the best sell and buy prices fast
Discord and Telegram bot buildersPower a !price lookup command
Price-tracker and tool makersSnapshot the market on a schedule
Players pricing their inventoryCheck what an item is worth right now

📋 What the Warframe Market Prices Scraper does

This Actor calls the official Warframe.market v2 API and returns one clean record per item:

  • Item slugs — pass a list of slugs (the last path segment of any item URL), or leave empty to take the first items from the full catalog.
  • Live order prices — fetch active buy and sell orders and add a price summary (lowest sell, highest buy, order counts). Turn off for catalog data only, which is much faster.
  • Online sellers only — when pulling prices, count only orders from users who are online or in game, so the summary reflects prices you can actually trade right now.

You control how many items come back, and every record carries a scrapedAt timestamp.

🎬 Full Demo (🚧 Coming soon)

⚙️ Input

FieldTypeDescription
itemsarrayWarframe.market item slugs to fetch, for example mirage_prime_blueprint or creeping_bullseye. Find a slug in any item URL (the last path segment). Leave empty to take the first items from the full catalog.
includeOrdersbooleanFetch live buy and sell orders for each item and add a price summary (lowest sell, highest buy, order counts). Turn off to return catalog item data only. Defaults to true.
onlineOnlybooleanWhen pulling order prices, only count orders from users currently online or in game. Defaults to true.
maxItemsintegerHow many items to return. Free plan is capped at 10.

Example 1 — price specific items, online sellers only

{
"items": ["mirage_prime_blueprint", "creeping_bullseye", "secura_dual_cestra"],
"includeOrders": true,
"onlineOnly": true,
"maxItems": 10
}

Example 2 — catalog data only, no order prices

{
"items": [],
"includeOrders": false,
"maxItems": 50
}

⚠️ Good to Know: prices are in platinum (p). With onlineOnly on, the summary reflects only sellers and buyers who are reachable right now, which is the most realistic picture for trading. Turn includeOrders off when you only need catalog metadata and want a much faster run.

📊 Output

Each record looks like this:

FieldDescription
🖼 imageUrlItem icon
📌 nameItem name (English)
🏷 slugWarframe.market item slug
🆔 idInternal item ID
🗂 tagsArray of item tags
🪙 ducatsDucat value
🔢 maxRankMaximum mod rank (mods only)
🎖 reqMasteryRankRequired mastery rank
💸 tradingTaxCredit trading tax
🧩 setRootWhether this item is the root of a set
📖 wikiLinkLink to the wiki page
📝 descriptionItem description
💸 minSellPriceLowest sell price in platinum
💰 maxBuyPriceHighest buy price in platinum
📉 sellOrderCountNumber of counted sell orders
📈 buyOrderCountNumber of counted buy orders
🔢 totalOrderCountTotal counted orders
🔗 itemUrlLink to the item on warframe.market
🕒 scrapedAtCollection timestamp
errorNull on success

Real sample — a prime part with live prices

{
"imageUrl": "https://warframe.market/static/assets/items/images/en/mirage_prime_blueprint.png",
"name": "Mirage Prime Blueprint",
"slug": "mirage_prime_blueprint",
"id": "5a2feeb1c2c9e90cbdaa61b3",
"tags": ["blueprint", "prime", "warframe", "mirage"],
"ducats": 15,
"maxRank": null,
"reqMasteryRank": null,
"tradingTax": 2000,
"setRoot": false,
"wikiLink": "https://warframe.fandom.com/wiki/Mirage/Prime",
"description": "The blueprint for the Mirage Prime Warframe.",
"minSellPrice": 18,
"maxBuyPrice": 12,
"sellOrderCount": 34,
"buyOrderCount": 9,
"totalOrderCount": 43,
"itemUrl": "https://warframe.market/items/mirage_prime_blueprint",
"scrapedAt": "2026-06-08T17:09:21.000Z",
"error": null
}

Real sample — a mod with ranks

{
"imageUrl": "https://warframe.market/static/assets/items/images/en/creeping_bullseye.png",
"name": "Creeping Bullseye",
"slug": "creeping_bullseye",
"id": "54e644ffe779897594fa68d2",
"tags": ["mod", "pistol", "rare"],
"ducats": null,
"maxRank": 5,
"reqMasteryRank": null,
"tradingTax": 6000,
"setRoot": null,
"wikiLink": "https://warframe.fandom.com/wiki/Creeping_Bullseye",
"description": "A pistol mod that trades fire rate for critical chance.",
"minSellPrice": 10,
"maxBuyPrice": 5,
"sellOrderCount": 21,
"buyOrderCount": 4,
"totalOrderCount": 25,
"itemUrl": "https://warframe.market/items/creeping_bullseye",
"scrapedAt": "2026-06-08T17:09:21.000Z",
"error": null
}

✨ Why choose this Actor

  • Reads the official Warframe.market v2 API, not a scraped HTML page.
  • A ready-made price summary: lowest sell, highest buy, and order counts.
  • Online-only filtering so prices reflect what you can actually trade now.
  • Works on a hand-picked slug list or the full catalog.
  • No account, no key, and no login required.

📈 How it compares to alternatives

ApproachEffortStructured fieldsPrice summaryMaintenance
This ActorOne runYesYesNone on your side
Checking each item page by handHoursInconsistentManualConstant
Writing your own API clientDaysDependsManualYou own the upkeep

🚀 How to use

  1. Create a free Apify account using this sign-up link.
  2. Open the Warframe Market Prices Scraper.
  3. Add the item slugs you want (or leave items empty for the catalog).
  4. Keep includeOrders on for live prices, then set maxItems.
  5. Click Start and grab your results when the run finishes.

💼 Business use cases

Trading and flipping

GoalHow this helps
Find arbitrage on prime partsCompare minSellPrice and maxBuyPrice
Price a batch of itemsPass a slug list and read the summaries

Bots and tools

GoalHow this helps
Power a price-lookup botFeed it name, slug, and price fields
Build a watchlist trackerRe-run on a schedule for your slugs

Market analytics

GoalHow this helps
Track the trade economySnapshot prices over time
Study supply and demandCompare sell and buy order counts

Inventory pricing

GoalHow this helps
Value your stockLook up each item's live prices
Decide what to sellSort by spread between buy and sell

🔌 Automating Warframe Market Prices Scraper

Connect runs to the tools you already use:

  • Make and Zapier to trigger runs and route prices into sheets or databases.
  • Slack or Discord to post price alerts when a run finishes.
  • Airbyte to load results into a warehouse.
  • GitHub Actions to schedule periodic snapshots.
  • Google Drive to archive each run's output.

🌟 Beyond business use cases

  • Research: study how a player-driven trade economy behaves.
  • Personal: build your own price cheat sheet.
  • Non-profit: power a community trading resource.
  • Experimentation: prototype a game-market app without writing a scraper.

🤖 Ask an AI assistant

Paste your results into ChatGPT, Claude, Perplexity, or Microsoft Copilot and ask it to rank items by profit margin, spot underpriced sells, or build a flipping shortlist.

❓ Frequently Asked Questions

Do I need a Warframe account or API key? No. The Actor reads the public Warframe.market v2 API, which needs no login or key.

Where do I find an item slug? It is the last path segment of any item URL on warframe.market, for example mirage_prime_blueprint.

What does "online sellers only" do? With onlineOnly on, the price summary counts only orders from users currently online or in game, so it reflects prices you can trade right now.

What currency are prices in? Platinum (p), the in-game tradable currency.

Can I skip order prices for speed? Yes. Turn includeOrders off to return catalog item data only, which is much faster.

Why are ducats or mod ranks sometimes null? Ducats apply to prime parts and maxRank applies to mods. The Actor passes through whatever the source provides for each item type.

What if a slug does not exist? The Actor records an error row for that slug and continues with the rest.

How fresh is the data? Every run reads live from Warframe.market, so it reflects the market at run time.

Can I export to Excel or CSV? Yes. Apify lets you download the dataset as CSV, Excel, JSON, or XML.

Can I schedule this? Yes. Use Apify Schedules to snapshot prices on any cadence.

🔌 Integrate with any app

Results are available through the Apify API, so you can pull them into any app, database, or workflow you already run.

💡 Pro Tip: browse the complete ParseForge collection.

🆘 Need Help? Open our contact form

⚠️ Disclaimer: independent tool, not affiliated with Warframe.market, Digital Extremes, or Warframe. Only publicly available data is collected.