Find an API

Search public APIs with auth details & Postman guides

← All APIs

Facial Recognition Reverse Image Face Search API

facecheck · Company

Company No Auth Free & Open API

Let your users search the Internet by face! Integrate FaceCheck facial search seamlessly with your app, website or software platform. FaceCheck's REST API is hassle-free and easy to use. For code examples visit https://facecheck.id/Face-Search/API

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

POST Remove an image from a search request

Remove an image from a search request

https://api.apis.guru/v2/specs/facecheck.id/v1.02/api/delete_pic?id_pic=example&id_search=example

Hover any highlighted part to learn what it does

curl -X POST "https://api.apis.guru/v2/specs/facecheck.id/v1.02/api/delete_pic?id_pic=example&id_search=example"
import requests
params = {
    "id_pic": "example",
    "id_search": "example"
}
response = requests.post(
    "https://api.apis.guru/v2/specs/facecheck.id/v1.02/api/delete_pic",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/facecheck.id/v1.02/api/delete_pic');
url.searchParams.set('id_pic', 'example');
url.searchParams.set('id_search', 'example');

const response = await fetch(url, {
  method: 'POST',
}); 
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/facecheck.id/v1.02/api/delete_pic")
	q := baseURL.Query()
	q.Set("id_pic", "example")
	q.Set("id_search", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("POST", 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/facecheck.id/v1.02/api/delete_pic")
uri.query = URI.encode_www_form({
  "id_pic" => "example",
  "id_search" => "example"
})

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

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

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/facecheck.id/v1.02/api/delete_pic?" . http_build_query([
    "id_pic" => "example",
    "id_search" => "example"
]);
$opts = ["http" => [
    "method" => "POST",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
POST Returns remaining search credits, search engine online status, and number of indexed faces

Returns remaining search credits, search engine online status, and number of indexed faces

https://api.apis.guru/v2/specs/facecheck.id/v1.02/api/info

Hover any highlighted part to learn what it does

curl -X POST "https://api.apis.guru/v2/specs/facecheck.id/v1.02/api/info"
import requests
response = requests.post(
    "https://api.apis.guru/v2/specs/facecheck.id/v1.02/api/info",
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/facecheck.id/v1.02/api/info';

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

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

func main() {
	targetURL := "https://api.apis.guru/v2/specs/facecheck.id/v1.02/api/info"
	req, _ := http.NewRequest("POST", 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/facecheck.id/v1.02/api/info")

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

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

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/facecheck.id/v1.02/api/info";
$opts = ["http" => [
    "method" => "POST",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
POST Submit a search request to the search engine and get back search results that contain URLs and all images in base64/webp format

Submit a search request to the search engine and get back search results that contain URLs and all images in base64/webp format

https://api.apis.guru/v2/specs/facecheck.id/v1.02/api/search

Hover any highlighted part to learn what it does

curl -X POST "https://api.apis.guru/v2/specs/facecheck.id/v1.02/api/search"
import requests
response = requests.post(
    "https://api.apis.guru/v2/specs/facecheck.id/v1.02/api/search",
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/facecheck.id/v1.02/api/search';

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

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

func main() {
	targetURL := "https://api.apis.guru/v2/specs/facecheck.id/v1.02/api/search"
	req, _ := http.NewRequest("POST", 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/facecheck.id/v1.02/api/search")

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

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

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/facecheck.id/v1.02/api/search";
$opts = ["http" => [
    "method" => "POST",
]];
$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 Facial Recognition Reverse Image Face Search API?

Facial Recognition Reverse Image Face Search API is a Company API. Developers commonly use company APIs for:

  • enriching CRM records with company firmographics
  • building lead-generation and prospecting tools
  • verifying business identity and registration details
  • monitoring competitors and market intelligence
  • powering B2B data enrichment pipelines

No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Facial Recognition Reverse Image Face Search 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 ↗