# Dils — 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 explore real estate developments across Portugal's top regions including Lisboa, Porto, and Algarve, accessing detailed property information, unit pricing, amenities, and photos. Compare available fractions and developments to find your ideal property investment or home.

**Category:** Real Estate | **Website:** [dils.pt/empreendimentos/site-empreendcomercializacao?lbl=34965598](https://dils.pt/empreendimentos/site-empreendcomercializacao?lbl=34965598) | **Docs:** [parse.bot/marketplace/31400590-a7a1-47ba-8e8a-3a445a34bf14/dils-pt-api](https://parse.bot/marketplace/31400590-a7a1-47ba-8e8a-3a445a34bf14/dils-pt-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-dils-pt-api-31400590/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_development_detail

Get full details for a specific development, optionally including all its fractions/units with individual property details like area, rooms, price, floor, and energy certification. The development_id comes from list_developments results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `development_id` | string | Yes | Development ID (from list_developments results). |
| `include_fractions` | string | No | Whether to include individual fractions/units. Accepted values: 'true', 'false'. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dils-pt-api-31400590/get_development_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"development_id":"<string>","include_fractions":"<string>"}'
```

### get_development_fractions

Get all fractions (individual units/apartments) for a specific development with details including typology, area, floor, bathrooms, availability, energy certification, images, and blueprints. The development_id comes from list_developments results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `development_id` | string | Yes | Development ID (from list_developments results). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dils-pt-api-31400590/get_development_fractions \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"development_id":"<string>"}'
```

### list_developments

List all real estate developments with pagination. Returns development summaries including name, location, typologies, price ranges, availability, features, images, and agent contacts. Paginates via integer page number; each page returns up to page_size developments.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number (1-indexed). |
| `page_size` | integer | No | Number of results per page. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dils-pt-api-31400590/list_developments \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","page_size":"<integer>"}'
```
