Quotrr Empieza gratis

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

API docs

Get contractor reputation

GET Live

The Quotrr Score and verified Props for one public handle.

GET https://api.quotrr.com/v1/contractors/{handle}

Returns the public reputation record for a single contractor handle: the Quotrr Score, how it breaks down, and the verified Props tied to completed jobs. The Score formula is published and legible, never a black box.

Authentication

Open read.

Scope: contractors:read

Request

NameInRequiredTypeDescription
handlepathRequiredstringThe public contractor handle, e.g. phenomenal-pools.

Example request

curl -s https://api.quotrr.com/v1/contractors/phenomenal-pools

Response

FieldTypeDescription
handlestringThe handle you asked about.
namestringBusiness name.
scoreintegerQuotrr Score, 0 to 100.
props_countintegerNumber of verified Props.
verified_jobsintegerCount of signed, completed, verified jobs.
profile_urlstringPublic profile page.

Example response

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