# Dot Property Philippines — 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 residential properties for rent or sale on Dot Property Philippines and retrieve detailed information like pricing, specifications, and agent details from individual listings. Access comprehensive property data to compare options and make informed real estate decisions.

**Category:** Real Estate | **Website:** [dotproperty.com.ph/](https://dotproperty.com.ph/) | **Docs:** [parse.bot/marketplace/7a0649a2-d0bc-44d6-8df5-2857a69adae7/dotproperty-com-ph-api](https://parse.bot/marketplace/7a0649a2-d0bc-44d6-8df5-2857a69adae7/dotproperty-com-ph-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-dotproperty-com-ph-api-7a0649a2/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_listing_detail

Retrieve full details for a specific property listing page including title, price, description, images, amenities, agent info, and JSON-LD structured data. The url parameter should be a listing URL obtained from search_listings results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full URL of the listing detail page on dotproperty.com.ph (from search_listings results[*].url). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dotproperty-com-ph-api-7a0649a2/get_listing_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### search_listings

Search for property listings on dotproperty.com.ph filtered by region, city, property type, and listing type. Returns paginated results. The URL is constructed from the property_type, listing_type, region, and city slugs. Invalid slugs result in an upstream error. Each result includes basic info (title, price, location, specs) and a URL for fetching full details.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city` | string | No | City slug to search in (e.g. 'makati', 'quezon-city', 'taguig', 'pasig'). |
| `listing_type` | string | No | Listing type: 'rent' or 'sale'. |
| `page` | integer | No | Page number for pagination. |
| `property_type` | string | No | Type of property slug: 'townhouses', 'condos', 'houses'. |
| `region` | string | No | Region slug to search in (e.g. 'metro-manila', 'cebu', 'davao'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dotproperty-com-ph-api-7a0649a2/search_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city":"<string>","listing_type":"<string>","page":"<integer>","property_type":"<string>","region":"<string>"}'
```
