# Sc Charleston Publicaccessnow — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Look up property assessment data from Charleston County, SC by PIN to find owner information, assessed values, property characteristics, and sales history. Perfect for researching real estate details, verifying property information, or tracking Charleston County property records.

**Category:** Government & Public Data | **Website:** [sc-charleston.publicaccessnow.com/RealPropertyRecordSearch.aspx](https://sc-charleston.publicaccessnow.com/RealPropertyRecordSearch.aspx) | **Docs:** [parse.bot/marketplace/67855b8e-4dec-4803-8baf-7e97b287aa40/sc-charleston-publicaccessnow-com-api](https://parse.bot/marketplace/67855b8e-4dec-4803-8baf-7e97b287aa40/sc-charleston-publicaccessnow-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-sc-charleston-publicaccessnow-com-api-67855b8e/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### lookup_property_by_pin

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `pin` | string | Yes | 10-digit parcel ID number with no dashes or spaces (e.g., '4611303102') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sc-charleston-publicaccessnow-com-api-67855b8e/lookup_property_by_pin \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"pin":"<string>"}'
```
