Hello,
What am I doing wrong here?
curl -X POST https://api.faceio.net/faceverify \
-H "Content-Type: application/json" \
-d '{
"key": "apiKey",
"src": "<base64-of-img1>",
"target": "<base64-of-img2>"
}'
{"status":404,"error":"No such API endpoint: 'faceverify'"}%
Troubleshooting FaceIO API 404 Error on faceverify Endpoint
Asked
Modified
Viewed
24649 times
✓ Accepted Solution
Hello,
- The /FACE-VERIFY API endpoint enables you to programmatically compare two faces from different images to determine if they belong to the same person. This API is well-suited for automated face verification tasks that do not involve user interaction.
- By uploading two images, each containing a single face, using your preferred programming language, the algorithm will determine if the faces match. No prior face enrollment is necessary; the verification process operates directly on the uploaded images.
- The /FACE-VERIFY API Documentation is available to consult at: https://faceio.net/rest-api#faceverify
- You will need your FACEIO application API Key from the FACEIO Console in order to perform the REST API call.
- Code samples demonstrating how to load two face images from disk, encode them in base64, and send them to the /FACE-VERIFY API endpoint for comparison are available at: