AWS SDK COMPATIBLE

Universal SDK Compatibility.

Kogface doesn't require proprietary SDKs. We use the standard AWS Rekognition SDK. Just swap the endpoint and start building in seconds.

How it works

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.

No custom libraries needed
Works with standard AWS IAM patterns
Full support for D1 & Vectorize
Zero-config infrastructure
Security First

Credentials Security

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.

Installation
npm install @aws-sdk/client-rekognition
rekognition_example.js
import { 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);

Ready to scale at the edge?

Stop paying for high AWS latency. Switch to Kogface today and get 10,000 free requests per month.