sc-charleston.publicaccessnow.com APIsc-charleston.publicaccessnow.com ↗
Look up Charleston County, SC property records by PIN. Returns owner info, assessed values, acreage, year built, exemptions, and sales history.
curl -X GET 'https://api.parse.bot/scraper/2fe2a59f-dce1-477c-a9de-1a819a498fa2/lookup_property_by_pin?pin=%3C10-digit+PIN%3E' \ -H 'X-API-Key: $PARSE_API_KEY'
Look up property assessment data by PIN (parcel ID number). Returns owner information, property address, assessed/market values, property characteristics, and sales history from the Aumentum public access portal. Values data (land_value, building_value, market_value, assessed_value, tax_year) may be null when the secondary assessor source is unavailable.
| Param | Type | Description |
|---|---|---|
| pinrequired | string | 10-digit parcel ID number with no dashes or spaces (e.g., '4611303102') |
{
"type": "object",
"fields": {
"pin": "string - Parcel ID number",
"zip": "string - ZIP code",
"city": "string - City name",
"acreage": "number or null - Property acreage",
"tax_year": "integer or null - Tax year for the assessment data",
"exemptions": "array of strings - Active exemptions",
"land_value": "integer or null - Land market value in dollars",
"owner_name": "string - Current owner name",
"year_built": "integer or null - Year the dwelling was built",
"market_value": "integer or null - Total market value in dollars",
"neighborhood": "string - Neighborhood code and name",
"tax_district": "string or null - Tax district",
"sales_history": "array of objects with book, page, date, grantor, grantee, type, deed, deed_price",
"assessed_value": "integer or null - Total assessed value in dollars",
"building_value": "integer or null - Building/improvement value in dollars",
"last_sale_date": "string or null - Date of most recent sale (MM/DD/YYYY)",
"property_class": "string - Property classification code and description",
"last_sale_price": "integer or null - Price of most recent sale in dollars",
"mailing_address": "string - Owner mailing address",
"living_area_sqft": "integer or null - Total finished living area in sq ft",
"property_address": "string - Street address",
"legal_description": "string - Legal description of property"
},
"sample": {
"data": {
"pin": "4611303102",
"zip": "29403",
"city": "CHARLESTON",
"acreage": 0.79,
"tax_year": null,
"exemptions": [],
"land_value": null,
"owner_name": "LRA PROMENADE LLC",
"year_built": null,
"market_value": null,
"neighborhood": "261351 PC51 COMMERCIAL STRIPS",
"tax_district": null,
"sales_history": [
{
"book": "1150",
"date": "11/28/2022",
"deed": "Ge",
"page": "351",
"type": "M",
"grantee": "LRA PROMENADE LLC",
"grantor": "Multiple Owners",
"deed_price": 7500000
},
{
"book": "0962",
"date": "2/15/2021",
"deed": "Ge",
"page": "121",
"type": "M",
"grantee": "LID OZ 1 LLC",
"grantor": "COUNTY OF CHARLESTON",
"deed_price": 5100000
}
],
"assessed_value": null,
"building_value": null,
"last_sale_date": "11/28/2022",
"property_class": "952 - VAC-COMM-LOT",
"last_sale_price": 7500000,
"mailing_address": "3284 NORTHSIDE PARKWAY STE 570, ATLANTA GA 30327",
"living_area_sqft": null,
"property_address": "MORRISON DR",
"legal_description": "PolTwp MapPlatB L21 MapPlatP 0036 SubdivisionName CITY OF CHARLESTON Block Lot C GovLot Tract"
},
"status": "success"
}
}About the sc-charleston.publicaccessnow.com API
The Charleston County Public Access API exposes property assessment data from the Aumentum public access portal through a single lookup_property_by_pin endpoint that returns 11 structured fields per parcel. Given a 10-digit PIN, it returns the current owner name, land and market values, building characteristics, active exemptions, and acreage — all drawn from Charleston County, SC public records.
What the API Returns
The lookup_property_by_pin endpoint accepts a single required parameter — pin, a 10-digit parcel ID number with no dashes or spaces (e.g., 4611303102) — and returns a structured record for that parcel. Response fields include owner_name, city, zip, acreage, year_built, and tax_year, giving you the core identity and physical attributes of a property in one call.
Valuation and Assessment Data
Financial fields in the response cover land_value, building_value, market_value, and assessed_val, all expressed in whole-dollar integers. These values correspond to the tax year returned in tax_year. The exemptions field returns an array of strings listing any active exemptions on the parcel (e.g., homestead, agricultural), which affects the effective taxable value.
Data Source and Coverage
All data originates from the Charleston County, SC Aumentum public access portal, which serves as the county's official property tax assessment system. Coverage is limited to parcels within Charleston County. The PIN format matches the county's parcel numbering scheme, so you'll need a valid county-issued PIN to retrieve a record.
- Verify current owner name and mailing address for a Charleston County parcel before a real estate transaction
- Compare
market_valueandassessed_valacross multiple parcels to identify assessment discrepancies - Filter properties by
year_builtto research the age distribution of structures in a target neighborhood - Audit active
exemptionson a parcel to understand its effective tax burden - Pull
acreageandland_valuedata to support land valuation or subdivision analysis - Track
tax_yearfield to confirm data freshness when monitoring assessed values over time - Populate property detail pages in a real estate application with county-sourced assessment data
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does sc-charleston.publicaccessnow.com have an official developer API?+
What does `lookup_property_by_pin` return for the valuation fields?+
land_value (market value of the land), building_value (value of any structures), market_value (total combined market value), and assessed_val (the county's assessed value used for tax calculation). All values are in US dollars and correspond to the tax_year in the same response. Any of these may be null if the county record lacks that figure.