curl --request POST \
--url https://data-api.sovfixer.com/api/v1/bulk_enhance \
--header 'Content-Type: application/json' \
--data '
{
"locations": [
{
"id": "<string>",
"address": "<string>",
"address_line_1": "<string>",
"address_line_2": "<string>",
"architectural_style": "<string>",
"bldg_name": "<string>",
"bq_id": "<string>",
"city": "<string>",
"company_ein": "<string>",
"company_name": "<string>",
"company_website": "<string>",
"const__bldg_area": 123,
"const__bldg_year_built": 123,
"const__code_air": "<string>",
"const__code_rms": "<string>",
"const__num_stories": 123,
"const__num_stories_below_gnd": 123,
"const__roof_covering": "<string>",
"const__wall_type": "<string>",
"country": "<string>",
"county": "<string>",
"deductible_amount": 123,
"deductible_amount2": 123,
"deductible_amount3": 123,
"deductible_type": 123,
"dtc_include_coastline_within_miles": 123,
"dtc_return_connected_coastlines": true,
"geocode_confidence": 123,
"geocode_precision": 123,
"hurricane_basin": "<string>",
"hurricane_name": "<string>",
"hurricane_season": 123,
"hurricane_year": 123,
"insured_business_name": "<string>",
"insured_name": "<string>",
"latitude": 123,
"lightbox_assessment_id": "<string>",
"lightbox_parcel_id": "<string>",
"lightbox_parcel_wkt": "<string>",
"limits__bi_limit": 123,
"limits__bpp_limit": 123,
"limits__building_limit": 123,
"limits__signs_and_other_limit": 123,
"longitude": 123,
"model_code": "<string>",
"occupancy__code_air": "<string>",
"occupancy__code_atc": "<string>",
"occupancy__type_desc": "<string>",
"postal_code": "<string>",
"site_name": "<string>",
"sources": [],
"state": "<string>",
"state_code": "<string>",
"state_name": "<string>"
}
],
"callback_url": "<string>",
"check_cache": true,
"delegate_to": "<string>",
"include_raw_request": false,
"include_raw_response": false,
"sources": [],
"timeout": 300
}
'import requests
url = "https://data-api.sovfixer.com/api/v1/bulk_enhance"
payload = {
"locations": [
{
"id": "<string>",
"address": "<string>",
"address_line_1": "<string>",
"address_line_2": "<string>",
"architectural_style": "<string>",
"bldg_name": "<string>",
"bq_id": "<string>",
"city": "<string>",
"company_ein": "<string>",
"company_name": "<string>",
"company_website": "<string>",
"const__bldg_area": 123,
"const__bldg_year_built": 123,
"const__code_air": "<string>",
"const__code_rms": "<string>",
"const__num_stories": 123,
"const__num_stories_below_gnd": 123,
"const__roof_covering": "<string>",
"const__wall_type": "<string>",
"country": "<string>",
"county": "<string>",
"deductible_amount": 123,
"deductible_amount2": 123,
"deductible_amount3": 123,
"deductible_type": 123,
"dtc_include_coastline_within_miles": 123,
"dtc_return_connected_coastlines": True,
"geocode_confidence": 123,
"geocode_precision": 123,
"hurricane_basin": "<string>",
"hurricane_name": "<string>",
"hurricane_season": 123,
"hurricane_year": 123,
"insured_business_name": "<string>",
"insured_name": "<string>",
"latitude": 123,
"lightbox_assessment_id": "<string>",
"lightbox_parcel_id": "<string>",
"lightbox_parcel_wkt": "<string>",
"limits__bi_limit": 123,
"limits__bpp_limit": 123,
"limits__building_limit": 123,
"limits__signs_and_other_limit": 123,
"longitude": 123,
"model_code": "<string>",
"occupancy__code_air": "<string>",
"occupancy__code_atc": "<string>",
"occupancy__type_desc": "<string>",
"postal_code": "<string>",
"site_name": "<string>",
"sources": [],
"state": "<string>",
"state_code": "<string>",
"state_name": "<string>"
}
],
"callback_url": "<string>",
"check_cache": True,
"delegate_to": "<string>",
"include_raw_request": False,
"include_raw_response": False,
"sources": [],
"timeout": 300
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
locations: [
{
id: '<string>',
address: '<string>',
address_line_1: '<string>',
address_line_2: '<string>',
architectural_style: '<string>',
bldg_name: '<string>',
bq_id: '<string>',
city: '<string>',
company_ein: '<string>',
company_name: '<string>',
company_website: '<string>',
const__bldg_area: 123,
const__bldg_year_built: 123,
const__code_air: '<string>',
const__code_rms: '<string>',
const__num_stories: 123,
const__num_stories_below_gnd: 123,
const__roof_covering: '<string>',
const__wall_type: '<string>',
country: '<string>',
county: '<string>',
deductible_amount: 123,
deductible_amount2: 123,
deductible_amount3: 123,
deductible_type: 123,
dtc_include_coastline_within_miles: 123,
dtc_return_connected_coastlines: true,
geocode_confidence: 123,
geocode_precision: 123,
hurricane_basin: '<string>',
hurricane_name: '<string>',
hurricane_season: 123,
hurricane_year: 123,
insured_business_name: '<string>',
insured_name: '<string>',
latitude: 123,
lightbox_assessment_id: '<string>',
lightbox_parcel_id: '<string>',
lightbox_parcel_wkt: '<string>',
limits__bi_limit: 123,
limits__bpp_limit: 123,
limits__building_limit: 123,
limits__signs_and_other_limit: 123,
longitude: 123,
model_code: '<string>',
occupancy__code_air: '<string>',
occupancy__code_atc: '<string>',
occupancy__type_desc: '<string>',
postal_code: '<string>',
site_name: '<string>',
sources: [],
state: '<string>',
state_code: '<string>',
state_name: '<string>'
}
],
callback_url: '<string>',
check_cache: true,
delegate_to: '<string>',
include_raw_request: false,
include_raw_response: false,
sources: [],
timeout: 300
})
};
fetch('https://data-api.sovfixer.com/api/v1/bulk_enhance', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://data-api.sovfixer.com/api/v1/bulk_enhance",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'locations' => [
[
'id' => '<string>',
'address' => '<string>',
'address_line_1' => '<string>',
'address_line_2' => '<string>',
'architectural_style' => '<string>',
'bldg_name' => '<string>',
'bq_id' => '<string>',
'city' => '<string>',
'company_ein' => '<string>',
'company_name' => '<string>',
'company_website' => '<string>',
'const__bldg_area' => 123,
'const__bldg_year_built' => 123,
'const__code_air' => '<string>',
'const__code_rms' => '<string>',
'const__num_stories' => 123,
'const__num_stories_below_gnd' => 123,
'const__roof_covering' => '<string>',
'const__wall_type' => '<string>',
'country' => '<string>',
'county' => '<string>',
'deductible_amount' => 123,
'deductible_amount2' => 123,
'deductible_amount3' => 123,
'deductible_type' => 123,
'dtc_include_coastline_within_miles' => 123,
'dtc_return_connected_coastlines' => true,
'geocode_confidence' => 123,
'geocode_precision' => 123,
'hurricane_basin' => '<string>',
'hurricane_name' => '<string>',
'hurricane_season' => 123,
'hurricane_year' => 123,
'insured_business_name' => '<string>',
'insured_name' => '<string>',
'latitude' => 123,
'lightbox_assessment_id' => '<string>',
'lightbox_parcel_id' => '<string>',
'lightbox_parcel_wkt' => '<string>',
'limits__bi_limit' => 123,
'limits__bpp_limit' => 123,
'limits__building_limit' => 123,
'limits__signs_and_other_limit' => 123,
'longitude' => 123,
'model_code' => '<string>',
'occupancy__code_air' => '<string>',
'occupancy__code_atc' => '<string>',
'occupancy__type_desc' => '<string>',
'postal_code' => '<string>',
'site_name' => '<string>',
'sources' => [
],
'state' => '<string>',
'state_code' => '<string>',
'state_name' => '<string>'
]
],
'callback_url' => '<string>',
'check_cache' => true,
'delegate_to' => '<string>',
'include_raw_request' => false,
'include_raw_response' => false,
'sources' => [
],
'timeout' => 300
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://data-api.sovfixer.com/api/v1/bulk_enhance"
payload := strings.NewReader("{\n \"locations\": [\n {\n \"id\": \"<string>\",\n \"address\": \"<string>\",\n \"address_line_1\": \"<string>\",\n \"address_line_2\": \"<string>\",\n \"architectural_style\": \"<string>\",\n \"bldg_name\": \"<string>\",\n \"bq_id\": \"<string>\",\n \"city\": \"<string>\",\n \"company_ein\": \"<string>\",\n \"company_name\": \"<string>\",\n \"company_website\": \"<string>\",\n \"const__bldg_area\": 123,\n \"const__bldg_year_built\": 123,\n \"const__code_air\": \"<string>\",\n \"const__code_rms\": \"<string>\",\n \"const__num_stories\": 123,\n \"const__num_stories_below_gnd\": 123,\n \"const__roof_covering\": \"<string>\",\n \"const__wall_type\": \"<string>\",\n \"country\": \"<string>\",\n \"county\": \"<string>\",\n \"deductible_amount\": 123,\n \"deductible_amount2\": 123,\n \"deductible_amount3\": 123,\n \"deductible_type\": 123,\n \"dtc_include_coastline_within_miles\": 123,\n \"dtc_return_connected_coastlines\": true,\n \"geocode_confidence\": 123,\n \"geocode_precision\": 123,\n \"hurricane_basin\": \"<string>\",\n \"hurricane_name\": \"<string>\",\n \"hurricane_season\": 123,\n \"hurricane_year\": 123,\n \"insured_business_name\": \"<string>\",\n \"insured_name\": \"<string>\",\n \"latitude\": 123,\n \"lightbox_assessment_id\": \"<string>\",\n \"lightbox_parcel_id\": \"<string>\",\n \"lightbox_parcel_wkt\": \"<string>\",\n \"limits__bi_limit\": 123,\n \"limits__bpp_limit\": 123,\n \"limits__building_limit\": 123,\n \"limits__signs_and_other_limit\": 123,\n \"longitude\": 123,\n \"model_code\": \"<string>\",\n \"occupancy__code_air\": \"<string>\",\n \"occupancy__code_atc\": \"<string>\",\n \"occupancy__type_desc\": \"<string>\",\n \"postal_code\": \"<string>\",\n \"site_name\": \"<string>\",\n \"sources\": [],\n \"state\": \"<string>\",\n \"state_code\": \"<string>\",\n \"state_name\": \"<string>\"\n }\n ],\n \"callback_url\": \"<string>\",\n \"check_cache\": true,\n \"delegate_to\": \"<string>\",\n \"include_raw_request\": false,\n \"include_raw_response\": false,\n \"sources\": [],\n \"timeout\": 300\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://data-api.sovfixer.com/api/v1/bulk_enhance")
.header("Content-Type", "application/json")
.body("{\n \"locations\": [\n {\n \"id\": \"<string>\",\n \"address\": \"<string>\",\n \"address_line_1\": \"<string>\",\n \"address_line_2\": \"<string>\",\n \"architectural_style\": \"<string>\",\n \"bldg_name\": \"<string>\",\n \"bq_id\": \"<string>\",\n \"city\": \"<string>\",\n \"company_ein\": \"<string>\",\n \"company_name\": \"<string>\",\n \"company_website\": \"<string>\",\n \"const__bldg_area\": 123,\n \"const__bldg_year_built\": 123,\n \"const__code_air\": \"<string>\",\n \"const__code_rms\": \"<string>\",\n \"const__num_stories\": 123,\n \"const__num_stories_below_gnd\": 123,\n \"const__roof_covering\": \"<string>\",\n \"const__wall_type\": \"<string>\",\n \"country\": \"<string>\",\n \"county\": \"<string>\",\n \"deductible_amount\": 123,\n \"deductible_amount2\": 123,\n \"deductible_amount3\": 123,\n \"deductible_type\": 123,\n \"dtc_include_coastline_within_miles\": 123,\n \"dtc_return_connected_coastlines\": true,\n \"geocode_confidence\": 123,\n \"geocode_precision\": 123,\n \"hurricane_basin\": \"<string>\",\n \"hurricane_name\": \"<string>\",\n \"hurricane_season\": 123,\n \"hurricane_year\": 123,\n \"insured_business_name\": \"<string>\",\n \"insured_name\": \"<string>\",\n \"latitude\": 123,\n \"lightbox_assessment_id\": \"<string>\",\n \"lightbox_parcel_id\": \"<string>\",\n \"lightbox_parcel_wkt\": \"<string>\",\n \"limits__bi_limit\": 123,\n \"limits__bpp_limit\": 123,\n \"limits__building_limit\": 123,\n \"limits__signs_and_other_limit\": 123,\n \"longitude\": 123,\n \"model_code\": \"<string>\",\n \"occupancy__code_air\": \"<string>\",\n \"occupancy__code_atc\": \"<string>\",\n \"occupancy__type_desc\": \"<string>\",\n \"postal_code\": \"<string>\",\n \"site_name\": \"<string>\",\n \"sources\": [],\n \"state\": \"<string>\",\n \"state_code\": \"<string>\",\n \"state_name\": \"<string>\"\n }\n ],\n \"callback_url\": \"<string>\",\n \"check_cache\": true,\n \"delegate_to\": \"<string>\",\n \"include_raw_request\": false,\n \"include_raw_response\": false,\n \"sources\": [],\n \"timeout\": 300\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://data-api.sovfixer.com/api/v1/bulk_enhance")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"locations\": [\n {\n \"id\": \"<string>\",\n \"address\": \"<string>\",\n \"address_line_1\": \"<string>\",\n \"address_line_2\": \"<string>\",\n \"architectural_style\": \"<string>\",\n \"bldg_name\": \"<string>\",\n \"bq_id\": \"<string>\",\n \"city\": \"<string>\",\n \"company_ein\": \"<string>\",\n \"company_name\": \"<string>\",\n \"company_website\": \"<string>\",\n \"const__bldg_area\": 123,\n \"const__bldg_year_built\": 123,\n \"const__code_air\": \"<string>\",\n \"const__code_rms\": \"<string>\",\n \"const__num_stories\": 123,\n \"const__num_stories_below_gnd\": 123,\n \"const__roof_covering\": \"<string>\",\n \"const__wall_type\": \"<string>\",\n \"country\": \"<string>\",\n \"county\": \"<string>\",\n \"deductible_amount\": 123,\n \"deductible_amount2\": 123,\n \"deductible_amount3\": 123,\n \"deductible_type\": 123,\n \"dtc_include_coastline_within_miles\": 123,\n \"dtc_return_connected_coastlines\": true,\n \"geocode_confidence\": 123,\n \"geocode_precision\": 123,\n \"hurricane_basin\": \"<string>\",\n \"hurricane_name\": \"<string>\",\n \"hurricane_season\": 123,\n \"hurricane_year\": 123,\n \"insured_business_name\": \"<string>\",\n \"insured_name\": \"<string>\",\n \"latitude\": 123,\n \"lightbox_assessment_id\": \"<string>\",\n \"lightbox_parcel_id\": \"<string>\",\n \"lightbox_parcel_wkt\": \"<string>\",\n \"limits__bi_limit\": 123,\n \"limits__bpp_limit\": 123,\n \"limits__building_limit\": 123,\n \"limits__signs_and_other_limit\": 123,\n \"longitude\": 123,\n \"model_code\": \"<string>\",\n \"occupancy__code_air\": \"<string>\",\n \"occupancy__code_atc\": \"<string>\",\n \"occupancy__type_desc\": \"<string>\",\n \"postal_code\": \"<string>\",\n \"site_name\": \"<string>\",\n \"sources\": [],\n \"state\": \"<string>\",\n \"state_code\": \"<string>\",\n \"state_name\": \"<string>\"\n }\n ],\n \"callback_url\": \"<string>\",\n \"check_cache\": true,\n \"delegate_to\": \"<string>\",\n \"include_raw_request\": false,\n \"include_raw_response\": false,\n \"sources\": [],\n \"timeout\": 300\n}"
response = http.request(request)
puts response.read_body{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"message": "<string>"
}{
"message": "<string>"
}Start Bulk Enhance Job
Enhance a list of locations with additional data.
curl --request POST \
--url https://data-api.sovfixer.com/api/v1/bulk_enhance \
--header 'Content-Type: application/json' \
--data '
{
"locations": [
{
"id": "<string>",
"address": "<string>",
"address_line_1": "<string>",
"address_line_2": "<string>",
"architectural_style": "<string>",
"bldg_name": "<string>",
"bq_id": "<string>",
"city": "<string>",
"company_ein": "<string>",
"company_name": "<string>",
"company_website": "<string>",
"const__bldg_area": 123,
"const__bldg_year_built": 123,
"const__code_air": "<string>",
"const__code_rms": "<string>",
"const__num_stories": 123,
"const__num_stories_below_gnd": 123,
"const__roof_covering": "<string>",
"const__wall_type": "<string>",
"country": "<string>",
"county": "<string>",
"deductible_amount": 123,
"deductible_amount2": 123,
"deductible_amount3": 123,
"deductible_type": 123,
"dtc_include_coastline_within_miles": 123,
"dtc_return_connected_coastlines": true,
"geocode_confidence": 123,
"geocode_precision": 123,
"hurricane_basin": "<string>",
"hurricane_name": "<string>",
"hurricane_season": 123,
"hurricane_year": 123,
"insured_business_name": "<string>",
"insured_name": "<string>",
"latitude": 123,
"lightbox_assessment_id": "<string>",
"lightbox_parcel_id": "<string>",
"lightbox_parcel_wkt": "<string>",
"limits__bi_limit": 123,
"limits__bpp_limit": 123,
"limits__building_limit": 123,
"limits__signs_and_other_limit": 123,
"longitude": 123,
"model_code": "<string>",
"occupancy__code_air": "<string>",
"occupancy__code_atc": "<string>",
"occupancy__type_desc": "<string>",
"postal_code": "<string>",
"site_name": "<string>",
"sources": [],
"state": "<string>",
"state_code": "<string>",
"state_name": "<string>"
}
],
"callback_url": "<string>",
"check_cache": true,
"delegate_to": "<string>",
"include_raw_request": false,
"include_raw_response": false,
"sources": [],
"timeout": 300
}
'import requests
url = "https://data-api.sovfixer.com/api/v1/bulk_enhance"
payload = {
"locations": [
{
"id": "<string>",
"address": "<string>",
"address_line_1": "<string>",
"address_line_2": "<string>",
"architectural_style": "<string>",
"bldg_name": "<string>",
"bq_id": "<string>",
"city": "<string>",
"company_ein": "<string>",
"company_name": "<string>",
"company_website": "<string>",
"const__bldg_area": 123,
"const__bldg_year_built": 123,
"const__code_air": "<string>",
"const__code_rms": "<string>",
"const__num_stories": 123,
"const__num_stories_below_gnd": 123,
"const__roof_covering": "<string>",
"const__wall_type": "<string>",
"country": "<string>",
"county": "<string>",
"deductible_amount": 123,
"deductible_amount2": 123,
"deductible_amount3": 123,
"deductible_type": 123,
"dtc_include_coastline_within_miles": 123,
"dtc_return_connected_coastlines": True,
"geocode_confidence": 123,
"geocode_precision": 123,
"hurricane_basin": "<string>",
"hurricane_name": "<string>",
"hurricane_season": 123,
"hurricane_year": 123,
"insured_business_name": "<string>",
"insured_name": "<string>",
"latitude": 123,
"lightbox_assessment_id": "<string>",
"lightbox_parcel_id": "<string>",
"lightbox_parcel_wkt": "<string>",
"limits__bi_limit": 123,
"limits__bpp_limit": 123,
"limits__building_limit": 123,
"limits__signs_and_other_limit": 123,
"longitude": 123,
"model_code": "<string>",
"occupancy__code_air": "<string>",
"occupancy__code_atc": "<string>",
"occupancy__type_desc": "<string>",
"postal_code": "<string>",
"site_name": "<string>",
"sources": [],
"state": "<string>",
"state_code": "<string>",
"state_name": "<string>"
}
],
"callback_url": "<string>",
"check_cache": True,
"delegate_to": "<string>",
"include_raw_request": False,
"include_raw_response": False,
"sources": [],
"timeout": 300
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
locations: [
{
id: '<string>',
address: '<string>',
address_line_1: '<string>',
address_line_2: '<string>',
architectural_style: '<string>',
bldg_name: '<string>',
bq_id: '<string>',
city: '<string>',
company_ein: '<string>',
company_name: '<string>',
company_website: '<string>',
const__bldg_area: 123,
const__bldg_year_built: 123,
const__code_air: '<string>',
const__code_rms: '<string>',
const__num_stories: 123,
const__num_stories_below_gnd: 123,
const__roof_covering: '<string>',
const__wall_type: '<string>',
country: '<string>',
county: '<string>',
deductible_amount: 123,
deductible_amount2: 123,
deductible_amount3: 123,
deductible_type: 123,
dtc_include_coastline_within_miles: 123,
dtc_return_connected_coastlines: true,
geocode_confidence: 123,
geocode_precision: 123,
hurricane_basin: '<string>',
hurricane_name: '<string>',
hurricane_season: 123,
hurricane_year: 123,
insured_business_name: '<string>',
insured_name: '<string>',
latitude: 123,
lightbox_assessment_id: '<string>',
lightbox_parcel_id: '<string>',
lightbox_parcel_wkt: '<string>',
limits__bi_limit: 123,
limits__bpp_limit: 123,
limits__building_limit: 123,
limits__signs_and_other_limit: 123,
longitude: 123,
model_code: '<string>',
occupancy__code_air: '<string>',
occupancy__code_atc: '<string>',
occupancy__type_desc: '<string>',
postal_code: '<string>',
site_name: '<string>',
sources: [],
state: '<string>',
state_code: '<string>',
state_name: '<string>'
}
],
callback_url: '<string>',
check_cache: true,
delegate_to: '<string>',
include_raw_request: false,
include_raw_response: false,
sources: [],
timeout: 300
})
};
fetch('https://data-api.sovfixer.com/api/v1/bulk_enhance', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://data-api.sovfixer.com/api/v1/bulk_enhance",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'locations' => [
[
'id' => '<string>',
'address' => '<string>',
'address_line_1' => '<string>',
'address_line_2' => '<string>',
'architectural_style' => '<string>',
'bldg_name' => '<string>',
'bq_id' => '<string>',
'city' => '<string>',
'company_ein' => '<string>',
'company_name' => '<string>',
'company_website' => '<string>',
'const__bldg_area' => 123,
'const__bldg_year_built' => 123,
'const__code_air' => '<string>',
'const__code_rms' => '<string>',
'const__num_stories' => 123,
'const__num_stories_below_gnd' => 123,
'const__roof_covering' => '<string>',
'const__wall_type' => '<string>',
'country' => '<string>',
'county' => '<string>',
'deductible_amount' => 123,
'deductible_amount2' => 123,
'deductible_amount3' => 123,
'deductible_type' => 123,
'dtc_include_coastline_within_miles' => 123,
'dtc_return_connected_coastlines' => true,
'geocode_confidence' => 123,
'geocode_precision' => 123,
'hurricane_basin' => '<string>',
'hurricane_name' => '<string>',
'hurricane_season' => 123,
'hurricane_year' => 123,
'insured_business_name' => '<string>',
'insured_name' => '<string>',
'latitude' => 123,
'lightbox_assessment_id' => '<string>',
'lightbox_parcel_id' => '<string>',
'lightbox_parcel_wkt' => '<string>',
'limits__bi_limit' => 123,
'limits__bpp_limit' => 123,
'limits__building_limit' => 123,
'limits__signs_and_other_limit' => 123,
'longitude' => 123,
'model_code' => '<string>',
'occupancy__code_air' => '<string>',
'occupancy__code_atc' => '<string>',
'occupancy__type_desc' => '<string>',
'postal_code' => '<string>',
'site_name' => '<string>',
'sources' => [
],
'state' => '<string>',
'state_code' => '<string>',
'state_name' => '<string>'
]
],
'callback_url' => '<string>',
'check_cache' => true,
'delegate_to' => '<string>',
'include_raw_request' => false,
'include_raw_response' => false,
'sources' => [
],
'timeout' => 300
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://data-api.sovfixer.com/api/v1/bulk_enhance"
payload := strings.NewReader("{\n \"locations\": [\n {\n \"id\": \"<string>\",\n \"address\": \"<string>\",\n \"address_line_1\": \"<string>\",\n \"address_line_2\": \"<string>\",\n \"architectural_style\": \"<string>\",\n \"bldg_name\": \"<string>\",\n \"bq_id\": \"<string>\",\n \"city\": \"<string>\",\n \"company_ein\": \"<string>\",\n \"company_name\": \"<string>\",\n \"company_website\": \"<string>\",\n \"const__bldg_area\": 123,\n \"const__bldg_year_built\": 123,\n \"const__code_air\": \"<string>\",\n \"const__code_rms\": \"<string>\",\n \"const__num_stories\": 123,\n \"const__num_stories_below_gnd\": 123,\n \"const__roof_covering\": \"<string>\",\n \"const__wall_type\": \"<string>\",\n \"country\": \"<string>\",\n \"county\": \"<string>\",\n \"deductible_amount\": 123,\n \"deductible_amount2\": 123,\n \"deductible_amount3\": 123,\n \"deductible_type\": 123,\n \"dtc_include_coastline_within_miles\": 123,\n \"dtc_return_connected_coastlines\": true,\n \"geocode_confidence\": 123,\n \"geocode_precision\": 123,\n \"hurricane_basin\": \"<string>\",\n \"hurricane_name\": \"<string>\",\n \"hurricane_season\": 123,\n \"hurricane_year\": 123,\n \"insured_business_name\": \"<string>\",\n \"insured_name\": \"<string>\",\n \"latitude\": 123,\n \"lightbox_assessment_id\": \"<string>\",\n \"lightbox_parcel_id\": \"<string>\",\n \"lightbox_parcel_wkt\": \"<string>\",\n \"limits__bi_limit\": 123,\n \"limits__bpp_limit\": 123,\n \"limits__building_limit\": 123,\n \"limits__signs_and_other_limit\": 123,\n \"longitude\": 123,\n \"model_code\": \"<string>\",\n \"occupancy__code_air\": \"<string>\",\n \"occupancy__code_atc\": \"<string>\",\n \"occupancy__type_desc\": \"<string>\",\n \"postal_code\": \"<string>\",\n \"site_name\": \"<string>\",\n \"sources\": [],\n \"state\": \"<string>\",\n \"state_code\": \"<string>\",\n \"state_name\": \"<string>\"\n }\n ],\n \"callback_url\": \"<string>\",\n \"check_cache\": true,\n \"delegate_to\": \"<string>\",\n \"include_raw_request\": false,\n \"include_raw_response\": false,\n \"sources\": [],\n \"timeout\": 300\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://data-api.sovfixer.com/api/v1/bulk_enhance")
.header("Content-Type", "application/json")
.body("{\n \"locations\": [\n {\n \"id\": \"<string>\",\n \"address\": \"<string>\",\n \"address_line_1\": \"<string>\",\n \"address_line_2\": \"<string>\",\n \"architectural_style\": \"<string>\",\n \"bldg_name\": \"<string>\",\n \"bq_id\": \"<string>\",\n \"city\": \"<string>\",\n \"company_ein\": \"<string>\",\n \"company_name\": \"<string>\",\n \"company_website\": \"<string>\",\n \"const__bldg_area\": 123,\n \"const__bldg_year_built\": 123,\n \"const__code_air\": \"<string>\",\n \"const__code_rms\": \"<string>\",\n \"const__num_stories\": 123,\n \"const__num_stories_below_gnd\": 123,\n \"const__roof_covering\": \"<string>\",\n \"const__wall_type\": \"<string>\",\n \"country\": \"<string>\",\n \"county\": \"<string>\",\n \"deductible_amount\": 123,\n \"deductible_amount2\": 123,\n \"deductible_amount3\": 123,\n \"deductible_type\": 123,\n \"dtc_include_coastline_within_miles\": 123,\n \"dtc_return_connected_coastlines\": true,\n \"geocode_confidence\": 123,\n \"geocode_precision\": 123,\n \"hurricane_basin\": \"<string>\",\n \"hurricane_name\": \"<string>\",\n \"hurricane_season\": 123,\n \"hurricane_year\": 123,\n \"insured_business_name\": \"<string>\",\n \"insured_name\": \"<string>\",\n \"latitude\": 123,\n \"lightbox_assessment_id\": \"<string>\",\n \"lightbox_parcel_id\": \"<string>\",\n \"lightbox_parcel_wkt\": \"<string>\",\n \"limits__bi_limit\": 123,\n \"limits__bpp_limit\": 123,\n \"limits__building_limit\": 123,\n \"limits__signs_and_other_limit\": 123,\n \"longitude\": 123,\n \"model_code\": \"<string>\",\n \"occupancy__code_air\": \"<string>\",\n \"occupancy__code_atc\": \"<string>\",\n \"occupancy__type_desc\": \"<string>\",\n \"postal_code\": \"<string>\",\n \"site_name\": \"<string>\",\n \"sources\": [],\n \"state\": \"<string>\",\n \"state_code\": \"<string>\",\n \"state_name\": \"<string>\"\n }\n ],\n \"callback_url\": \"<string>\",\n \"check_cache\": true,\n \"delegate_to\": \"<string>\",\n \"include_raw_request\": false,\n \"include_raw_response\": false,\n \"sources\": [],\n \"timeout\": 300\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://data-api.sovfixer.com/api/v1/bulk_enhance")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"locations\": [\n {\n \"id\": \"<string>\",\n \"address\": \"<string>\",\n \"address_line_1\": \"<string>\",\n \"address_line_2\": \"<string>\",\n \"architectural_style\": \"<string>\",\n \"bldg_name\": \"<string>\",\n \"bq_id\": \"<string>\",\n \"city\": \"<string>\",\n \"company_ein\": \"<string>\",\n \"company_name\": \"<string>\",\n \"company_website\": \"<string>\",\n \"const__bldg_area\": 123,\n \"const__bldg_year_built\": 123,\n \"const__code_air\": \"<string>\",\n \"const__code_rms\": \"<string>\",\n \"const__num_stories\": 123,\n \"const__num_stories_below_gnd\": 123,\n \"const__roof_covering\": \"<string>\",\n \"const__wall_type\": \"<string>\",\n \"country\": \"<string>\",\n \"county\": \"<string>\",\n \"deductible_amount\": 123,\n \"deductible_amount2\": 123,\n \"deductible_amount3\": 123,\n \"deductible_type\": 123,\n \"dtc_include_coastline_within_miles\": 123,\n \"dtc_return_connected_coastlines\": true,\n \"geocode_confidence\": 123,\n \"geocode_precision\": 123,\n \"hurricane_basin\": \"<string>\",\n \"hurricane_name\": \"<string>\",\n \"hurricane_season\": 123,\n \"hurricane_year\": 123,\n \"insured_business_name\": \"<string>\",\n \"insured_name\": \"<string>\",\n \"latitude\": 123,\n \"lightbox_assessment_id\": \"<string>\",\n \"lightbox_parcel_id\": \"<string>\",\n \"lightbox_parcel_wkt\": \"<string>\",\n \"limits__bi_limit\": 123,\n \"limits__bpp_limit\": 123,\n \"limits__building_limit\": 123,\n \"limits__signs_and_other_limit\": 123,\n \"longitude\": 123,\n \"model_code\": \"<string>\",\n \"occupancy__code_air\": \"<string>\",\n \"occupancy__code_atc\": \"<string>\",\n \"occupancy__type_desc\": \"<string>\",\n \"postal_code\": \"<string>\",\n \"site_name\": \"<string>\",\n \"sources\": [],\n \"state\": \"<string>\",\n \"state_code\": \"<string>\",\n \"state_name\": \"<string>\"\n }\n ],\n \"callback_url\": \"<string>\",\n \"check_cache\": true,\n \"delegate_to\": \"<string>\",\n \"include_raw_request\": false,\n \"include_raw_response\": false,\n \"sources\": [],\n \"timeout\": 300\n}"
response = http.request(request)
puts response.read_body{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"message": "<string>"
}{
"message": "<string>"
}Body
A DataclassSerializer is just a regular Serializer, except that:
- A set of default fields are automatically populated.
- A set of default validators are automatically populated.
- Default
.create()and.update()implementations are provided.
The process of automatically determining a set of serializer fields based on the dataclass fields is slightly complex, but you almost certainly don't need to dig into the implementation.
If the DataclassSerializer class doesn't generate the set of fields that you need you should either declare the
extra/differing fields explicitly on the serializer class, or simply use a Serializer class.
Show child attributes
Show child attributes
Optional webhook URL for posting results. If provided, results will be provided upon completion in the same format as the GET /bulk_enhance response.
If false, bypass the cache and force a fresh fetch from all datasources.
If set, delegate this request to another user (requires delegation permissions).
If true, include the raw request sent to the datasource for non cache hits. Does not support all datasources.
If true, include the datasource's original response.
Specify any desired third-party data sources to include for this location.
PG, PH, LB Seconds before giving up. If timeout is reached, it will finalize the batch and provide any data that was aggregated in time.
Response
Newly-created request ID. Use this as the id for future requests.