PropertyRoom Scraper - Police & Agency Surplus Auctions avatar

PropertyRoom Scraper - Police & Agency Surplus Auctions

Pricing

from $5.00 / 1,000 results

Go to Apify Store
PropertyRoom Scraper - Police & Agency Surplus Auctions

PropertyRoom Scraper - Police & Agency Surplus Auctions

Scrape PropertyRoom.com police, agency, and government surplus auctions. Get lot IDs, titles, current bids, bid counts, time left, categories, listing URLs, and images. Search by keyword or browse by category.

Pricing

from $5.00 / 1,000 results

Rating

0.0

(0)

Developer

lulz bot

lulz bot

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Categories

Share

Scrape live auction lots from PropertyRoom.com, the largest US police, agency, and government surplus auction marketplace. Find deals on coins, jewelry, electronics, watches, vehicles, tools, and more — straight from law-enforcement and government seizures and surplus.

What it does

Given a search keyword or a category, this Actor crawls PropertyRoom's server-rendered listing pages (25 lots per page, with pagination) and returns structured data for every lot.

Input

FieldTypeDescription
searchQuerystringKeyword to search (e.g. coins, laptop, silver eagle). Takes priority over category.
categorystringCategory to browse when searchQuery is empty (e.g. Coins & Currency, Jewelry, Electronics). Slugified into the /c/{category} URL.
maxResultsintegerMax lots to scrape. 0 = unlimited. Default 50.
fetchDetailsbooleanIf true (default), fetch each lot's detail page to enrich with bid count, refreshed current bid, and category breadcrumb. Disable for faster list-only scraping.
proxyConfigurationobjectOptional proxy settings.

Output

Each lot is pushed to the dataset as:

{
"lotId": "18789784",
"title": "1890-O Morgan Silver Dollar",
"currentBid": 75.00,
"currentBidText": "$75.00",
"bidCount": 0,
"timeLeft": "07h 54m",
"closeTime": null,
"category": "Dollars",
"location": null,
"listingUrl": "https://www.propertyroom.com/l/1890-o-morgan-silver-dollar/18789784",
"imageUrl": "https://content.propertyroom.com/...jpg",
"scrapedAt": "2026-06-24T00:00:00.000Z"
}

Notes

  • Listing pages are fully server-rendered (no anti-bot wall observed), so the Actor uses fast HTTP + Cheerio parsing.
  • bidCount and breadcrumb category come from each lot's detail page (requires fetchDetails: true).
  • location is not consistently exposed by the site and may be null.
  • URL patterns: search /s/{term}/{page}, category /c/{term}/{page}, lot /l/{slug}/{lotId}.

Built with the Crawlee + Cheerio template.