Find an API

Search public APIs with auth details & Postman guides

← All APIs

Confirmation of Funds API Specification

openbanking · Government

Government No Auth Free & Open financial

Swagger for Confirmation of Funds API Specification

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET Get Funds Confirmation Consent

Get Funds Confirmation Consent

https://api.apis.guru/v2/specs/openbanking.org.uk/confirmation-funds-openapi/3.1.7/funds-confirmation-consents/{ConsentId}

Hover any highlighted part to learn what it does

Headers — extra info sent with the request
Authorization example
curl -X GET "https://api.apis.guru/v2/specs/openbanking.org.uk/confirmation-funds-openapi/3.1.7/funds-confirmation-consents/{ConsentId}" \
  -H "Authorization: example"
import requests
headers = {
    "Authorization": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/openbanking.org.uk/confirmation-funds-openapi/3.1.7/funds-confirmation-consents/{ConsentId}",
    headers=headers,
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/openbanking.org.uk/confirmation-funds-openapi/3.1.7/funds-confirmation-consents/{ConsentId}';

const response = await fetch(url, {
  headers: {
    'Authorization': 'example'
  },
}); 
const data = await response.json();
console.log(data);
package main

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

func main() {
	targetURL := "https://api.apis.guru/v2/specs/openbanking.org.uk/confirmation-funds-openapi/3.1.7/funds-confirmation-consents/{ConsentId}"
	req, _ := http.NewRequest("GET", targetURL, nil)
	req.Header.Set("Authorization", "example")

	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/openbanking.org.uk/confirmation-funds-openapi/3.1.7/funds-confirmation-consents/{ConsentId}")

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

req = Net::HTTP::Get.new(uri)
req["Authorization"] = "example"

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/openbanking.org.uk/confirmation-funds-openapi/3.1.7/funds-confirmation-consents/{ConsentId}";
$opts = ["http" => [
    "method" => "GET",
    "header" => implode("\r\n", [
        "Authorization: example"
    ]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
POST Create Funds Confirmation Consent

Create Funds Confirmation Consent

https://api.apis.guru/v2/specs/openbanking.org.uk/confirmation-funds-openapi/3.1.7/funds-confirmation-consents

Hover any highlighted part to learn what it does

Headers — extra info sent with the request
Authorization example
curl -X POST "https://api.apis.guru/v2/specs/openbanking.org.uk/confirmation-funds-openapi/3.1.7/funds-confirmation-consents" \
  -H "Authorization: example"
import requests
headers = {
    "Authorization": "example"
}
response = requests.post(
    "https://api.apis.guru/v2/specs/openbanking.org.uk/confirmation-funds-openapi/3.1.7/funds-confirmation-consents",
    headers=headers,
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/openbanking.org.uk/confirmation-funds-openapi/3.1.7/funds-confirmation-consents';

const response = await fetch(url, {
  method: 'POST',
  headers: {
    'Authorization': 'example'
  },
}); 
const data = await response.json();
console.log(data);
package main

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

func main() {
	targetURL := "https://api.apis.guru/v2/specs/openbanking.org.uk/confirmation-funds-openapi/3.1.7/funds-confirmation-consents"
	req, _ := http.NewRequest("POST", targetURL, nil)
	req.Header.Set("Authorization", "example")

	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/openbanking.org.uk/confirmation-funds-openapi/3.1.7/funds-confirmation-consents")

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

req = Net::HTTP::Post.new(uri)
req["Authorization"] = "example"

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/openbanking.org.uk/confirmation-funds-openapi/3.1.7/funds-confirmation-consents";
$opts = ["http" => [
    "method" => "POST",
    "header" => implode("\r\n", [
        "Authorization: example"
    ]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
POST Create Funds Confirmation

Create Funds Confirmation

https://api.apis.guru/v2/specs/openbanking.org.uk/confirmation-funds-openapi/3.1.7/funds-confirmations

Hover any highlighted part to learn what it does

Headers — extra info sent with the request
Authorization example
curl -X POST "https://api.apis.guru/v2/specs/openbanking.org.uk/confirmation-funds-openapi/3.1.7/funds-confirmations" \
  -H "Authorization: example"
import requests
headers = {
    "Authorization": "example"
}
response = requests.post(
    "https://api.apis.guru/v2/specs/openbanking.org.uk/confirmation-funds-openapi/3.1.7/funds-confirmations",
    headers=headers,
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/openbanking.org.uk/confirmation-funds-openapi/3.1.7/funds-confirmations';

const response = await fetch(url, {
  method: 'POST',
  headers: {
    'Authorization': 'example'
  },
}); 
const data = await response.json();
console.log(data);
package main

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

func main() {
	targetURL := "https://api.apis.guru/v2/specs/openbanking.org.uk/confirmation-funds-openapi/3.1.7/funds-confirmations"
	req, _ := http.NewRequest("POST", targetURL, nil)
	req.Header.Set("Authorization", "example")

	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/openbanking.org.uk/confirmation-funds-openapi/3.1.7/funds-confirmations")

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

req = Net::HTTP::Post.new(uri)
req["Authorization"] = "example"

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/openbanking.org.uk/confirmation-funds-openapi/3.1.7/funds-confirmations";
$opts = ["http" => [
    "method" => "POST",
    "header" => implode("\r\n", [
        "Authorization: example"
    ]),
]];
$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 Confirmation of Funds API Specification?

Confirmation of Funds API Specification is a Government API. Developers commonly use government APIs for:

  • surfacing public datasets in citizen-facing apps
  • building transparency and civic engagement tools
  • accessing legislation, court records, and official data
  • powering research and journalism tools
  • creating compliance and regulatory monitoring dashboards

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

New to APIs? Read our beginner's guide

Open documentation ↗