# Ingatlan — 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 real estate listings and development projects on ingatlan.com to find properties with detailed information like prices, descriptions, and project details. Get comprehensive data on available homes and construction projects even when direct access is restricted.

**Category:** Real Estate | **Website:** [ingatlan.com/](https://ingatlan.com/) | **Docs:** [parse.bot/marketplace/c72113ae-e8da-44f8-9a0b-cb1e48e345ea/ingatlan-com-api](https://parse.bot/marketplace/c72113ae-e8da-44f8-9a0b-cb1e48e345ea/ingatlan-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-ingatlan-com-api-c72113ae/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_listing_details

Get detailed information for a specific real estate listing by its numeric ID. Returns structured data including price, location, size, rooms, year built, a features table with property attributes in Hungarian, and a description. Listing IDs are obtained from search_listings results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `listing_id` | string | Yes | Numeric listing ID (e.g. '35421043'). Obtainable from search_listings results[*].id. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ingatlan-com-api-c72113ae/get_listing_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"listing_id":"<string>"}'
```

### search_listings

Search for real estate listings on ingatlan.com by location and property type. Returns up to 20 listings per request with price, address, size, room count, and listing URL. Results are from the first page of the search.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `property_type` | string | No | Property type expression used in the URL path. Values: 'elado+lakas' (apartments for sale), 'kiado+lakas' (apartments for rent), 'elado+haz' (houses for sale), 'kiado+haz' (houses for rent). |
| `query` | string | No | Search query, typically a city or district name (e.g. 'budapest', 'debrecen', 'szeged'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ingatlan-com-api-c72113ae/search_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"property_type":"<string>","query":"<string>"}'
```

### search_projects

Search for new real estate development projects via the public banners API. Returns promoted development project listings with title, description, link URL, and image URL.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `property_type` | string | No | Property type filter for development projects. Values: 'flat', 'house'. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ingatlan-com-api-c72113ae/search_projects \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"property_type":"<string>"}'
```
