POST
/api/v2/order/pricing

API Description

  • Confirm Report Price.

Parameters

🔽 Payload
{
   "company_token": "abcdefghijklmnopqrstuvwxy",
   "report_type": "aivm",
   "inspection_type": "interior-w-exterior",
   "turnaround_time": "standard",
   "residential_property_type": "sfr",
   "state": "AH",
   "postal_code": "11706"
}

Responses

🟢 Success
{
	"success": true,
	"message": "Pricing details successfully fetched.",
	"data": {
		"pricing_data": {
			"single_report_amount": {
				"report_type_fee": 424.99,
				"base_fee": 424.99,
				"inspection_fee": 0,
				"total_price": 424.99,
				"cc_surcharge": 3.5,
				"inspection_price": 0,
				"inspection_price_additional_units": 0
			},
			"report_type": {
				"slug": "aivm",
				"nickname": "AIVM",
				"formal_name": "A.I. Valuation Model (AIVM)"
			},
			"inspection_type": {
				"slug": "interior-w-exterior",
				"name": "Interior (w Exterior)"
			},
			"turnaround_time": {
				"slug": "standard",
				"name": "Standard",
				"turnaround_time": 0,
				"turnaround_time_text": null,
				"requested_tat_standard_or_rush": "standard"
			}
		}
	},
	"meta": {},
	"errors": []
}