# qPublic Property Records — 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.

> Search for properties on qPublic and access comprehensive details including owner information, valuations, building and land characteristics, sales history, tax exemptions, and fees. Retrieve complete property records to research real estate, verify ownership, or analyze property values.

**Category:** Real Estate | **Website:** [qpublic.schneidercorp.com/Application.aspx?App=SpartanburgCountySC&Layer=Parcels&PageType=Search](https://qpublic.schneidercorp.com/Application.aspx?App=SpartanburgCountySC&Layer=Parcels&PageType=Search) | **Docs:** [parse.bot/marketplace/5050f2e9-c499-47f1-9a56-95e5f1529f26/qpublic-property-records-api](https://parse.bot/marketplace/5050f2e9-c499-47f1-9a56-95e5f1529f26/qpublic-property-records-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-qpublic-property-records-api-5050f2e9/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_property_details

Retrieve full property details for a specific parcel ID in Spartanburg County, SC. Returns structured data including summary (parcel info, land size, utilities, property usage), owners, multi-year valuations (market, taxable, assessed values), buildings with area breakdowns, land records, sales history, fees, exemptions, and yard items. The parcel_id is obtained from search_properties results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `parcel_id` | string | Yes | Parcel ID obtained from search_properties results (e.g. '7-13-01-001.02', '5-20-02-028.00'). Format is digits and dashes with a decimal suffix. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-qpublic-property-records-api-5050f2e9/get_property_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"parcel_id":"<string>"}'
```

### search_properties

Search for properties by address in Spartanburg County, SC. Returns a list of matching properties with parcel ID, account number, owner, address, city, and legal description. When only one result is found, the response also includes a detail object with full property information. Multiple results require a follow-up get_property_details call for full details. Partial addresses and street names are accepted as search input.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `address` | string | Yes | Street address to search for (e.g. '100 S MAIN ST', '1000 E MAIN ST', 'E MAIN ST'). Partial addresses and street names are accepted. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-qpublic-property-records-api-5050f2e9/search_properties \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"address":"<string>"}'
```
