1. EveLab Insight - CRM API
EvelabInsight
  • Signature Generation
  • EveLab Insight - Skin Analysis API for All Ethnicities
    • Obtain access_token
      GET
    • Facial attribute analysis
      POST
    • Facial pose analysis
      POST
    • Skin analysis
      POST
  • EveLab Insight - Basic Data API
    • Basic Data API (Universal Edition) v1.6
  • EveLab Insight - Report API
    • Push Data API
      POST
    • Pull Data API
      GET
  • EveLab Insight - CRM API
    • Search customers
      GET
  1. EveLab Insight - CRM API

Search customers

Overseas
https://gapi.evelabinsight.com
Overseas
https://gapi.evelabinsight.com
GET
https://gapi.evelabinsight.com
/your-crm-endpoint
EvelabInsight calls this endpoint on your server to search for customers matching the given keyword. Replace the path with your actual configured URL.
Return matching customer records as JSON. If no matches are found, return { "total": 0, "lists": [] }.

Request

Query Params

Responses

🟢200
application/json
Return matching customer records. Must respond within 5 seconds.
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://gapi.evelabinsight.com/your-crm-endpoint?keyword=&store_number=&page=&count=&sig=&sig_time='
Response Response Example
Customers found
{
    "total": 2,
    "lists": [
        {
            "custom_id": "abcd0001",
            "name": "Jane Doe",
            "gender": 2,
            "birthday": "1990-05-15",
            "phone_cc": 1,
            "phone_number": "5551234567",
            "email": "jane@example.com",
            "marital_status": 1,
            "has_baby": 0,
            "has_beauty": 0,
            "is_irritability": 0
        },
        {
            "custom_id": "abcd0002",
            "name": "Jane Smith",
            "gender": 2,
            "phone_cc": 1,
            "phone_number": "5559876543"
        }
    ]
}
Previous
Pull Data API
Built with