Listing · PROPRAVEN_GOVTECH
PropRaven GovTech
Civic-tech ready: parcels, taxes, permits, geography. No owner data.
Civic-tech vendors · Municipalities · Public-sectorRefreshed monthly
Description
PropRaven GovTech is a civic-tech-friendly slice — every parcel with addresses, property attributes, multi-year tax assessment history, and 39.9M+ building permits — without exposing personally-identifiable owner records. Designed for municipal portals, public-sector dashboards, and civic-tech vendors.
Same stable PRPV identifiers as the rest of the PropRaven catalog: if you ever need to upgrade to the owner-graph or AVM tiers, your existing keys port directly.
What's included
- 230M+ parcels with situs address, lot size, geometry polygon, zoning, land use.
- 230.9M property records with year built, building area, beds, baths, units, MISMO-normalized property type.
- 188.1M tax records with multi-year assessment history (assessed values, tax amount, exemptions).
- 24.0M building permits with type, status, valuation, contractor.
- Full Census geographic hierarchy (block / tract / place / county / MSA / state).
Use cases
- Municipal portal backends: power public parcel lookup tools without managing 50+ assessor APIs.
- Permitting integrations: cross-jurisdictional permit search with normalized status / type vocabularies.
- Tax-appeal screening: identify parcels with year-over-year assessment growth above benchmark.
- Equity / Justice40 dashboards: parcel-level census-tract joins to overlay federal equity scoring on local stock.
Sample query — recent permits in your jurisdiction
SELECT
p.permit_number,
p.permit_type,
p.status,
p.valuation,
p.issued_date,
pa.apn,
pr.year_built
FROM PROPRAVEN_GOVTECH.GOVTECH.PERMIT p
JOIN PROPRAVEN_GOVTECH.GOVTECH.PARCEL pa USING (prpv_parcel_id)
JOIN PROPRAVEN_GOVTECH.GOVTECH.PROPERTY pr USING (prpv_parcel_id)
WHERE p.jurisdiction_id = 'austin-tx'
AND p.permit_type = 'NEW_CONSTRUCTION'
AND p.issued_date >= DATEADD(month, -12, CURRENT_DATE())
ORDER BY p.issued_date DESC
LIMIT 100;
Refresh cadence
Refreshed monthly. Per-row _LOADED_AT and _SOURCE_AS_OF columns expose the actual freshness for any row in your query result.
Try before you buy
Subscribe to PropRaven Preview for a free 10K-parcel Mecklenburg County NC sample with the same schema. Once you've validated your queries against the sample, subscribe to PROPRAVEN_GOVTECH for full national data.
Questions? hello@propraven.com — or browse the data dictionary and sample queries.