# HAR.com — 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.

> Access active listings and past real estate transactions for Houston agents, including property addresses, prices, property types, and sale dates. Search agent performance data to compare current listings with historical sales records.

**Category:** Real Estate | **Website:** [www.har.com/susan-garczynski/agent_susangar](https://www.har.com/susan-garczynski/agent_susangar) | **Docs:** [parse.bot/marketplace/27fbbc1e-9ad1-4d16-b36e-12c1cf325ed2/har-com-api](https://parse.bot/marketplace/27fbbc1e-9ad1-4d16-b36e-12c1cf325ed2/har-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-har-com-api-27fbbc1e/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_agent_listings

Retrieve all active listings and past transactions for a HAR.com real estate agent. Returns data across sections: For Sale, For Rent, Recently Sold, Recently Rented, and Recent Showings. Each listing includes address, zip code, price, status, property type, beds/baths/sqft, and for sold/rented properties: who the agent represented and the transaction date. Requires either agent_slug or agent_id to identify the agent; both are recommended for reliable resolution. Sections can be filtered via a comma-separated string of Section codes.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `agent_id` | string | No | Agent ID used in HAR URLs (e.g., 'susangar' from listings_susangar). |
| `agent_slug` | string | No | Agent URL slug used in HAR profile URLs (e.g., 'susan-garczynski' from har.com/susan-garczynski/...). |
| `sections` | string | No | Comma-separated list of sections to include. Empty string returns all sections. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-har-com-api-27fbbc1e/get_agent_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"agent_id":"<string>","agent_slug":"<string>","sections":"<string>"}'
```
