Μετάβαση στο περιεχόμενο

Endpoint examples

Επιλεγμένα παραδείγματα για το είδος των requests που κάνει συνήθως μια ομάδα στην αρχή. Όχι ολόκληρο το OpenAPI reference.

Full inventory — 1.484 endpoints σε 23 providers — στα Interactive docs.

Prerequisites

Τα παρακάτω υποθέτουν έγκυρο bearer token. Αν όχι, ξεκινήστε από το Getting started.

export TOKEN="eyJhbGciOiJSUzI1NiIs..."

Lookups

Reference-data endpoints — read-only, ιδανικά για dropdowns, validations και αρχικό 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

Χρησιμοποιήστε τα interactive docs για:

  • Full route list ανά provider
  • Request/response schemas
  • Field descriptions και required values
  • Code snippets για γρήγορα tests

Bruno collections

Δουλεύετε με Bruno; Ζητήστε από το Support τα provider collections — έτοιμα requests και env variables.