Find an API

Search public APIs with auth details & Postman guides

← All APIs

Flinkster_API_NG

deutschebahn · Data

Data No Auth Free & Open transport open_data

This REST-API enables you to query for private transport sharing offers provided by companies and cities in Germany, Netherland and Austria. You can search for informations about the rental stations (points or areas) where you can find the rentals by utilizing the /areas/ ressource. With the help of the proximity search in the /bookingproposals/ URI you can request the availabilities of the rentalobjects for spontaneous or planed usage in the future. Feel free to browse through data by setti

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET List Areas by Criteria.

Search for areas (locations of rental objects) by criteria.

https://api.apis.guru/v2/specs/deutschebahn.com/flinkster/v1/areas?lat=51.5074&lon=-0.1278&type=json&limit=10&expand=example&offset=0&radius=1&provider=example&providernetwork=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/deutschebahn.com/flinkster/v1/areas?lat=51.5074&lon=-0.1278&type=json&limit=10&expand=example&offset=0&radius=1&provider=example&providernetwork=example"
import requests
params = {
    "lat": "51.5074",
    "lon": "-0.1278",
    "type": "json",
    "limit": "10",
    "expand": "example",
    "offset": "0",
    "radius": "1",
    "provider": "example",
    "providernetwork": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/deutschebahn.com/flinkster/v1/areas",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/deutschebahn.com/flinkster/v1/areas');
url.searchParams.set('lat', '51.5074');
url.searchParams.set('lon', '-0.1278');
url.searchParams.set('type', 'json');
url.searchParams.set('limit', '10');
url.searchParams.set('expand', 'example');
url.searchParams.set('offset', '0');
url.searchParams.set('radius', '1');
url.searchParams.set('provider', 'example');
url.searchParams.set('providernetwork', 'example');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/deutschebahn.com/flinkster/v1/areas")
	q := baseURL.Query()
	q.Set("lat", "51.5074")
	q.Set("lon", "-0.1278")
	q.Set("type", "json")
	q.Set("limit", "10")
	q.Set("expand", "example")
	q.Set("offset", "0")
	q.Set("radius", "1")
	q.Set("provider", "example")
	q.Set("providernetwork", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/deutschebahn.com/flinkster/v1/areas")
uri.query = URI.encode_www_form({
  "lat" => "51.5074",
  "lon" => "-0.1278",
  "type" => "json",
  "limit" => "10",
  "expand" => "example",
  "offset" => "0",
  "radius" => "1",
  "provider" => "example",
  "providernetwork" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/deutschebahn.com/flinkster/v1/areas?" . http_build_query([
    "lat" => "51.5074",
    "lon" => "-0.1278",
    "type" => "json",
    "limit" => "10",
    "expand" => "example",
    "offset" => "0",
    "radius" => "1",
    "provider" => "example",
    "providernetwork" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Query for available RentalObjects of a specific view

Here you can query all bookable Rental Objects with different Parameters (Time, Location,...)

https://api.apis.guru/v2/specs/deutschebahn.com/flinkster/v1/bookingproposals?end=example&lat=51.5074&lon=-0.1278&view=example&begin=example&limit=10&expand=example&offset=0&radius=1&providernetwork=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/deutschebahn.com/flinkster/v1/bookingproposals?end=example&lat=51.5074&lon=-0.1278&view=example&begin=example&limit=10&expand=example&offset=0&radius=1&providernetwork=example"
import requests
params = {
    "end": "example",
    "lat": "51.5074",
    "lon": "-0.1278",
    "view": "example",
    "begin": "example",
    "limit": "10",
    "expand": "example",
    "offset": "0",
    "radius": "1",
    "providernetwork": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/deutschebahn.com/flinkster/v1/bookingproposals",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/deutschebahn.com/flinkster/v1/bookingproposals');
url.searchParams.set('end', 'example');
url.searchParams.set('lat', '51.5074');
url.searchParams.set('lon', '-0.1278');
url.searchParams.set('view', 'example');
url.searchParams.set('begin', 'example');
url.searchParams.set('limit', '10');
url.searchParams.set('expand', 'example');
url.searchParams.set('offset', '0');
url.searchParams.set('radius', '1');
url.searchParams.set('providernetwork', 'example');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/deutschebahn.com/flinkster/v1/bookingproposals")
	q := baseURL.Query()
	q.Set("end", "example")
	q.Set("lat", "51.5074")
	q.Set("lon", "-0.1278")
	q.Set("view", "example")
	q.Set("begin", "example")
	q.Set("limit", "10")
	q.Set("expand", "example")
	q.Set("offset", "0")
	q.Set("radius", "1")
	q.Set("providernetwork", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/deutschebahn.com/flinkster/v1/bookingproposals")
uri.query = URI.encode_www_form({
  "end" => "example",
  "lat" => "51.5074",
  "lon" => "-0.1278",
  "view" => "example",
  "begin" => "example",
  "limit" => "10",
  "expand" => "example",
  "offset" => "0",
  "radius" => "1",
  "providernetwork" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/deutschebahn.com/flinkster/v1/bookingproposals?" . http_build_query([
    "end" => "example",
    "lat" => "51.5074",
    "lon" => "-0.1278",
    "view" => "example",
    "begin" => "example",
    "limit" => "10",
    "expand" => "example",
    "offset" => "0",
    "radius" => "1",
    "providernetwork" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Show index.

Show Service index.

https://api.apis.guru/v2/specs/deutschebahn.com/flinkster/v1/index

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/deutschebahn.com/flinkster/v1/index"
import requests
response = requests.get(
    "https://api.apis.guru/v2/specs/deutschebahn.com/flinkster/v1/index",
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/deutschebahn.com/flinkster/v1/index';

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
)

func main() {
	targetURL := "https://api.apis.guru/v2/specs/deutschebahn.com/flinkster/v1/index"
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/deutschebahn.com/flinkster/v1/index")

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/deutschebahn.com/flinkster/v1/index";
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));

Postman Setup Guide

Get Postman ↗
  1. See official documentation for authentication and setup.

What can you build with Flinkster_API_NG?

Flinkster_API_NG is a Data API. Developers commonly use data APIs for:

  • enriching your app with third-party datasets
  • building data pipelines and ETL workflows
  • querying and searching large datasets
  • powering research, analysis, and reporting tools
  • syncing reference data into your own systems

No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Flinkster_API_NG is free to use, making it a low-risk choice to experiment with.

New to APIs? Read our beginner's guide · Learn about API keys · What is REST?

Open documentation ↗