Official Python client for the FaceSeek reverse face search API. Find where a face appears across the public web.
pip install faceseekfrom faceseek import FaceSeek
fs = FaceSeek(api_key="fsk_...") # or set FACESEEK_API_KEY
# Reverse face search
for match in fs.search("photo.jpg"):
print(match["source_url"], match["score"])
# Check your balance
print(fs.account()) # {"email": ..., "credits_remaining": ...}search() accepts a file path or a binary file-like object and returns a list
of matches (source_url, score, and more).
Sign up free at faceseek.online — free daily searches included. Full API reference: /api-docs.
MIT