Guidewire ClaimCenter REST API
guidewire.com · Company
REST API for Guidewire ClaimCenter — the industry-standard P&C claims management system. Covers claims, exposures, activities, documents, contacts, and financials (reserves, payments, recoveries). Requires an active Guidewire Cloud or on-prem license.
Authentication
Sample Requests
Returns full claim record including status, loss cause, parties, and exposure summary.
Hover any highlighted part to learn what it does
| Authorization | Bearer YOUR_ACCESS_TOKEN |
curl -X GET "https://developer.guidewire.com/cl/rest-api/cc/v1/claims/{claimNumber}" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"import requests
headers = {
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
}
response = requests.get(
"https://developer.guidewire.com/cl/rest-api/cc/v1/claims/{claimNumber}",
headers=headers,
)
print(response.json())const url = 'https://developer.guidewire.com/cl/rest-api/cc/v1/claims/{claimNumber}';
const response = await fetch(url, {
headers: {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN'
},
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
)
func main() {
targetURL := "https://developer.guidewire.com/cl/rest-api/cc/v1/claims/{claimNumber}"
req, _ := http.NewRequest("GET", targetURL, nil)
req.Header.Set("Authorization", "Bearer YOUR_ACCESS_TOKEN")
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://developer.guidewire.com/cl/rest-api/cc/v1/claims/{claimNumber}")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
req["Authorization"] = "Bearer YOUR_ACCESS_TOKEN"
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://developer.guidewire.com/cl/rest-api/cc/v1/claims/{claimNumber}";
$opts = ["http" => [
"method" => "GET",
"header" => implode("\r\n", [
"Authorization: Bearer YOUR_ACCESS_TOKEN"
]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Returns paginated list of claims. Filter by assignedUser, status, lossDate range, or claimant name.
Hover any highlighted part to learn what it does
| Authorization | Bearer YOUR_ACCESS_TOKEN |
curl -X GET "https://developer.guidewire.com/cl/rest-api/cc/v1/claims?status=Open&pageSize=25" \ -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
import requests
params = {
"status": "Open",
"pageSize": "25"
}
headers = {
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
}
response = requests.get(
"https://developer.guidewire.com/cl/rest-api/cc/v1/claims",
params=params,
headers=headers,
)
print(response.json())const url = new URL('https://developer.guidewire.com/cl/rest-api/cc/v1/claims');
url.searchParams.set('status', 'Open');
url.searchParams.set('pageSize', '25');
const response = await fetch(url, {
headers: {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN'
},
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://developer.guidewire.com/cl/rest-api/cc/v1/claims")
q := baseURL.Query()
q.Set("status", "Open")
q.Set("pageSize", "25")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
req.Header.Set("Authorization", "Bearer YOUR_ACCESS_TOKEN")
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://developer.guidewire.com/cl/rest-api/cc/v1/claims")
uri.query = URI.encode_www_form({
"status" => "Open",
"pageSize" => "25"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
req["Authorization"] = "Bearer YOUR_ACCESS_TOKEN"
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://developer.guidewire.com/cl/rest-api/cc/v1/claims?" . http_build_query([
"status" => "Open",
"pageSize" => "25"
]);
$opts = ["http" => [
"method" => "GET",
"header" => implode("\r\n", [
"Authorization: Bearer YOUR_ACCESS_TOKEN"
]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Creates a new claim. Required fields vary by loss type and policy configuration.
Hover any highlighted part to learn what it does
| Content-Type | application/json |
| Authorization | Bearer YOUR_ACCESS_TOKEN |
{
"lossDate": "2024-01-15",
"lossCause": "collision",
"policyNumber": "POL-000123",
"reportedDate": "2024-01-16"
}
curl -X POST "https://developer.guidewire.com/cl/rest-api/cc/v1/claims" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"lossDate":"2024-01-15","lossCause":"collision","policyNumber":"POL-000123","reportedDate":"2024-01-16"}'import requests
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
}
data = {
"lossDate": "2024-01-15",
"lossCause": "collision",
"policyNumber": "POL-000123",
"reportedDate": "2024-01-16"
}
response = requests.post(
"https://developer.guidewire.com/cl/rest-api/cc/v1/claims",
headers=headers,
json=data,
)
print(response.json())const url = 'https://developer.guidewire.com/cl/rest-api/cc/v1/claims';
const response = await fetch(url, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer YOUR_ACCESS_TOKEN'
},
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
"lossDate": "2024-01-15",
"lossCause": "collision",
"policyNumber": "POL-000123",
"reportedDate": "2024-01-16"
}),
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"bytes"
"encoding/json"
)
func main() {
targetURL := "https://developer.guidewire.com/cl/rest-api/cc/v1/claims"
jsonData, _ := json.Marshal({"lossDate":"2024-01-15","lossCause":"collision","policyNumber":"POL-000123","reportedDate":"2024-01-16"})
req, _ := http.NewRequest("POST", targetURL, bytes.NewBuffer(jsonData))
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", "Bearer YOUR_ACCESS_TOKEN")
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://developer.guidewire.com/cl/rest-api/cc/v1/claims")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Post.new(uri)
req["Content-Type"] = "application/json"
req["Authorization"] = "Bearer YOUR_ACCESS_TOKEN"
req["Content-Type"] = "application/json"
req.body = "{\"lossDate\":\"2024-01-15\",\"lossCause\":\"collision\",\"policyNumber\":\"POL-000123\",\"reportedDate\":\"2024-01-16\"}"
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://developer.guidewire.com/cl/rest-api/cc/v1/claims";
$opts = ["http" => [
"method" => "POST",
"header" => implode("\r\n", [
"Content-Type: application/json",
"Authorization: Bearer YOUR_ACCESS_TOKEN",
"Content-Type: application/json"
]),
"content" => json_encode({"lossDate":"2024-01-15","lossCause":"collision","policyNumber":"POL-000123","reportedDate":"2024-01-16"}),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- Requires an active Guidewire Cloud or on-premises ClaimCenter license
- Contact your Guidewire tenant admin to get OAuth2 client_id and client_secret
- Get an access token: POST to https://{tenant}.guidewire.com/oauth2/token with grant_type=client_credentials
- In Postman, set Authorization to Bearer Token and paste the access_token
- Base URL is https://{tenant}.guidewire.com/cc/v1 — replace {tenant} with your instance name
- Full API reference at https://developer.guidewire.com (Guidewire login required)
- Test against a sandbox/dev environment — never test writes against production
What can you build with Guidewire ClaimCenter REST API?
Guidewire ClaimCenter REST API 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
OAuth 2.0. OAuth lets your app act on behalf of a user. You redirect them to authorise access, receive a token, then use that token in requests. Best for accessing user-owned data. Guidewire ClaimCenter REST API 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?