Xactimate / Xactanalysis API (Verisk)
verisk.com · Company
API integration for Xactimate — the dominant property damage estimating platform used in 80%+ of US property claims. Xactanalysis is the web-based assignment and review workflow. Guidewire ClaimCenter integrates with Xactanalysis to push assignments and pull completed estimates. Requires Verisk/Xactware partner agreement.
Authentication
Parameter name: X-API-Key (in header)
Sample Requests
Creates a new Xactanalysis assignment from a Guidewire claim. Triggers adjuster workflow for property damage estimation.
Hover any highlighted part to learn what it does
| X-API-Key auth | YOUR_API_KEY |
| Content-Type | application/json |
{
"lossType": "Wind",
"priority": "Standard",
"claimNumber": "CL-1234",
"adjusterEmail": "[email protected]",
"propertyAddress": "123 Main St, Austin TX 78701"
}
curl -X POST "https://xactanalysis.com/XactAnalysis/api/v1/assignments" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-H "Content-Type: application/json" \
-d '{"lossType":"Wind","priority":"Standard","claimNumber":"CL-1234","adjusterEmail":"[email protected]","propertyAddress":"123 Main St, Austin TX 78701"}'import requests
headers = {
"X-API-Key": "YOUR_API_KEY",
"Content-Type": "application/json"
}
data = {
"lossType": "Wind",
"priority": "Standard",
"claimNumber": "CL-1234",
"adjusterEmail": "[email protected]",
"propertyAddress": "123 Main St, Austin TX 78701"
}
response = requests.post(
"https://xactanalysis.com/XactAnalysis/api/v1/assignments",
headers=headers,
json=data,
)
print(response.json())const url = 'https://xactanalysis.com/XactAnalysis/api/v1/assignments';
const response = await fetch(url, {
method: 'POST',
headers: {
'X-API-Key': 'YOUR_API_KEY',
'Content-Type': 'application/json'
},
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
"lossType": "Wind",
"priority": "Standard",
"claimNumber": "CL-1234",
"adjusterEmail": "[email protected]",
"propertyAddress": "123 Main St, Austin TX 78701"
}),
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"bytes"
"encoding/json"
)
func main() {
targetURL := "https://xactanalysis.com/XactAnalysis/api/v1/assignments"
jsonData, _ := json.Marshal({"lossType":"Wind","priority":"Standard","claimNumber":"CL-1234","adjusterEmail":"[email protected]","propertyAddress":"123 Main St, Austin TX 78701"})
req, _ := http.NewRequest("POST", targetURL, bytes.NewBuffer(jsonData))
req.Header.Set("X-API-Key", "YOUR_API_KEY")
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Content-Type", "application/json")
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://xactanalysis.com/XactAnalysis/api/v1/assignments")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Post.new(uri)
req["X-API-Key"] = "YOUR_API_KEY"
req["Content-Type"] = "application/json"
req["Content-Type"] = "application/json"
req.body = "{\"lossType\":\"Wind\",\"priority\":\"Standard\",\"claimNumber\":\"CL-1234\",\"adjusterEmail\":\"[email protected]\",\"propertyAddress\":\"123 Main St, Austin TX 78701\"}"
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://xactanalysis.com/XactAnalysis/api/v1/assignments";
$opts = ["http" => [
"method" => "POST",
"header" => implode("\r\n", [
"X-API-Key: YOUR_API_KEY",
"Content-Type: application/json",
"Content-Type: application/json"
]),
"content" => json_encode({"lossType":"Wind","priority":"Standard","claimNumber":"CL-1234","adjusterEmail":"[email protected]","propertyAddress":"123 Main St, Austin TX 78701"}),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Returns the current status and estimate details for a submitted assignment.
Hover any highlighted part to learn what it does
| X-API-Key auth | YOUR_API_KEY |
curl -X GET "https://xactanalysis.com/XactAnalysis/api/v1/assignments/{assignmentId}" \
-H "X-API-Key: YOUR_API_KEY"import requests
headers = {
"X-API-Key": "YOUR_API_KEY"
}
response = requests.get(
"https://xactanalysis.com/XactAnalysis/api/v1/assignments/{assignmentId}",
headers=headers,
)
print(response.json())const url = 'https://xactanalysis.com/XactAnalysis/api/v1/assignments/{assignmentId}';
const response = await fetch(url, {
headers: {
'X-API-Key': 'YOUR_API_KEY'
},
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
)
func main() {
targetURL := "https://xactanalysis.com/XactAnalysis/api/v1/assignments/{assignmentId}"
req, _ := http.NewRequest("GET", targetURL, nil)
req.Header.Set("X-API-Key", "YOUR_API_KEY")
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://xactanalysis.com/XactAnalysis/api/v1/assignments/{assignmentId}")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
req["X-API-Key"] = "YOUR_API_KEY"
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://xactanalysis.com/XactAnalysis/api/v1/assignments/{assignmentId}";
$opts = ["http" => [
"method" => "GET",
"header" => implode("\r\n", [
"X-API-Key: YOUR_API_KEY"
]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- Requires a Verisk/Xactware partner or insurer agreement — contact [email protected]
- API keys are provisioned per insurer environment (UAT and Production)
- Guidewire accelerator available on Guidewire Marketplace — search "Xactanalysis"
- Test in Xactanalysis UAT environment before connecting to Production
- Webhook/callback URL must be configured to receive completed estimate notifications
- Estimate data returns as Xactimate ESX (XML) or JSON format
What can you build with Xactimate / Xactanalysis API (Verisk)?
Xactimate / Xactanalysis API (Verisk) is a Company API. Developers commonly use company APIs for:
- enriching CRM records with company firmographics
- building lead-generation and prospecting tools
- verifying business identity and registration details
- monitoring competitors and market intelligence
- powering B2B data enrichment pipelines
API Key authentication. You'll receive a key after signing up. Send it with every request — in a header or query parameter. Keep it out of client-side code and never commit it to version control. Xactimate / Xactanalysis API (Verisk) is a paid API — check the provider's pricing page before building a production integration.
New to APIs? Read our beginner's guide · Learn about API keys · What is REST?