Quotrr Empieza gratis

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

API docs

Find contractors

GET Live

Public contractor profiles matching a trade and ZIP.

GET https://api.quotrr.com/v1/contractors

Returns public contractor profiles for a trade and ZIP, each with a Quotrr Score and a count of verified Props. Published profile data only. No private tenant data crosses the boundary.

Authentication

Open read. Verified agent identities get higher limits.

Scope: contractors:read

Request

NameInRequiredTypeDescription
tradequeryRequiredstringTrade slug, e.g. pools.
zipqueryRequiredstringFive-digit US ZIP code.
min_scorequeryOptionalintegerOnly return profiles at or above this Quotrr Score (0 to 100). Optional.
limitqueryOptionalintegerMax profiles to return, default 20, max 100. Optional.

Example request

curl -s "https://api.quotrr.com/v1/contractors?trade=pools&zip=95814&min_score=80"

Response

FieldTypeDescription
resultsarrayList of public contractor profiles.
results[].handlestringPublic handle, usable with the reputation endpoint.
results[].namestringBusiness name.
results[].scoreintegerQuotrr Score, 0 to 100.
results[].props_countintegerNumber of verified Props.
results[].profile_urlstringPublic profile page on quotrr.com.

Example response

{
  "results": [
    {
      "handle": "phenomenal-pools",
      "name": "Phenomenal Pools",
      "score": 92,
      "props_count": 47,
      "profile_url": "https://quotrr.com/c/phenomenal-pools"
    }
  ]
}