For the complete documentation index, see llms.txt. This page is also available as Markdown.

MCC Lists

The MCC (Merchant Category Code) list is a standardised system used to classify merchants by their primary business activities or services.This information is critical in assessing the risk of potential fraud, money laundering, and other illegal activities that may be associated with that business.

Get MCC lists

GET https://secctrl.tutelar.io/api/v2/onboarding-protect/mccs

Name
Value

Content-Type

application/json

Authorization

Bearer eyJhbGciOiJ.....

{
  "success": true,
  "message": "MCC data",
  "data": {
    "lists": [
      {
            "code": "0011",
            "description": "COMMERCE BANK ODP",
            "id": "2zYroPJ700",
            "risk_type": "high"
        },
        {
            "code": "0701",
            "description": "POSTAGE TRANSACTION CHARGE",
            "id": "2zYroPJ701",
            "risk_type": "low"
        },
        {
            "code": "0742",
            "description": "VETERINARY SERVICES",
            "id": "2zYroPJ714",
            "risk_type": "medium"
        }
    ]
  }
}

Success Response

Last updated