List Connections
curl --request GET \
--url https://api.business-os.de/v2/banking/connections \
--header 'x-api-key: <api-key>'import requests
url = "https://api.business-os.de/v2/banking/connections"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.business-os.de/v2/banking/connections', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.business-os.de/v2/banking/connections",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.business-os.de/v2/banking/connections"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.business-os.de/v2/banking/connections")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.business-os.de/v2/banking/connections")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "9182736450918273645",
"provider_name": "Musterbank",
"provider_code": "musterbank_oauth_client_de",
"country_code": "DE",
"status": "active",
"owner_user_id": "d90f20ae-f6c1-46da-a080-3d4c86329bf6",
"automatic_refresh": true,
"next_refresh_possible_at": "2026-03-24T14:34:54+00:00",
"created_at": "2026-03-24T13:50:58+00:00",
"updated_at": "2026-03-24T14:19:54+00:00",
"display_name": null,
"logo_url": "https://d1uuj3mi6rzwpm.cloudfront.net/logos/providers/de/spk_aschaffenburg_de.svg",
"consent_expires_at": "2026-09-20T14:19:16+00:00",
"error_class": null,
"error_message": null
}
]
}Banking AIS
List Connections
Listet alle Bank-Verbindungen der Organisation auf.
Ohne api-Parameter werden alle Verbindungen (Partner + Open Banking) zurückgegeben.
Cost: 0 Credits
GET
/
v2
/
banking
/
connections
List Connections
curl --request GET \
--url https://api.business-os.de/v2/banking/connections \
--header 'x-api-key: <api-key>'import requests
url = "https://api.business-os.de/v2/banking/connections"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.business-os.de/v2/banking/connections', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.business-os.de/v2/banking/connections",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.business-os.de/v2/banking/connections"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.business-os.de/v2/banking/connections")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.business-os.de/v2/banking/connections")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "9182736450918273645",
"provider_name": "Musterbank",
"provider_code": "musterbank_oauth_client_de",
"country_code": "DE",
"status": "active",
"owner_user_id": "d90f20ae-f6c1-46da-a080-3d4c86329bf6",
"automatic_refresh": true,
"next_refresh_possible_at": "2026-03-24T14:34:54+00:00",
"created_at": "2026-03-24T13:50:58+00:00",
"updated_at": "2026-03-24T14:19:54+00:00",
"display_name": null,
"logo_url": "https://d1uuj3mi6rzwpm.cloudfront.net/logos/providers/de/spk_aschaffenburg_de.svg",
"consent_expires_at": "2026-09-20T14:19:16+00:00",
"error_class": null,
"error_message": null
}
]
}Authorizations
Dein Business OS API Key. Erstelle einen unter app.business-os.de → API Keys.
Response
Liste der Verbindungen
Show child attributes
Show child attributes
⌘I