Find an API

Search public APIs with auth details & Postman guides

← All APIs

Xactimate / Xactanalysis API (Verisk)

verisk.com · Company

Company API Key Paid Insurance Claims Property Insurance

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

API Key API key provided by Verisk/Xactware upon partner agreement. Passed as header. Contact [email protected] to initiate.

Parameter name: X-API-Key (in header)

Sample Requests

POST Submit claim assignment

Creates a new Xactanalysis assignment from a Guidewire claim. Triggers adjuster workflow for property damage estimation.

https://xactanalysis.com/XactAnalysis/api/v1/assignments

Hover any highlighted part to learn what it does

Headers — extra info sent with the request
X-API-Key auth YOUR_API_KEY
Content-Type application/json
Request Body — data you're sending
{
  "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));
GET Get estimate status

Returns the current status and estimate details for a submitted assignment.

https://xactanalysis.com/XactAnalysis/api/v1/assignments/{assignmentId}

Hover any highlighted part to learn what it does

Headers — extra info sent with the request
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

Get Postman ↗
  1. Requires a Verisk/Xactware partner or insurer agreement — contact [email protected]
  2. API keys are provisioned per insurer environment (UAT and Production)
  3. Guidewire accelerator available on Guidewire Marketplace — search "Xactanalysis"
  4. Test in Xactanalysis UAT environment before connecting to Production
  5. Webhook/callback URL must be configured to receive completed estimate notifications
  6. 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?

Open documentation ↗