FACE ID
Privacy-First Face Recognition API
About
Face ID is a powerful face recognition and identification API designed for easy integration into your applications. It allows you to register and tag faces in a database and later match new face images against the registered data to identify and return the associated tag. The API is optimized for high-accuracy face embeddings, making it ideal for authentication, user verification, and face-based tagging systems.
Key Features
- ✅Face Registration - Register face images and store them with a custom tag or label.
- ✅Face Matching - Upload a new face image to identify and get the corresponding tag from previously registered faces.
- ✅High Accuracy - Powered by state-of-the-art face embedding models for reliable recognition.
- ✅Easy Integration - REST-based endpoints with simple JSON responses.
- ✅Privacy-Focused - No original images are stored, only minimal face embeddings and tags are kept for matching.
- ✅GDPR-Friendly - Designed with data minimization principles; embeddings can be fully deleted with API.
- ✅Scalable Database - Default plan supports up to 10,000 registered faces. For larger requirements, please contact kora@mitos.dev.
Quick Example
Register a Face
curl --request POST \
--url https://face-id.p.rapidapi.com/frid \
--header 'Content-Type: application/json' \
--header 'x-rapidapi-host: face-id.p.rapidapi.com' \
--header 'x-rapidapi-key: YOUR_RAPIDAPI_KEY' \
--data '{
"command": "register",
"url": "https://mitos.dev/rsrc/bale1.jpg",
"tag": "christian bale"
}'
Infer (Match) a Face
curl --request POST \
--url https://face-id.p.rapidapi.com/frid \
--header 'Content-Type: application/json' \
--header 'x-rapidapi-host: face-id.p.rapidapi.com' \
--header 'x-rapidapi-key: YOUR_RAPIDAPI_KEY' \
--data '{
"command": "infer",
"url": "https://mitos.dev/rsrc/bale2.jpg"
}'
Contact
Need more than 10,000 registered faces?
Contact us at agus@mitos.dev
Example