Getting Started
Welcome to the fastest biometric infrastructure on the planet. This guide will walk you through your first integration in less than 5 minutes.
01Create an Account & API Key
Sign up at Kogface and head to the 'API Keys' section to generate your first live key. Keep this secret!
02Choose your SDK
We support AWS SDKs out-of-the-box. Just swap the endpoint to our edge URL.
03Run your first search
Upload a face image to a collection and run a 'SearchFacesByImage' command.
5-Minute Code Example
Node.js / AWS SDK
const { Rekognition } = require("@aws-sdk/client-rekognition");
const client = new Rekognition({
region: "global",
endpoint: "https://api.kogface.com", // 🚀 The Magic
credentials: { accessKeyId: "YOUR_KEY", secretAccessKey: "..." }
});
// Search faces instantly
const results = await client.searchFacesByImage({
CollectionId: "production-users",
Image: { Bytes: buffer }
});
console.log("Verified:", results.FaceMatches[0].Face.ExternalImageId);