duck-creek Products API

Insurance product definitions and configuration

Operations 1

GET /products List insurance products #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/duck-creek-products-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

duck-creek-products-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Duck Creek Policy Administration Billing Products API
  description: Duck Creek Policy Administration API enables product configuration, premium calculation, policy lifecycle management, and policy issuance for P&C and specialty insurance carriers. Duck Creek Anywhere provides 2,600+ RESTful APIs across all Duck Creek applications using open standards. Supports end-to-end policy management from quoting through renewal.
  version: 1.0.0
  contact:
    name: Duck Creek Support
    url: https://www.duckcreek.com/customer-support/
  license:
    name: Duck Creek Terms of Use
    url: https://www.duckcreek.com/duck-creek-terms-use/
servers:
- url: https://api.duckcreek.com/v1
  description: Duck Creek API Production
security:
- oauth2: []
tags:
- name: Products
  description: Insurance product definitions and configuration
paths:
  /products:
    get:
      operationId: listProducts
      summary: List insurance products
      description: Returns available insurance product definitions and configurations.
      tags:
      - Products
      parameters:
      - name: lineOfBusiness
        in: query
        description: Filter by line of business
        schema:
          type: string
          enum:
          - AUTO
          - HOME
          - COMMERCIAL_PROPERTY
          - GENERAL_LIABILITY
          - WORKERS_COMP
          - UMBRELLA
      - name: state
        in: query
        description: Filter products available in a specific US state (2-letter code)
        schema:
          type: string
          pattern: ^[A-Z]{2}$
      responses:
        '200':
          description: List of insurance products
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProductList'
components:
  schemas:
    ProductSummary:
      type: object
      properties:
        productCode:
          type: string
        productName:
          type: string
        lineOfBusiness:
          type: string
        availableStates:
          type: array
          items:
            type: string
        effectiveDate:
          type: string
          format: date
    ProductList:
      type: object
      properties:
        products:
          type: array
          items:
            $ref: '#/components/schemas/ProductSummary'
  securitySchemes:
    oauth2:
      type: oauth2
      description: OAuth 2.0 for Duck Creek Anywhere API authentication
      flows:
        clientCredentials:
          tokenUrl: https://api.duckcreek.com/oauth/token
          scopes:
            policies:read: Read policy data
            policies:write: Create and modify policies
            claims:read: Read claim data
            claims:write: Create and update claims
            billing:read: Read billing data