Quotrr Empieza gratis

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

API docs

Submit a review

POST Preview Needs human consent

Submit a review against a verified completed job.

POST https://api.quotrr.com/v1/reviews

Creates a Prop against a verified, signed, completed job. Because this acts for a person, it requires a consent token signed by that homeowner. Props are permanent once the reversal window closes: they are part of the reputation record, not a marketing toggle.

Authentication

Bearer consent token with the review:write scope, naming the acting homeowner.

Scope: review:write

Request

NameInRequiredTypeDescription
AuthorizationheaderRequiredstringBearer .
verified_job_idbodyRequiredstringThe verified completed job the review is tied to.
ratingbodyRequiredintegerOverall rating, 1 to 5.
propsbodyOptionalarrayTap-tag Props, e.g. ["On time", "Clean", "Fair price"].

Example request

curl -s -X POST https://api.quotrr.com/v1/reviews \
  -H "Authorization: Bearer <consent-token>" \
  -H "Content-Type: application/json" \
  -d '{"verified_job_id":"job_4a2e...","rating":5,"props":["On time","Clean","Fair price"]}'

Response

FieldTypeDescription
review_idstringIdentifier for the created review.
statusstringAlways recorded on success.
reversible_untilISO date-timeThe review can be withdrawn before this time. After that it is permanent.

Example response

{
  "review_id": "rev_2b9d...",
  "status": "recorded",
  "reversible_until": "2026-06-02T09:00:00Z"
}