Discover/sc-charleston.publicaccessnow.com API
live

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.

Endpoints
1
Updated
3mo ago
Try it
10-digit parcel ID number with no dashes or spaces (e.g., '4611303102')
api.parse.bot/scraper/2fe2a59f-dce1-477c-a9de-1a819a498fa2/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
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'
All endpoints · 1 totalclick to expand

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.

Input
ParamTypeDescription
pinrequiredstring10-digit parcel ID number with no dashes or spaces (e.g., '4611303102')
Response
{
  "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.

Common use cases
  • Verify current owner name and mailing address for a Charleston County parcel before a real estate transaction
  • Compare market_value and assessed_val across multiple parcels to identify assessment discrepancies
  • Filter properties by year_built to research the age distribution of structures in a target neighborhood
  • Audit active exemptions on a parcel to understand its effective tax burden
  • Pull acreage and land_value data to support land valuation or subdivision analysis
  • Track tax_year field to confirm data freshness when monitoring assessed values over time
  • Populate property detail pages in a real estate application with county-sourced assessment data
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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.

Frequently asked questions
Does sc-charleston.publicaccessnow.com have an official developer API?+
No. The Aumentum public access portal at sc-charleston.publicaccessnow.com does not publish a documented developer API or offer API keys to the public. This Parse API provides structured programmatic access to that data.
What does `lookup_property_by_pin` return for the valuation fields?+
It returns four integer 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.
Does the API cover properties outside Charleston County, SC?+
No. The endpoint retrieves records only from the Charleston County, SC Aumentum portal. Other South Carolina counties use separate portals or different systems entirely. You can fork this API on Parse and revise it to point at another county's public access portal if you need broader coverage.
Does the API return sales history for a parcel?+
Sales history is noted in the endpoint description as data the source exposes, but it is not currently surfaced as discrete fields in the structured response — the current response shape covers owner info, values, and property characteristics. You can fork this API on Parse and revise it to extract and return individual sales transaction records.
What happens if the PIN I supply doesn't match a county record?+
The PIN must be a valid 10-digit Charleston County parcel ID with no dashes or spaces. If the PIN is malformed or does not correspond to a parcel in the county system, the endpoint will return null values or an empty result rather than property data. You can verify a PIN through the Charleston County Assessor's office before querying.
Page content last updated . Spec covers 1 endpoint from sc-charleston.publicaccessnow.com.
Related APIs in Government PublicSee all →
athletic.net API
Search and analyze cross country and track & field performance data across the US, including athlete profiles, meet results, team rosters, and rankings. Access comprehensive meet information, historical records, and state-level competition data to track athlete progress and discover top performers.
alienvault.com API
Search and analyze global threat intelligence data including indicators of compromise, threat pulses, and adversary profiles from the Open Threat Exchange community. Monitor recent security alerts and access detailed information about threats and adversaries to strengthen your cybersecurity defenses.
eprocurement.gov API
Monitor India's public procurement opportunities by accessing active tenders, bids closing today, global tenders, high-value contracts, and cancelled tenders from the Central Public Procurement Portal. Search tender details, browse participating organizations, and track real-time procurement statistics to stay informed on government contracting opportunities.
maradminbot.com API
Search and retrieve official Marine Corps MARADMIN announcements from Marines.mil, filtering by year, status, and keyword to stay updated on the latest personnel and administrative directives. Get detailed information about specific announcements by number or browse the most recent updates to ensure you never miss critical Marine Corps guidance.
13f.info API
13f.info API
illinoisreportcard.com API
Search and analyze comprehensive performance data for Illinois public schools, districts, and the state, including academic achievements in ELA, math, and science, student demographics, teacher and administrator information, school finances, and environmental conditions. Compare schools side-by-side, track growth metrics, and access accountability ratings and school highlights to make informed decisions about education quality.
customs.gov.mv API
Check import/export duties, tariff classifications, and exchange rates for Maldives customs compliance, plus track vessel movements, company registrations, and declaration statuses. Get real-time data directly from the official customs portal to streamline your trade and logistics operations.
bizapedia.com API
Search for detailed business profiles and contact information from Bizapedia, including company details, employee data, and communication channels. Access comprehensive business intelligence to research companies and build targeted contact lists.