Find an API

Search public APIs with auth details & Postman guides

← All APIs

Api Documentation

uscann · Security

Security No Auth Free & Open security

Api Documentation

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

POST forgotPassword

forgotPassword

https://api.apis.guru/v2/specs/uscann.net/1.0/authentication/forgotPassword

Hover any highlighted part to learn what it does

Headers — extra info sent with the request
Content-Type application/json
curl -X POST "https://api.apis.guru/v2/specs/uscann.net/1.0/authentication/forgotPassword" \
  -H "Content-Type: application/json"
import requests
headers = {
    "Content-Type": "application/json"
}
response = requests.post(
    "https://api.apis.guru/v2/specs/uscann.net/1.0/authentication/forgotPassword",
    headers=headers,
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/uscann.net/1.0/authentication/forgotPassword';

const response = await fetch(url, {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
}); 
const data = await response.json();
console.log(data);
package main

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

func main() {
	targetURL := "https://api.apis.guru/v2/specs/uscann.net/1.0/authentication/forgotPassword"
	req, _ := http.NewRequest("POST", targetURL, nil)
	req.Header.Set("Content-Type", "application/json")

	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/uscann.net/1.0/authentication/forgotPassword")

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

req = Net::HTTP::Post.new(uri)
req["Content-Type"] = "application/json"

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/uscann.net/1.0/authentication/forgotPassword";
$opts = ["http" => [
    "method" => "POST",
    "header" => implode("\r\n", [
        "Content-Type: application/json"
    ]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
POST register

register

https://api.apis.guru/v2/specs/uscann.net/1.0/authentication/register

Hover any highlighted part to learn what it does

Headers — extra info sent with the request
Content-Type application/json
curl -X POST "https://api.apis.guru/v2/specs/uscann.net/1.0/authentication/register" \
  -H "Content-Type: application/json"
import requests
headers = {
    "Content-Type": "application/json"
}
response = requests.post(
    "https://api.apis.guru/v2/specs/uscann.net/1.0/authentication/register",
    headers=headers,
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/uscann.net/1.0/authentication/register';

const response = await fetch(url, {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
}); 
const data = await response.json();
console.log(data);
package main

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

func main() {
	targetURL := "https://api.apis.guru/v2/specs/uscann.net/1.0/authentication/register"
	req, _ := http.NewRequest("POST", targetURL, nil)
	req.Header.Set("Content-Type", "application/json")

	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/uscann.net/1.0/authentication/register")

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

req = Net::HTTP::Post.new(uri)
req["Content-Type"] = "application/json"

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/uscann.net/1.0/authentication/register";
$opts = ["http" => [
    "method" => "POST",
    "header" => implode("\r\n", [
        "Content-Type: application/json"
    ]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
POST validates the mail token and set new password

validates the mail token and set new password

https://api.apis.guru/v2/specs/uscann.net/1.0/authentication/setForgotPassword

Hover any highlighted part to learn what it does

Headers — extra info sent with the request
Content-Type application/json
curl -X POST "https://api.apis.guru/v2/specs/uscann.net/1.0/authentication/setForgotPassword" \
  -H "Content-Type: application/json"
import requests
headers = {
    "Content-Type": "application/json"
}
response = requests.post(
    "https://api.apis.guru/v2/specs/uscann.net/1.0/authentication/setForgotPassword",
    headers=headers,
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/uscann.net/1.0/authentication/setForgotPassword';

const response = await fetch(url, {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
}); 
const data = await response.json();
console.log(data);
package main

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

func main() {
	targetURL := "https://api.apis.guru/v2/specs/uscann.net/1.0/authentication/setForgotPassword"
	req, _ := http.NewRequest("POST", targetURL, nil)
	req.Header.Set("Content-Type", "application/json")

	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/uscann.net/1.0/authentication/setForgotPassword")

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

req = Net::HTTP::Post.new(uri)
req["Content-Type"] = "application/json"

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/uscann.net/1.0/authentication/setForgotPassword";
$opts = ["http" => [
    "method" => "POST",
    "header" => implode("\r\n", [
        "Content-Type: application/json"
    ]),
]];
$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 Api Documentation?

Api Documentation is a Security API. Developers commonly use security APIs for:

  • adding multi-factor authentication to your app
  • validating identity documents and biometrics
  • monitoring for data breaches and leaked credentials
  • running background checks and fraud screening
  • scanning code and infrastructure for vulnerabilities

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

New to APIs? Read our beginner's guide

Open documentation ↗