Ki Insurance · Arazzo Workflow

Ki — turn a broker slip into a quote

Version 1.0.0

Ki's slip extraction pipeline: register the slip upload, execute the extraction job, poll it to completion, read the result and promote it into a quote. Every operationId exists verbatim in the referenced OpenAPI, which is an API Evangelist derivation from Ki's published client bundle. Partner Auth0 credentials are required; Ki publishes no sandbox.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub InsuranceUnited KingdomLloyd's of LondonSpecialty InsuranceProperty and CasualtyUnderwritingInsurtechBrokersAlgorithmic UnderwritingReinsuranceArazzoWorkflows

Provider

ki-insurance

Workflows

slip-to-quote
Extract a broker slip and create a Ki quote from the result.
6 steps inputs: slipDocument outputs: quoteId
1
createUpload
Register the slip document for extraction.
2
executeJob
Execute the extraction job over the uploaded slip.
3
pollJobStatus
Poll until extraction completes. No webhook or callback exists — polling is the only completion mechanism Ki exposes.
4
readResult
Read the extracted, structured slip data for human review.
5
createQuoteFromResult
Promote the reviewed extraction into a quote. Extraction is probabilistic — confirm the fields with a human before this step.
6
confirmQuote
Read the resulting quote back before pricing it.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Ki — turn a broker slip into a quote
  version: 1.0.0
  description: >-
    Ki's slip extraction pipeline: register the slip upload, execute the
    extraction job, poll it to completion, read the result and promote it into a
    quote. Every operationId exists verbatim in the referenced OpenAPI, which is
    an API Evangelist derivation from Ki's published client bundle. Partner Auth0
    credentials are required; Ki publishes no sandbox.
sourceDescriptions:
- name: quotesApi
  url: ../openapi/ki-insurance-quotes-api-openapi.yml
  type: openapi
- name: slipExtractionApi
  url: ../openapi/ki-insurance-slip-extraction-api-openapi.yml
  type: openapi
workflows:
- workflowId: slip-to-quote
  summary: Extract a broker slip and create a Ki quote from the result.
  inputs:
    type: object
    properties:
      slipDocument:
        type: string
        description: The broker slip document, sent as a multipart body.
  steps:
  - stepId: createUpload
    description: Register the slip document for extraction.
    operationId: createSlipExtractionUpload
    requestBody:
      contentType: multipart/form-data
      payload: $inputs.slipDocument
    successCriteria:
    - condition: $statusCode == 200
  - stepId: executeJob
    description: Execute the extraction job over the uploaded slip.
    operationId: createSlipExtractionExecuteSlipExtractionJob
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      jobId: $response.body#/jobId
  - stepId: pollJobStatus
    description: >-
      Poll until extraction completes. No webhook or callback exists — polling is
      the only completion mechanism Ki exposes.
    operationId: getSlipExtractionJobStatus
    parameters:
    - name: jobId
      in: path
      value: $steps.executeJob.outputs.jobId
    successCriteria:
    - condition: $statusCode == 200
  - stepId: readResult
    description: Read the extracted, structured slip data for human review.
    operationId: getSlipExtractionJobResult
    parameters:
    - name: jobId
      in: path
      value: $steps.executeJob.outputs.jobId
    successCriteria:
    - condition: $statusCode == 200
  - stepId: createQuoteFromResult
    description: >-
      Promote the reviewed extraction into a quote. Extraction is probabilistic —
      confirm the fields with a human before this step.
    operationId: createSlipExtractionQuoteFromJobResult
    parameters:
    - name: jobId
      in: path
      value: $steps.executeJob.outputs.jobId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      quoteId: $response.body#/quoteId
  - stepId: confirmQuote
    description: Read the resulting quote back before pricing it.
    operationId: getQuoteDetail
    parameters:
    - name: quoteId
      in: path
      value: $steps.createQuoteFromResult.outputs.quoteId
    successCriteria:
    - condition: $statusCode == 200
  outputs:
    quoteId: $steps.createQuoteFromResult.outputs.quoteId

Work with this as data

Every workflow 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 arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • 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 workflow
curl "https://apis.io/api/v1/arazzo/ki-insurance-slip-to-quote"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?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.