Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FaceSeek — Node.js SDK

Official Node.js client for the FaceSeek reverse face search API. Find where a face appears across the public web. (Node 18+.)

npm install faceseek

Usage

const { 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.

Get an API key

Sign up free at faceseek.online — free daily searches included. Full API reference: /api-docs.

License

MIT

Releases

Packages

Contributors

Languages