Kogface doesn't require proprietary SDKs. We use the standard AWS Rekognition SDK. Just swap the endpoint and start building in seconds.
Kogface is built as an edge-native alternative to AWS Rekognition. By maintaining 100% API parity, we allow developers to use the battle-tested AWS SDKs while benefiting from Kogface's lower latency and lower cost.
Kogface uses the same AccessKey/SecretKey pattern as AWS. Your keys are used only for authentication at the edge and are never stored in plain text.
npm install @aws-sdk/client-rekognitionimport { RekognitionClient, SearchFacesCommand } from "@aws-sdk/client-rekognition";
// Initialize with Kogface endpoint
const client = new RekognitionClient({
region: "us-east-1",
endpoint: "https://api.kogface.com", // 🚀 Crucial: Point to Kogface
credentials: {
accessKeyId: "YOUR_KOGFACE_KEY",
secretAccessKey: "YOUR_KOGFACE_SECRET"
}
});
const command = new SearchFacesCommand({
CollectionId: "your-collection-id",
FaceId: "face-id-to-search",
FaceMatchThreshold: 90
});
const response = await client.send(command);Stop paying for high AWS latency. Switch to Kogface today and get 10,000 free requests per month.