API Reference

The Fía Rent API returns an estimated fair monthly rent for any US address — blending Census median rent with Fía comparables, plus an AI market read on paid plans.

Base URL & authentication

Base URL https://fia.rent. Every request needs your key in the x-api-key header — create one at /developers/keys.

Keys & quota

Endpoint

GET /api/v1/rent-estimate

Parameters

addressstring — full street address (geocoded). Provide this, or zip, or lat+lon.
zipstring — 5-digit ZIP code.
lat, lonnumber — coordinates.
bedroomsinteger — 0–4+. Default 2.

Example

Request

curl "https://fia.rent/api/v1/rent-estimate\
  ?address=1524+S+6th+St+Milwaukee+WI&bedrooms=2" \
  -H "x-api-key: fia_live_..."

Response

{
  "query": { "zip": "53204", "bedrooms": 2, "lat": 43.01, "lon": -87.92 },
  "estimate": 985,
  "currency": "USD",
  "low": 887,
  "high": 1084,
  "method": "ai_grounded",
  "tier": "pro",
  "sources": { "census_baseline": 950, "comparables": 4 },
  "insight": "Con base en la mediana del Censo ($950) y 4 comparables
    en Fía, ~$985/mes es razonable para 2 recámaras. Es una estimación.",
  "provider": "Fía · Wellness Labs LLC",
  "disclaimer": "Estimación informativa. No es un avalúo."
}

Response fields

estimateEstimated fair monthly rent (USD), or null if there isn't enough data.
low / highConfidence range around the estimate.
methodHow it was derived (see below).
sourcescensus_baseline value + count of Fía comparables used.
insightAI market rationale — Pro & Business plans only.
tierYour plan (free / pro / business).

Method values

census_baselineCensus median gross rent for the area.
compsFía comparable listings in the area.
blendedAverage of the Census baseline and comparables.
ai_groundedAI-refined estimate reasoned over the real data (Pro+).
insufficient_dataNo baseline or comparables — estimate is null.

Errors

400Missing address, zip, or lat+lon.
401Missing or invalid API key.
429Rate limit (30/60s) or monthly quota exceeded.

Rate limits & plans

Estimates are informational, not appraisals. Fía Rent API · a service of Wellness Labs LLC.