# Realitica Adriatic Property Search

> Realitica Adriatic Property Search is a paid API for AI agents from api.timzinin.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Scrapes and returns real estate listings from Realitica.com for the Adriatic region (Montenegro, Croatia, etc.)

## Facts

- Endpoint: POST https://api.timzinin.com/api/realitica-adriatic
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/realitica-adriatic-property-search-5b902aa1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NWhjyUyQptKkPkCauiZHo

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability realitica-adriatic-property-search-5b902aa1 -d '<json body>'
```

Example prompt: Search Realitica Adriatic for 2-bedroom apartments for sale in Kotor, Montenegro and give me the prices, sizes, and listing URLs.

## When to prefer this

Choose this endpoint when you need structured real estate listing data specifically from the Realitica portal covering the Adriatic market (Montenegro, coastal Croatia, etc.). It is ideal for investment research, price comparison, or relocation planning in that niche geography. Prefer it over generic web scrapers when you need normalized property fields like price, rooms, sqm, and images already extracted and structured.

## Known failure modes

- Listing not found or removed from Realitica returns found:false with null fields
- Geolocation coordinates may be null if not provided by the source portal
- description and posted_date fields may be null or truncated
- Payment not settled results in no data returned
- Portal-side scraping block may cause empty or partial results
- item_count of 0 if search returns no matching listings

## How this service works

Pay-per-call data & tool APIs

## Output

A JSON object with a meta block (run time in ms, settlement status, item count) and a results array. Each result includes listing URL, price, currency, number of rooms, area in sqm, property title, image thumbnails, full location string, deal type (sale/rent), property type, scraped timestamp, and a text description snippet from the portal.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "region": {
   "type": "string"
  },
  "deal_type": {
   "enum": [
    "prodaja",
    "najam"
   ],
   "type": "string"
  },
  "max_items": {
   "type": "integer",
   "maximum": 2000,
   "minimum": 1
  },
  "max_pages": {
   "type": "integer",
   "maximum": 20,
   "minimum": 1
  },
  "property_type": {
   "enum": [
    "stanova",
    "kuca"
   ],
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "meta": {
   "run_ms": 1200,
   "settled": true,
   "item_count": 1
  },
  "results": [
   {
    "lat": null,
    "lng": null,
    "url": "https://www.realitica.com/hr/listing/3665844",
    "found": true,
    "price": 200000,
    "rooms": 2,
    "title": "Branko · prodaje stan · 2 sobe · 78 m²",
    "images": [
     "https://www.realitica.com/images/listing_photos/thumb_3665844_08-09.jpg"
    ],
    "area_sqm": 78,
    "currency": "EUR",
    "location": "Radanovići, Kotor, Crna Gora",
    "deal_type": "sale",
    "scraped_at": "2026-07-30T07:20:00.000Z",
    "description": "Stanovi u izgradnji.Prodaja direktno od Investitora. Betonski radovi su završeni na oba objekta. Stambeni kompleks “DOMA”, koji se sastoji iz dvije zgrade, predstavlja moderan i f...",
    "posted_date": null,
    "property_type": "stanova",
    "source_portal": "realitica-adriatic"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/realitica-adriatic-property-search-5b902aa1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.timzinin.com](https://www.zero.xyz/host/api.timzinin.com/llms.txt)
