# Nekretnine — 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 real estate listings across Serbia's top property marketplace to find detailed information about available properties including prices, locations, and property features. Filter through thousands of listings to discover your ideal home or investment property with comprehensive property details and specifications.

**Category:** Real Estate | **Website:** [www.nekretnine.rs/](https://www.nekretnine.rs/) | **Docs:** [parse.bot/marketplace/1149ed88-82fc-427f-9f2a-59b733ca68cc/nekretnine-rs-api](https://parse.bot/marketplace/1149ed88-82fc-427f-9f2a-59b733ca68cc/nekretnine-rs-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-nekretnine-rs-api-1149ed88/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_listing_detail

Retrieve full details of a single property listing by its numeric ID. Returns comprehensive information including description, price, features, photos, location coordinates, and agency contact.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `listing_id` | string | Yes | Numeric listing ID (e.g. '41749'). Obtainable from search_listings results. |

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

### search_listings

Search apartment listings by city and transaction type (sale or rent). Returns paginated results with basic listing information including price, surface area, rooms, location, and a direct URL to the detail page. Results are auto-iterated across pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city` | string | No | City slug used in the URL path (e.g. 'beograd', 'novi-sad', 'nis'). Slugs use lowercase Latin transliteration with hyphens. |
| `page` | integer | No | Page number for pagination. |
| `transaction_type` | string | No | Transaction type filter. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-nekretnine-rs-api-1149ed88/search_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city":"<string>","page":"<integer>","transaction_type":"<string>"}'
```
