Add enrich=true to a supported endpoint to supplement its canonical response with normalized information discovered from curated public web sources.
Enrichment is additive. It never overwrites the endpoint response: the original payload is returned in apiResponse, and web-derived data is returned separately in enrichment.
curl -G https://api.parcelkit.us/api/property \
-H "x-api-key: sk_live_your_key" \
--data-urlencode "address=550 Gunston Ct, Conroe, TX 77302" \
--data-urlencode "enrich=true"Omitting the parameter, or sending enrich=false, uses the standard endpoint path without live-web enrichment.
{
"apiResponse": {
"...": "The normal endpoint response, unchanged"
},
"enrichment": {
"status": "partial",
"mode": "live_web",
"profile": "property",
"templateVersion": "property.v2",
"address": "550 Gunston Ct, Conroe, TX 77302",
"normalized": {
"...": "Verified and normalized web data"
},
"quality": {
"overall": "partial",
"addressMatch": "high"
}
}
}The public response contains normalized values and quality metadata. Search queries, raw pages, extraction rules, provider routing, and unresolved source conflicts stay internal.
/api/propertyListing, market, feature, history, school, and climate signals
/api/schoolsAssignment consensus, ratings, grades, enrollment, and campus details
/api/crimeCommunity safety, historical trends, offense patterns, and registry signals
/api/deedsPublic sale and listing history plus deed-related mentions
/api/floodModeled risk, property statements, and area flood context
/api/neighborsNeighborhood market, value, amenities, access, and resident signals
completeAll core sections for the profile contain accepted evidence.
partialUseful evidence was found, but one or more sections remain incomplete.
unavailableNo evidence passed the identity, scope, or quality checks.
Section confidence is reported as high, medium, low, or unavailable. A null value means that the field was not verified from accepted evidence at request time; it does not mean zero or none.
Public web data is supporting evidence, not a legal, appraisal, insurance, school-boundary, or public-safety guarantee. Use the endpoint's canonical data and the enrichment quality fields together.
See Pricing for the enriched-request credit cost.
Select an endpoint