API Description

  • Confirm Report Price..

API Endpoints

POST
/api/v1/order/pricing

Parameters

🔽 Payload
{
	"company_token": "abcdefghijklmnopqrstuvwxy",
	"report_type": "prop-value",
	"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": 334.99,
				"base_fee": 410.99,
				"inspection_fee": 0,
				"rush_fee": 15,
				"conversion_fee": 0,
				"surcharge_fee": 0,
				"gla_surcharge": 0,
				"licensing_surcharge": 0,
				"total_price": 425.99,
				"cc_surcharge": 3.5,
				"flood_charge": 0,
				"inspection_price": 0,
				"inspection_price_additional_units": 0,
				"units": 2,
				"unit_price": 76,
				"due_date": "2025-02-11"
			},
			"report_type": {
				"slug": "prop-value",
				"nickname": "Prop Value",
				"formal_name": "Property Valuation"
			},
			"inspection_type": {
				"slug": "none",
				"name": "None"
			},
			"turnaround_time": {
				"slug": "rush",
				"name": "Rush",
				"turnaround_time": 2,
				"turnaround_time_text": "2-4 biz days",
				"requested_tat_standard_or_rush": "rush"
			}
		}
	},
	"meta": {},
	"errors": []
}