REAL NOW es una plataforma de
Bearer-token authenticated REST API. Aggregated market intelligence + verified broker inventory + AI briefings. JSON responses, tier-based rate limits.
Notificaciones
All endpoints require a Bearer token in the Authorization header:
# Request
curl -H "Authorization: Bearer rn_live_xxxxxxxxxxxxxxxxxxxxxxxxx" \
https://realnow.com/api/v1/health
How to get a key:
- Enterprise users: self-service from Configuración.
- PRO users: contact admin to issue a key on your behalf.
- Free users: API access requires PRO+ tier.
Plaintext keys are shown ONCE at creation. Store them in a secrets manager — they cannot be recovered later. If lost, revoke and create a new one.
Rate limits
Per-key, per-hour. Counters reset at the top of each UTC hour.
| Plan | Hourly limit | Detalle |
|---|---|---|
| free | — | No API access |
| pro | 100 | ~2,400 |
| enterprise | 1,000 | ~24,000 |
| admin | Ilimitados | — |
Over-limit responses return HTTP 429 Esperar retry_after_seconds.
Error format
{
"ok": false,
"error": "rate_limit",
"message": "Hourly rate limit reached (100 req/h for tier pro).",
"limit": 100,
"used": 100,
"retry_after_seconds": 1842
}
Common error codes:
auth_required— 401, missing keyinvalid_key— 401, key revoked or owner inactivescope_denied— 403, key lacks the required scoperate_limit— 429, hourly limit hitnot_found— 404, no such resource
Endpoints
Verify the key works + see your tier.
curl -H "Authorization: Bearer $RN_KEY" \
https://realnow.com/api/v1/health
# {"ok":true,"service":"real-now-api","version":"v1","tier":"pro",...}
Aggregate market stats per zone across all 7 LATAM countries (GT, SV, HN, CR, BZ, DO, PA). Use ?country=XX to filter.
| Área | Tipo | Default rotos | Descripción |
|---|---|---|---|
country | string | GT | País |
curl -H "Authorization: Bearer $RN_KEY" \
https://realnow.com/api/v1/zones
# {"ok":true,"count":25,"zones":[
# {"zone":"Zona 1","median_ppm2_usd":1340.5,"n_active":420,"median_dom":31,...},
# ...
# ]}
Detailed snapshot for one zone: medians by property type + bedroom + operation, 30d delta, source mix.
curl -H "Authorization: Bearer $RN_KEY" \ https://realnow.com/api/v1/zone/zona-10
Verified broker inventory only (active broker_listings). Scraped data is NEVER exposed via API.
| Área | Tipo | Descripción |
|---|---|---|
zone | string | Zona N |
country | string | GT (default) |
operation | string | Venta | Renta |
property_type | string | Apartamento, Casa, Terreno, … |
price_min / price_max | number | USD bounds |
limit / offset | int | Pagination — limit 1-200 |
curl -H "Authorization: Bearer $RN_KEY" \ "https://realnow.com/api/v1/listings?zone=Zona+10&operation=Venta&price_max=200000"
List the 5 AI personas with their input schema + verdict vocabulary.
Generate an AI briefing. Counts against the key owner's monthly quota (same as the web UI). 24h cache hits don't consume quota.
curl -X POST -H "Authorization: Bearer $RN_KEY" \
-H "Content-Type: application/json" \
-d '{"zone":"Zona 10","profile":"cash"}' \
https://realnow.com/api/v1/briefings/inversor
# Returns: {"ok":true,"verdict":"Comprar","confidence":"Alta",
# "headline":"Zona 10 ofrece yield bruto del 7.0%...",
# "body_md":"## Veredicto\n**Comprar** · Confianza: Alta\n...",
# "usage":{"used":3,"quota":20,"unlimited":false}}
Cambio
v1.0 · 2026-05-07 — Initial release. 6 endpoints. Bearer-token auth. Tier rate limits.