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
| Name | In | Required | Type | Description |
|---|---|---|---|---|
| handle | path | Required | string | The public contractor handle, e.g. phenomenal-pools. |
Example request
curl -s https://api.quotrr.com/v1/contractors/phenomenal-pools
Response
| Field | Type | Description |
|---|---|---|
| handle | string | The handle you asked about. |
| name | string | Business name. |
| score | integer | Quotrr Score, 0 to 100. |
| props_count | integer | Number of verified Props. |
| verified_jobs | integer | Count of signed, completed, verified jobs. |
| profile_url | string | Public 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"
}