Guidewire website screenshot

Guidewire

Guidewire provides the insurance industry's leading platform including PolicyCenter, ClaimCenter, and BillingCenter. REST APIs enable policy lifecycle management, claims processing, payment orchestration, and underwriting workflows for P&C insurance carriers on the Guidewire Cloud platform.

4 APIs 0 Features
InsurancePolicyClaimsBillingP&C

APIs

Guidewire PolicyCenter API

The Guidewire PolicyCenter API provides REST endpoints for policy lifecycle management, underwriting workflows, policy issuance, endorsements, renewals, and cancellations for pr...

Guidewire ClaimCenter API

The Guidewire ClaimCenter API provides REST endpoints for claims intake, assignment, investigation, reserving, payment processing, and closure workflows for P&C insurance claim ...

Guidewire BillingCenter API

The Guidewire BillingCenter API provides REST endpoints for payment orchestration, invoice generation, payment plans, disbursements, and collections management for insurance bil...

Guidewire Integration Gateway API

The Guidewire Integration Gateway provides a managed API layer for connecting Guidewire Cloud applications to third-party systems, enabling event-driven integrations and REST AP...

Collections

GraphQL

Guidewire GraphQL API

Guidewire is a cloud platform for property and casualty insurance covering policy administration, billing, and claims management. The API covers policies, quotes, billing accoun...

GRAPHQL

Pricing Plans

Guidewire Plans Pricing

1 plans

PLANS

Rate Limits

Guidewire Rate Limits

1 limits

RATE LIMITS

FinOps

Event Specifications

Guidewire Integration Gateway Events

Guidewire Integration Gateway AsyncAPI specification for event-driven integrations. The gateway publishes webhook events when key policy, claim, and billing lifecycle events occ...

ASYNCAPI

Semantic Vocabularies

Guidewire Context

11 classes · 17 properties

JSON-LD

Resources

🔗
LinkedIn
LinkedIn
🔗
LlmsText
LlmsText

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Guidewire PolicyCenter API
  version: 1.0.0
request:
  auth:
    type: oauth2
    flow: authorization_code
    authorizationUrl: https://login.guidewire.com/oauth/authorize
    accessTokenUrl: https://login.guidewire.com/oauth/token
    credentials:
      clientId: '{{clientId}}'
      clientSecret: '{{clientSecret}}'
items:
- info:
    name: Policies
    type: folder
  items:
  - info:
      name: List policies
      type: http
    http:
      method: GET
      url: https://{tenant}.guidewire.com/pc/rest/v1/policies
      params:
      - name: pageSize
        value: ''
        type: query
      - name: pageNumber
        value: ''
        type: query
      - name: status
        value: ''
        type: query
      - name: policyNumber
        value: ''
        type: query
      - name: product
        value: ''
        type: query
    docs: Returns a paginated list of policies accessible to the authenticated user. Supports filtering by policy number,
      status, product, and effective date range.
  - info:
      name: Get policy details
      type: http
    http:
      method: GET
      url: https://{tenant}.guidewire.com/pc/rest/v1/policies/:policyId
      params:
      - name: policyId
        value: ''
        type: path
        description: Unique policy identifier (PublicID)
    docs: Returns complete policy details including coverages, limits, deductibles, insured parties, and premium information.
  - info:
      name: List policy transactions
      type: http
    http:
      method: GET
      url: https://{tenant}.guidewire.com/pc/rest/v1/policies/:policyId/transactions
      params:
      - name: policyId
        value: ''
        type: path
    docs: Returns all transactions (endorsements, renewals, cancellations) associated with a policy.
  - info:
      name: Issue policy from submission
      type: http
    http:
      method: POST
      url: https://{tenant}.guidewire.com/pc/rest/v1/submissions/:submissionId/issue
      params:
      - name: submissionId
        value: ''
        type: path
    docs: Issues a bound policy from an approved submission. Returns the new policy number and effective dates.
- info:
    name: Quotes
    type: folder
  items:
  - info:
      name: Create new policy submission
      type: http
    http:
      method: POST
      url: https://{tenant}.guidewire.com/pc/rest/v1/submissions
      body:
        type: json
        data: '{}'
    docs: Creates a new policy submission (quote request) for underwriting. Returns a submission ID for tracking through the
      quoting and issuance workflow.
  - info:
      name: Get submission details
      type: http
    http:
      method: GET
      url: https://{tenant}.guidewire.com/pc/rest/v1/submissions/:submissionId
      params:
      - name: submissionId
        value: ''
        type: path
    docs: Returns the current state of a policy submission including underwriting decisions and quoted premiums.
  - info:
      name: Request a quote for a submission
      type: http
    http:
      method: POST
      url: https://{tenant}.guidewire.com/pc/rest/v1/submissions/:submissionId/quote
      params:
      - name: submissionId
        value: ''
        type: path
    docs: Triggers rating and underwriting for a submission to produce a quoted premium. Returns rated coverages and premium
      breakdown.
- info:
    name: Accounts
    type: folder
  items:
  - info:
      name: List accounts
      type: http
    http:
      method: GET
      url: https://{tenant}.guidewire.com/pc/rest/v1/accounts
      params:
      - name: q
        value: ''
        type: query
        description: Search query for account name
      - name: pageSize
        value: ''
        type: query
    docs: Returns customer accounts with optional search by name or account number.
  - info:
      name: Get account details
      type: http
    http:
      method: GET
      url: https://{tenant}.guidewire.com/pc/rest/v1/accounts/:accountId
      params:
      - name: accountId
        value: ''
        type: path
    docs: Returns the account record including all associated contacts and policy references.
bundled: true