Official Node.js client for the FaceSeek reverse face search API. Find where a face appears across the public web. (Node 18+.)
npm install faceseekconst { FaceSeek } = require("faceseek");
const fs = new FaceSeek({ apiKey: "fsk_..." }); // or set FACESEEK_API_KEY
// Reverse face search
const matches = await fs.search("photo.jpg"); // path, Buffer, or Blob
for (const m of matches) console.log(m.source_url, m.score);
// Check your balance
console.log(await fs.account()); // { email, credits_remaining }TypeScript types are bundled.
Sign up free at faceseek.online — free daily searches included. Full API reference: /api-docs.
MIT