zkMe API

The section describes the zkMe OpenAPI, which is also known as zkMe API. It focuses on KYC (Know Your Customer) and KYT (Know Your Transaction) services.

OpenAPI Domain

Authentication

  • mch_no: Your AppID.

  • api_key: Your API Key.

You can get your mch_no and api_key from zkMe Dashboard. You can pass the mch_no and api_key through the URL query parameters or the header. For example:

curl https://openapi.zk.me?api_key=xxx&mch_no=xxx
curl -H "api_key: xxx" -H "mch_no: xxx" https://openapi.zk.me

Common Response Data Structure

{
  "code": 200,
  "message": "success",
  "data": {}
}
FieldTypeDescription

code

int

200: success, other: error

message

string

error message

data

object

response data

Rate Limits

PlanRate Limit

Standard

10 call / second / key

Last updated