Fetch real-time data from 100+ websites,No development or maintenance required.
Over 100 million real residential IPs from genuine users across 190+ countries.
SCRAPING SOLUTIONS
Get accurate and in real-time results sourced from Google, Bing, and more.
With 120+ prebuilt and custom scrapers ready for any use case.
No blocks, no CAPTCHAs—unlock websites seamlessly at scale.
Execute scripts in stealth browsers with full rendering and automation
PROXY INFRASTRUCTURE
Over 100 million real residential IPs from genuine users across 190+ countries.
Reliable mobile data extraction, powered by real 4G/5G mobile IPs.
For time-sensitive tasks, utilize residential IPs with unlimited bandwidth.
Fast and cost-efficient IPs optimized for large-scale scraping.
SCRAPING SOLUTIONS
PROXY INFRASTRUCTURE
DATA FEEDS
Full details on all features, parameters, and integrations, with code samples in every major language.
LEARNING HUB
ALL LOCATIONS Proxy Locations
TOOLS
RESELLER
Get up to 50%
Contact sales:partner@thordata.com
Products $/GB
Fetch real-time data from 100+ websites,No development or maintenance required.
Get real-time results from search engines. Only pay for successful responses.
Execute scripts in stealth browsers with full rendering and automation.
Bid farewell to CAPTCHAs and anti-scraping, scrape public sites effortlessly.
Dataset Marketplace Pre-collected data from 100+ domains.
Over 100 million real residential IPs from genuine users across 190+ countries.
Reliable mobile data extraction, powered by real 4G/5G mobile IPs.
For time-sensitive tasks, utilize residential IPs with unlimited bandwidth.
Fast and cost-efficient IPs optimized for large-scale scraping.
Data for AI $/GB
Pricing $0/GB
Docs $/GB
Full details on all features, parameters, and integrations, with code samples in every major language.
Resource $/GB
EN $/GB
产品 $/GB
AI数据 $/GB
定价 $0/GB
产品文档 $/GB
资源 $/GB
简体中文 $/GB

Property-data collection RFPs ask the wrong questions in 90% of drafts (“How many IPs do you have?” “Can you scrape Zillow?”), and vendors answer them without anyone noticing the questions that determine project survival — coverage semantics, geo fidelity, change-detection economics, and structured-field depth — went unasked. This is a real estate data RFP read line by line, with a good answer, a red flag, and the architecture behind it.
If you’re a proptech data lead, a brokerage analytics team, or a market-research firm assembling listing data, you’ve drafted this document before. Let’s annotate it.
What the RFP means: coverage of the platforms that matter plus the long tail that differentiates you.
A good answer distinguishes the two tiers explicitly. For the majors: pre-built scrapers with structured field extraction (price, beds, baths, square footage, days-on-market, status, image sets), not raw HTML hand-offs. Thordata’s catalog covers 120+ pre-built targets including Zillow, with results delivered as JSON, CSV, or XLSX at roughly $0.50–$1.00 per 1,000 results — and the field schema is stable across portal redesigns, because parser maintenance is the vendor’s bill, not yours. For the MLS long tail: raw residential proxy capability with the same account and dashboard, city-targeted where the MLS is city-scoped, at published volume pricing ($2.00/GB down to $0.65/GB).
Red flag: an answer that promises “any site” without distinguishing which are maintained scrapers versus which are your engineering problem.
What the RFP means: geo fidelity, and it’s quietly the hardest requirement in the document.
Property markets are hyper-local, and portal behavior is location-sensitive: what a search returns from a Phoenix IP differs from a Phoenix-residential IP on mobile. Centralized collection produces “average Arizona” data for a Phoenix product. The correct answer names targeting granularity — country, state, city, and ASN-level, without surcharge — and session behavior: sticky sessions for search-and-paginate flows (Thordata supports up to 90 minutes) so a full result set comes from one coherent session, not forty unrelated ones.
A good answer also volunteers how it proves this: exit-IP verification on sample runs, geo-match rates, and a willingness to let you audit a metro with your own local testers. Red flag: “we have 195 countries” as an answer to a question about Phoenix.
What the RFP means: this is a change-detection budget question dressed as a feature.
The instinct is to re-fetch everything at the highest cadence, which is how collection budgets die. The economics that work: per-result pricing makes daily refreshs a linear decision (a full 100,000-listing sweep in one metro is about $50 at the volume rate, not a “let me check the traffic budget” conversation), and structured status fields make delta-detection trivial — you diff records, not HTML.
A good answer separates the pipeline: high-frequency deltas on hot inventory (status flips, price cuts, new listings), low-frequency completeness checks on the long tail, and scheduled collection jobs for both rather than cron scripts you maintain. Red flag: pricing that makes full refreshs feel expensive — if daily sweeps require an apology email to finance, the architecture fights your requirements.
What the RFP means: image collection at scale, the budget line that surprises teams.
Listing images are storage, bandwidth, and deduplication questions. A good answer: the same record-based architecture (fetch structured records, diff image URLs, pull only changed assets), object-storage delivery, and record-level pricing on the metadata path so the expensive path — bytes — only runs on actual change. For teams that also need visual understanding models (staging detection, photo quality scoring), the same vendor’s dataset catalog serves pre-built image-text records from about $0.25 per 1,000 records — the training-side counterpart to the collection pipeline, in one account.
Red flag: a flat “per GB of media” line with no change-detection strategy.
What the RFP means: this is a search-visibility question wearing a data-lawyer costume — because half these signals live in how properties and agents surface in search, not just on portals.
The serious proptech roadmap now includes: monitoring what appears for “homes in [suburb]” queries (portals, indexers, and — increasingly — answer-layer placements), tracking agent-brand SERP presence, and timing market-entry intelligence with search demand. The SERP monitoring solution is the fit: scheduled structured collection of organic results, local pack presence, and ads at roughly $0.70 per 1,000 responses, geo-pinned per market, delivered as records that join into the same warehouse as listing data. A continuous SERP data crawling job replaces the manual “check Google from incognito” routine that every market-research team quietly maintains.
Red flag: a data vendor whose answer to visibility questions is “that’s a different tool.”
What the RFP means: you need to survive your own legal review and your next enterprise deal.
A good answer here is concrete: documented opt-in sourcing for residential pools (Thordata describes its model this way), rate-limit discipline built into managed collection rather than left to your engineer’s conscience, and a deletion process with stated turnaround. If your requirement is a signed enterprise agreement with named SLAs and DPAs, that’s an enterprise-motion vendor’s strength — and a legitimate one; the published self-serve model above serves technically self-sufficient teams, and neither posture is a proxy for quality.
Red flag: either direction — refusing to discuss provenance, or refusing to discuss what a contract can’t give you.
What the RFP means: total week-to-first-data matters more than any feature line.
Annotated example of the call the winning architecture makes:
from thordata import Thordata
client = Thordata(api_key="YOUR_API_KEY")
def metro_sweep(city: str, page: int = 1):
result = client.scrape(
scraper="zillow_listings", # maintained parser, stable schema
query=f"{city},AZ",
geo="US-AZ", # collected as a local would see it
output_format="json",
)
for listing in result.records:
warehouse.upsert({
"mls_like_id": listing["zpid"],
"price": listing["price"],
"status": listing["status"], # for sale | pending | off
"days_on_market": listing.get("days_on_market"),
"photos_hash": hash(tuple(listing["photo_urls"])),
"collected_at": result.created_at,
})
The comment that matters: every field here is the vendor’s maintenance problem, not yours. Portal redesigns are their outage, not yours.
A useful evaluation rubric weights these five questions most heavily: (1) does the vendor maintain parsers with a stable schema, (2) does geo fidelity survive an audit in your worst metro, (3) does per-result pricing make your target refresh cadence cheap enough to not argue about, (4) does the same account cover the long tail of sites with raw proxy capability, and (5) is provenance documented in writing. Two platforms typically score (1) and (3) with a single product; the ones that score all five — collection, pre-built scrapers, unlocker for the hostile 5%, SERP-side monitoring, and record-priced datasets — are the ones that shrink your vendor count without shrinking your risk. Run the free trial credits against one metro, one week, one warehouse table — and let the join between listing data and search-visibility data make the argument the RFP couldn’t.
Looking for
Top-Tier Residential Proxies?
您在寻找顶级高质量的住宅代理吗?
Java Scraping Timeout Fix: Proxy Optimization Guide
In Java web scraping developme ...
mia
2026-09-15
Test Thordata Residential Proxies Free: Get Up to 500MB for Your First Project
New users can test Thordata Re ...
greta
2026-09-11
Proxy IP Reputation and Clean IPs: Why a “Fresh” Proxy Still Gets Blocked
What decides a proxy IP’s repu ...
Chris
2026-09-11
Shared vs. Dedicated Proxies: When Exclusive IPs Are Worth the Extra Cost
Shared or dedicated proxies? H ...
Chris
2026-09-11
一千萬次無頭瀏覽器請求之後:一場壓力測試,以及 Thordata 與 Oxylabs 各自勝出的地方
JavaScript 密集的目標會擊垮簡單爬蟲,於是團隊升級 ...
Xyla Huxley
2026-09-11
1,000 美元能買到幾筆職缺?一個招聘數據分析團隊的實際計算
勞動市場情報是一門資料算術的生意——每美元採到最多職缺的團隊 ...
Xyla Huxley
2026-09-11
六週、六十億支影片:一個影片搜尋產品的建造日誌
打造一個影片搜尋產品——使用者輸入一句話,就能在數百萬支影片 ...
Xyla Huxley
2026-09-11
你的 AI Agent 讀文字讀得很漂亮,但它對其他一切是盲的
企業 AI Agent 的檢索語料以文字為主,而它們被問到的 ...
Xyla Huxley
2026-09-11
那支活了九天的仿冒商品:一次廣告驗證監控的完整事故复盘
一個品牌保護團隊的監控平台,在整個區域的仿冒品浪潮持續九天未 ...
Xyla Huxley
2026-09-11