dispatch.quotex-api-keyReturn an instant dispatch quote for a field-service job. Accepts trade + location + urgency and returns matched contractor, estimated cost in cents, ETA tier, and valid_for_minutes.
Input JSON-Schema
{
"type": "object",
"required": [
"trade",
"location"
],
"properties": {
"trade": {
"type": "string",
"description": "Trade code (plumbing, electrical, HVAC, etc.)"
},
"location": {
"type": "object",
"required": [
"state"
],
"properties": {
"state": {
"type": "string",
"minLength": 2,
"maxLength": 2
},
"zip": {
"type": "string",
"maxLength": 10
},
"city": {
"type": "string",
"maxLength": 255
}
}
},
"urgency": {
"type": "string",
"enum": [
"emergency",
"urgent",
"routine",
"scheduled"
],
"default": "routine"
},
"nte_cents": {
"type": "integer",
"minimum": 1
},
"description": {
"type": "string",
"maxLength": 2000
}
}
}