CLEARCHECK API Reference
  • ClearCheck API Reference
  • Disclaimer for ClearCheck Search Portal and Services
  • Introduction
  • Authenticate
  • Requests Endpoints
  • API lookup types
  • LookupId-List API Endpoint
  • BreachScan
    • Headers and Body Request by deepweb values
    • GET Get lookup data for a request by deepweb values
    • Search Response Schema
  • Phone Lookup API
    • Headers and Body Request by Phone
    • GET Get lookup data for a request by Phone
    • Search Response Schema
  • Phone Validation Request
    • Headers and Body
    • Request Response Data
    • Search Response Schema
  • Phone Vs Name Validator
    • Headers and Body
    • Request Response Data
    • Search Response Schema
  • E-mail Lookup API
    • Headers and Body Request by E-mail Lookup
    • GET Get lookup data for a request by E-mail Lookup
    • Search Response Schema
  • Name Lookup API
    • Headers and Body Request by Name Lookup
    • GET Get lookup data for a request by Name Lookup
    • Search Response Schema
  • Leads Search API
    • Headers and Body Request by Topick
    • GET Get lookup data for a request by Post
    • Search Response Schema
  • Facial Recognition API
    • Headers and Body Request by Face image Lookup
    • GET Get lookup data for a request by Face image Lookup
    • Search Response Schema
  • Sentiment Analysis API
    • Headers and Body Request by Text body
    • GET Get lookup data for a request by Text body
    • Search Response Schema
  • Delete Record API
    • Headers and Body Request for Delete Record
  • Retrieve the API Results for all requests.
    • GET Multiple Results
    • Search Response Schema
  • KYC Search API
    • Headers and Body Request by KYC
    • Request KYC Results
    • Search Response Schema
  • Web Scrapy API
    • Headers and Body Request by Web Collection
    • Request Response Data
    • Search Response Schema
  • IP Geolocation API
    • Headers and Body by IP Ad
    • Request Response Data
    • Search Response Schema
  • Ip Phone Verification
    • Headers and Body
    • Request Response Data
    • Search Response Schema
  • Psycho Profile and Summary by Facebook ID
    • Headers and Body
    • Request Response Data
    • Search Response Schema
  • Psycho Profile and Summary by Text & Name
    • Headers and Body
    • Request Response Data
    • Search Response Schema
  • COMPLIANCE SCREENING
    • SSN Trace (US only)
  • National Criminal Screening (US only)
  • Watchlists and Politically Exposed Persons (International)
Powered by GitBook
On this page
  1. Facial Recognition API

Search Response Schema

Search Response Schema for Face Image Search

for the sake of future updates, both of the face related searches are included here.

{
   "$schema": "http://json-schema.org/schema#",
   "type": "object",
   "properties": {
      "criteria": {
         "type": "string",
         "pattern": "^data:image/jpeg;base64,.*$"
      },
      "type": {
         "type": "string"
      },
      "status": {
         "type": "string",
         "enum": ["progress", "finished"]
      },
      "sources": {
         "type": "array",
         "items": {
            "type": "object",
            "properties": {
               "name": {
                  "type": "string",
                  "enum": ["irbis_eye", "face_search"]
               }
            },
            "required": [
               "name"
            ]
         }
      },
      "data": {
         "type": "array",
         "items": {
            "type": "object",
            "properties": {
               "search4faces": {
                  "type": "array",
                  "items": {
                     "type": "object",
                     "properties": {
                        "score": {
                           "type": "string"
                        },
                        "user_id": {
                           "type": "string"
                        },
                        "face": {
                           "type": "string"
                        },
                        "face_db": {
                           "type": "string"
                        },
                        "profile": {
                           "type": "string"
                        },
                        "photo": {
                           "type": "string"
                        },
                        "photo_id": {
                           "type": [
                              "integer",
                              "string"
                           ]
                        },
                        "photo_x": {
                           "type": "integer"
                        },
                        "photo_y": {
                           "type": "integer"
                        },
                        "photo_width": {
                           "type": "integer"
                        },
                        "photo_height": {
                           "type": "integer"
                        },
                        "source": {
                           "type": "string"
                        },
                        "age": {
                           "type": "integer"
                        },
                        "first_name": {
                           "type": "string"
                        },
                        "last_name": {
                           "type": "string"
                        },
                        "maiden_name": {
                           "type": "string"
                        },
                        "city": {
                           "type": "string"
                        },
                        "country": {
                           "type": "string"
                        },
                        "born": {
                           "type": "string"
                        },
                        "bio": {
                           "type": "string"
                        },
                        "filtered": {
                           "type": "integer"
                        }
                     },
                     "required": [
                        "age",
                        "bio",
                        "born",
                        "city",
                        "country",
                        "face",
                        "face_db",
                        "filtered",
                        "first_name",
                        "last_name",
                        "maiden_name",
                        "photo",
                        "photo_height",
                        "photo_id",
                        "photo_width",
                        "photo_x",
                        "photo_y",
                        "profile",
                        "score",
                        "source",
                        "user_id"
                     ]
                  }
               },
               "findclone": {
                  "type": "array",
                  "items": {
                     "type": "object",
                     "properties": {
                        "details": {
                           "type": "array",
                           "items": {
                              "type": "object",
                              "properties": {
                                 "photoid": {
                                    "type": "integer"
                                 },
                                 "size": {
                                    "type": "integer"
                                 },
                                 "url": {
                                    "type": "string"
                                 },
                                 "userid": {
                                    "type": "integer"
                                 },
                                 "x": {
                                    "type": "integer"
                                 },
                                 "y": {
                                    "type": "integer"
                                 }
                              },
                              "required": [
                                 "photoid",
                                 "size",
                                 "url",
                                 "userid",
                                 "x",
                                 "y"
                              ]
                           }
                        },
                        "firstname": {
                           "type": "string"
                        },
                        "item_id": {
                           "type": "integer"
                        },
                        "score": {
                           "type": "number"
                        },
                        "thumbnail": {
                           "type": "string"
                        },
                        "userid": {
                           "type": "integer"
                        },
                        "age": {
                           "type": "integer"
                        },
                        "city": {
                           "type": "string"
                        }
                     },
                     "required": [
                        "details",
                        "firstname",
                        "item_id",
                        "score",
                        "thumbnail",
                        "userid"
                     ]
                  }
               }
            }
         }
      }
   },
   "required": [
      "criteria",
      "data",
      "sources",
      "status",
      "type"
   ]
}
PreviousGET Get lookup data for a request by Face image LookupNextSentiment Analysis API

Last updated 3 months ago