Laka quotes API

The quotes API from Laka — 1 operation(s) for quotes.

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/laka-quotes-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 email required.

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

OpenAPI Specification

laka-quotes-api-openapi.yml Raw ↑
openapi: 3.0.0
info:
  title: Laka accounts quotes API
  description: Laka API (next)
  version: '2024-09-01'
  contact: {}
servers:
- url: https://api.uat.laka.co
  description: UAT
- url: https://api-{region}.app.laka.co
  description: Production
  variables:
    region:
      enum:
      - nl
      - fr
      - gb
      default: gb
tags:
- name: quotes
paths:
  /v3/quotes/quick-quote-for-address:
    get:
      operationId: QuoteController_getQuickQuoteForAddress
      summary: Get Quick Quote for Address
      description: Get a quick quote for a given postal code based on the user's existing property policy.
      parameters:
      - name: postalCode
        required: true
        in: query
        schema:
          type: string
      - name: x-api-region
        in: header
        style: simple
        description: The API region of your interaction. In most cases, this will match the customer region
        schema:
          type: string
      - name: x-api-language
        in: header
        description: Where applicable, the language for any textual content we may send to the customer.
        style: simple
        schema:
          type: string
      responses:
        '200':
          description: Quick quote generated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QuickQuoteForAddressResponse'
      tags:
      - quotes
      security:
      - x-api-key: []
components:
  schemas:
    PriceDetails:
      type: object
      properties:
        packageId:
          type: string
        capPrice:
          type: number
        displayPrice:
          type: number
        average:
          type: number
        additionalCostsTotal:
          type: number
        capIncreasePrc:
          type: string
        capDecreasePrc:
          type: string
      required:
      - packageId
      - capPrice
      - displayPrice
      - average
      - additionalCostsTotal
      - capIncreasePrc
      - capDecreasePrc
    QuickQuoteForAddressResponse:
      type: object
      properties:
        priceDetails:
          $ref: '#/components/schemas/PriceDetails'
      required:
      - priceDetails
  securitySchemes:
    x-api-key:
      type: apiKey
      in: header
      name: x-api-key