samedi API Reference

Health Insurances

Info
URL https://patient.samedi.de/api/booking/v3/insurances
Parameters none
Authentication API Key

This endpoint returns an array of all health insurance companies. Each element consists of the insurance name and its ID. This allows the Client to present its users with a list of insurance companies and convey the users’ selection in subsequent requests to samedi with the unique company ID.

Sample Request:

GET /api/booking/v3/insurances?client_id=CLIENT_ID HTTP/1.1
Host: patient.samedi.de

Sample Response:

HTTP/1.1 200 OK
Content-Type: application/json

[{
  "name": "Gesetzlich mit Zusatzversicherung",
  "id": 285
}, {
  "name": "Selbstzahler",
  "id": 280
}, {
  "name": "advita BKK",
  "id": 17
}, {
  "name": "Allianz Private Krankenversicherungs-AG",
  "id": 230
}, {
  "name": "AOK Baden-Württemberg",
  "id": 1
}]