Quotrr Empieza gratis

Esta página se muestra en inglés. La versión en español está en camino.

API docs

Get a local price range

GET Live

Anonymized price range for a trade in a ZIP code.

GET https://api.quotrr.com/v1/price-range

Returns an anonymized local price range for a trade and ZIP, drawn from real Quotrr line-item data. This is aggregated network data, never one contractor's private numbers, and it may be up to 24 hours stale.

Authentication

Open read. An agent identity raises your rate limit but is not required for a single anonymized read.

Scope: price:read

Request

NameInRequiredTypeDescription
tradequeryRequiredstringTrade slug, e.g. pools, landscape, roofing, hvac.
zipqueryRequiredstringFive-digit US ZIP code.
scopequeryOptionalstringJob scope to narrow the range, e.g. replaster. Optional.

Example request

curl -s "https://api.quotrr.com/v1/price-range?trade=pools&zip=95814&scope=replaster"

Response

FieldTypeDescription
tradestringThe trade you asked about.
zipstringThe ZIP you asked about.
lowintegerLow end of the typical range, in US dollars.
highintegerHigh end of the typical range, in US dollars.
currencystringAlways USD for now.
sample_sizeintegerHow many anonymized jobs the range is built from.
updated_atISO date-timeWhen the range was last recomputed.

Example response

{
  "trade": "pools",
  "zip": "95814",
  "scope": "replaster",
  "low": 5200,
  "high": 8900,
  "currency": "USD",
  "sample_size": 18,
  "updated_at": "2026-06-01T09:00:00Z"
}