# Zameen — 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 and browse Pakistani real estate listings with detailed property information including prices, photos, and seller contact numbers. Find your ideal property by filtering through thousands of active listings on Zameen.com's marketplace.

**Category:** Real Estate | **Website:** [zameen.com/](https://zameen.com/) | **Docs:** [parse.bot/marketplace/2bf9e543-e4dc-45c5-b807-b160f9167e77/zameen-com-api](https://parse.bot/marketplace/2bf9e543-e4dc-45c5-b807-b160f9167e77/zameen-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-zameen-com-api-2bf9e543/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_property

Retrieve full details for a single property listing by its Zameen ID. Returns price, all contact phone numbers, WhatsApp, location coordinates, agency info, and description.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `property_id` | string | Yes | Zameen property external ID (numeric string, e.g. from search_properties results). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-zameen-com-api-2bf9e543/get_property \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"property_id":"<string>"}'
```

### search_properties

Search property listings by city and location. Returns paginated results including price, contact phone numbers, WhatsApp, and agency information. Results are sorted by relevance and recency.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Property category filter. |
| `city` | string | No | City name as it appears in Zameen URL slugs (e.g. Lahore, Karachi, Islamabad). |
| `location_id` | string | No | Zameen location identifier. Combined with city to form the search scope (e.g. '1' for Lahore city-wide, '9' for DHA Defence Lahore). |
| `page` | integer | No | Page number for pagination (1-based). |
| `page_size` | integer | No | Number of results per page (1-50). |
| `purpose` | string | No | Listing purpose filter. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-zameen-com-api-2bf9e543/search_properties \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","city":"<string>","location_id":"<string>","page":"<integer>","page_size":"<integer>","purpose":"<string>"}'
```
