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/v1/onboarding-protect/mccs

{
  "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

{
    "success": true,
    "message": "MCC Lists are",
    "data": {
        "items": [
            {
                "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"
            }
        ]
    }
}

Last updated