EvelabInsight
  1. Skin Analysis API for All Ethnicities
EvelabInsight
  • Skin Analysis API for All Ethnicities
    • Obtain access_token
      GET
    • Facial attribute analysis
      POST
    • Facial pose analysis
      POST
    • Skin analysis
      POST
  • EveLabinsight - Basic data API interface
    • Obtain access token
      GET
  • Skin analysis report data API pull related instructions
    GET
  1. Skin Analysis API for All Ethnicities

Obtain access_token

Developing
Overseas
https://gapi.evelabinsight.com
Overseas
https://gapi.evelabinsight.com
GET
https://gapi.evelabinsight.com
/skin_api/common/access_token
There will always be only one valid access_token value at the same time. Calling this interface multiple times will cause the previously generated access_token to become invalid.

Request

Query Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://gapi.evelabinsight.com/skin_api/common/access_token?app_id=&app_secret='
Response Response Example
{
    "meta": {
        "code": 0,
        "msg": "",
        "error": "",
        "request_uri": "/skin_api/common/access_token"
    },
    "response": {
        "access_token": "", // access_token, All authentication interfaces need to pass token
        "expire": 7200 // access_token period of validity, unit: Second
    }
}
Next
Facial attribute analysis
Built with