Skip to content
This repository was archived by the owner on Apr 2, 2026. It is now read-only.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kvberlin Go Integration

[Archived because kvberlin now links to 116117 and the service doesn't work any more.]

This is an unofficial API integration of the doctor- and therapist search of kvberlin. If you want to use this library, you'll need to ask them for permission.

Usage

go get github.com/Vector-Hector/kvberlin

Example

package main

import (
	"fmt"
	"github.com/Vector-Hector/kvberlin"
)

func main() {
	session, err := kvberlin.NewSession()
	if err != nil {
		panic(err)
	}

	doctors, err := session.Search(&kvberlin.DoctorSearchRequest{
		Dist:        6,
		Lon:         "13.3778446",
		Lat:         "52.5162857",
		TargetGroup: "E",
	})
	if err != nil {
		panic(err)
	}

	for _, doctor := range doctors {
		fmt.Println("Found doctor", doctor.Name)
	}
}

License

I publish my own contribution under the MIT license. Kvberlin may have intellectual property associated with the API format itself, so ask them if you want to use this library.

About

Go API integration for kvberlin's doctor and therapist search

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages