API Docs

v1.1.0

List Face

Paginated list of faces found and not found.

GET /api/face/search
Query Parameters: current_page=1 / reference_id=

200 Response

{
    "param": {
        "total_search": 2
    },
    "data": [
        {
            "status": "Found",
            "type": "searchByImage",
            "confidence": "99.99186706543",
            "ip_address": "45.226.24.233",
            "user_agent": "PostmanRuntime/7.54.0",
            "gmt_created_at": "2025-05-11 00:41:06",
            "reference_id": "TQtnngDLAF99d8xQ",
            "external_id": "yourID",
            "name": "John Doe",
            "email": null,
            "phone": null,
            "document": null,
            "company": null,
            "company_document": null,
            "country": null,
            "city": null,
            "address": null
        },
        {
            "status": "Not Found",
            "type": "searchByImage",
            "confidence": "",
            "ip_address": "45.226.24.233",
            "user_agent": "PostmanRuntime/7.54.0",
            "gmt_created_at": "2025-05-11 00:43:12",
            "reference_id": null,
            "external_id": null,
            "name": null,
            "email": null,
            "phone": null,
            "document": null,
            "company": null,
            "company_document": null,
            "country": null,
            "city": null,
            "address": null
        }
    ]
}