Find an API

Search public APIs with auth details & Postman guides

← All APIs

Frankie Financial API

frankiefinancial · Finance

Finance No Auth Free & Open financial

------ This API allows developers to integrate the Frankie Financial Compliance Utility into their applications. The API allows: - Checking name, address, date of birth against national databases - Validating Australian driver's licences, passports, medicare, visas and other Australian national ID documents - Validating Australian electricity bills - Validating NZ driver's licences - Validating Chinese bank cards and national ID card - Validating International passports and nationa

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET Service Status

Simple check to see if the service is running smoothly.

https://api.apis.guru/v2/specs/frankiefinancial.io/1.5.3/ruok?askingNicely=true

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/frankiefinancial.io/1.5.3/ruok?askingNicely=true"
import requests
params = {
    "askingNicely": "true"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/frankiefinancial.io/1.5.3/ruok",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/frankiefinancial.io/1.5.3/ruok');
url.searchParams.set('askingNicely', 'true');

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/frankiefinancial.io/1.5.3/ruok")
	q := baseURL.Query()
	q.Set("askingNicely", "true")
	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/frankiefinancial.io/1.5.3/ruok")
uri.query = URI.encode_www_form({
  "askingNicely" => "true"
})

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/frankiefinancial.io/1.5.3/ruok?" . http_build_query([
    "askingNicely" => "true"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Retrieve Document Details

Query the current status and details of a given documentId.

https://api.apis.guru/v2/specs/frankiefinancial.io/1.5.3/document/{documentId}

Hover any highlighted part to learn what it does

Headers — extra info sent with the request
X-Frankie-CustomerID example
curl -X GET "https://api.apis.guru/v2/specs/frankiefinancial.io/1.5.3/document/{documentId}" \
  -H "X-Frankie-CustomerID: example"
import requests
headers = {
    "X-Frankie-CustomerID": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/frankiefinancial.io/1.5.3/document/{documentId}",
    headers=headers,
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/frankiefinancial.io/1.5.3/document/{documentId}';

const response = await fetch(url, {
  headers: {
    'X-Frankie-CustomerID': '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/frankiefinancial.io/1.5.3/document/{documentId}"
	req, _ := http.NewRequest("GET", targetURL, nil)
	req.Header.Set("X-Frankie-CustomerID", "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/frankiefinancial.io/1.5.3/document/{documentId}")

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

req = Net::HTTP::Get.new(uri)
req["X-Frankie-CustomerID"] = "example"

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/frankiefinancial.io/1.5.3/document/{documentId}";
$opts = ["http" => [
    "method" => "GET",
    "header" => implode("\r\n", [
        "X-Frankie-CustomerID: example"
    ]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Retrieve Entity Details

Query the current status and details of a given entityId.

https://api.apis.guru/v2/specs/frankiefinancial.io/1.5.3/entity/{entityId}

Hover any highlighted part to learn what it does

Headers — extra info sent with the request
X-Frankie-CustomerID example
curl -X GET "https://api.apis.guru/v2/specs/frankiefinancial.io/1.5.3/entity/{entityId}" \
  -H "X-Frankie-CustomerID: example"
import requests
headers = {
    "X-Frankie-CustomerID": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/frankiefinancial.io/1.5.3/entity/{entityId}",
    headers=headers,
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/frankiefinancial.io/1.5.3/entity/{entityId}';

const response = await fetch(url, {
  headers: {
    'X-Frankie-CustomerID': '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/frankiefinancial.io/1.5.3/entity/{entityId}"
	req, _ := http.NewRequest("GET", targetURL, nil)
	req.Header.Set("X-Frankie-CustomerID", "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/frankiefinancial.io/1.5.3/entity/{entityId}")

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

req = Net::HTTP::Get.new(uri)
req["X-Frankie-CustomerID"] = "example"

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/frankiefinancial.io/1.5.3/entity/{entityId}";
$opts = ["http" => [
    "method" => "GET",
    "header" => implode("\r\n", [
        "X-Frankie-CustomerID: 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 Frankie Financial API?

Frankie Financial API is a Finance API. Developers commonly use finance APIs for:

  • processing payments and handling transactions
  • building subscription and billing systems
  • automating invoicing and financial reporting
  • fraud detection and risk scoring
  • connecting to banking and accounting software

No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Frankie Financial API 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 ↗