Skip to content

Endpoint examples

A few examples of the kind of requests most teams make early on. Not the full OpenAPI reference.

Full inventory — 1,484 endpoints across 23 providers — in Interactive docs.

Prerequisites

These assume a valid bearer token. If not, start with Getting started.

export TOKEN="eyJhbGciOiJSUzI1NiIs..."

Lookups

Reference-data endpoints — read-only, ideal for dropdowns, validation, and initial wiring.

Vehicle brands

curl -X GET "https://api.insurancegateway.gr/intersalonica/auto/brands" \
  -H "Authorization: Bearer $TOKEN"

Countries (travel insurance)

curl -X GET "https://api.insurancegateway.gr/mondial/countries" \
  -H "Authorization: Bearer $TOKEN"

Vehicle usages (Ydrogeios)

curl -X GET "https://api.insurancegateway.gr/ydrogeios/vehicle/usages" \
  -H "Authorization: Bearer $TOKEN"

Quotation & application flows

Allianz motor application

curl -X POST "https://api.insurancegateway.gr/allianz/applications" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "policy": {
      "startDate": "2026-06-01",
      "endDate": "2027-06-01"
    },
    "vehicle": {
      "plateNumber": "ABC-1234",
      "manufacturerCode": "VW",
      "modelCode": "Polo"
    },
    "holder": {
      "afm": "123456789",
      "fullName": "Test User"
    }
  }'

Eurolife fast pension quote

curl -X POST "https://api.insurancegateway.gr/eurolife/life/core/fast-pension-quote" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "personDob": "1985-04-12",
    "monthlyContribution": 200,
    "durationYears": 20
  }'

Allianz applications by customer AFM

curl -X GET "https://api.insurancegateway.gr/allianz/applications/search?clientAfm=123456789&start=1&limit=20" \
  -H "Authorization: Bearer $TOKEN"

Documents

IPID download (PDF)

curl -X GET "https://api.insurancegateway.gr/ydrogeios/application/ipid?applicationId=APP-12345" \
  -H "Authorization: Bearer $TOKEN" \
  -o ipid.pdf

Find the rest

Use the interactive docs for:

  • Full route list per provider
  • Request/response schemas
  • Field descriptions and required values
  • Code snippets for quick tests

Bruno collections

Working with Bruno? Ask Support for the provider collections — ready-made requests and env variables.