# Storia Bucharest Property Listings Lookup

> Storia Bucharest Property Listings Lookup 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-14).

Fetches real estate listings from Storia.ro for the Bucharest market, returning price, area, location, and property details per listing.

## Facts

- Endpoint: POST https://api.timzinin.com/api/storia-bucharest
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/storia-bucharest-property-listings-lookup-3ca6a174
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nSZbdaH8xMPEtmyHuvXDT

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 storia-bucharest-property-listings-lookup-3ca6a174 -d '<json body>'
```

Example prompt: Can you pull up the current listing details from Storia.ro for apartments for sale in Bucharest — I need the price in EUR, area in sqm, number of rooms, and which neighborhood they're in?

## When to prefer this

Use this endpoint when you need structured property data from the Romanian market specifically via Storia.ro, including price, area, location, and deal type, without building your own scraper. Prefer this over generic web search when you need machine-readable real estate data from Bucharest with consistent field schemas at low cost ($0.02 per call).

## Known failure modes

- Listing not found on Storia.ro — 'found: false' in result
- Invalid or expired listing URL returns empty results
- Network timeout from Storia.ro scraping — elevated run_ms
- Rate limiting or blocking by Storia.ro — empty result set
- Malformed request body — API returns error response

## How this service works

Pay-per-call data & tool APIs

## Output

Returns a JSON object with a meta block (run time in ms, settlement status, item count) and a results array. Each result includes the Storia.ro listing URL, whether it was found, price, currency (EUR), area in sqm, number of rooms, title, location string, deal type (e.g. sale/rent), property type (e.g. FLAT), and posted date.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "city": {
   "type": "string"
  },
  "deal_type": {
   "enum": [
    "vanzare",
    "inchiriere"
   ],
   "type": "string"
  },
  "max_items": {
   "type": "integer",
   "maximum": 2000,
   "minimum": 1
  },
  "max_pages": {
   "type": "integer",
   "maximum": 20,
   "minimum": 1
  },
  "property_type": {
   "enum": [
    "apartament",
    "casa"
   ],
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "meta": {
   "run_ms": 1200,
   "settled": true,
   "item_count": 1
  },
  "results": [
   {
    "url": "https://www.storia.ro/ro/oferta/apartament-6-camere-langa-piata-victoriei-la-cheie-ideal-investitie-IDHBw6",
    "found": true,
    "price": 330000,
    "rooms": null,
    "title": "Apartament 6 camere langa Piata Victoriei, la cheie, ideal investitie",
    "area_sqm": 182,
    "currency": "EUR",
    "location": "Stirbei, Sectorul 1, Bucuresti",
    "deal_type": "sale",
    "posted_date": "2026-07-30 17:40:34",
    "property_type": "FLAT"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/storia-bucharest-property-listings-lookup-3ca6a174/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)
