# Emlakjet Istanbul Property Listings Scraper

> Emlakjet Istanbul Property Listings Scraper 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 listing data from Emlakjet.com for Istanbul properties, including price, size, location, and images

## Facts

- Endpoint: POST https://api.timzinin.com/api/emlakjet-istanbul
- 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/emlakjet-istanbul-property-listings-scraper-b462225d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YJpvwa8T9Ud9Zn9ixq79h

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 emlakjet-istanbul-property-listings-scraper-b462225d -d '<json body>'
```

Example prompt: Can you find me apartments for sale (satilik daire) in Istanbul on Emlakjet and show me the prices, sizes, and locations?

## When to prefer this

Use this endpoint when you need structured real estate listing data from Emlakjet.com specifically for Istanbul, including price, size, room layout, and location details. Prefer this over generic web scraping when you want clean, normalized JSON with consistent field names across listings. Best suited for price research, market analysis, or building a dataset of Istanbul property listings without building your own scraper.

## Known failure modes

- Emlakjet.com blocks or rate-limits the scraper, returning empty results
- Coordinates (lat/lng) may be null if not provided in the source listing
- item_count may be 0 if no listings match the requested filters
- Stale or removed listings may appear if scraped before expiry
- Response may time out if Emlakjet is slow (run_ms elevated)

## How this service works

Pay-per-call data & tool APIs

## Output

Returns a JSON object with a meta block (run time, settlement status, item count) and a results array where each item contains listing URL, price in TRY, room count (raw and normalized), area in sqm, neighborhood/location string, floor info, property type, deal type, images array, posted date, scraped timestamp, and coordinates (lat/lng when available).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "city": {
   "type": "string"
  },
  "deal_type": {
   "enum": [
    "satilik",
    "kiralik"
   ],
   "type": "string"
  },
  "max_items": {
   "type": "integer",
   "maximum": 1500,
   "minimum": 1
  },
  "max_pages": {
   "type": "integer",
   "maximum": 50,
   "minimum": 1
  },
  "property_type": {
   "enum": [
    "daire",
    "konut"
   ],
   "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.emlakjet.com/ilan/31-deniz-manzarali-masrafsiz-satilik-daire-19653884",
    "found": true,
    "price": 4950000,
    "rooms": 4,
    "title": "3+1 Deniz Manzaralı Masrafsız Satılık Daire",
    "images": [
     "https://imaj.emlakjet.com/listing/19653884/....jpg"
    ],
    "area_sqm": 105,
    "currency": "TRY",
    "location": "Derviş Ali Mahallesi, Fatih",
    "deal_type": "sale",
    "floor_raw": "Çatı Dubleks",
    "rooms_raw": "3+1",
    "scraped_at": "2026-07-30T07:20:00.000Z",
    "description": "",
    "posted_date": "2026-07-27",
    "property_type": "Satılık Daire",
    "source_portal": "emlakjet",
    "city_requested": "istanbul",
    "deal_type_requested": "satilik",
    "property_type_requested": "daire"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/emlakjet-istanbul-property-listings-scraper-b462225d/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)
