Tutelar API Stack
  • Introduction
  • Fraud Detection Monitoring
    • Create Transaction
    • Notify Transaction
    • Chargeback Transaction
    • Refund Transaction
  • MERCHANT ONBOARDING
    • Client Types
    • Entity Types
    • MCC Lists
    • Reseller Lists
    • Onboarding
    • Onboarding - KYC
    • Onboarding - Web Crawling
    • Onboarding - AML
    • Onboarding - NDI
  • KYC Verification
    • Document Verification
      • 🇮🇳India
        • Aadhaar Card
        • Pan Card
        • Driving License
        • GST Number
        • Passport
        • Shop License
        • FSSAI
        • MCA
        • Voter Id
        • Pan Gst Link
        • ROC IEC
        • DIN
        • Udyam Aadhaar
        • Pan Card Comprehensive
        • Name Compare
        • GST Advanced
        • Aadhar with Otp
        • Phone Name Attributes
        • Pan Card Lite
    • Document Extraction
      • 🇮🇳India
        • Aadhaar Card
        • Pan Card
        • Driving License
        • Voter Id
        • GST Certificate
        • Passport
    • Assets Verification
      • 🇮🇳India
        • Bank Account
        • Bank Verfication Pennyless
        • Bank Account Details Using VPA
        • Mobile to UPI Advance
        • Mobile to UPI Basic
        • Mobile To UAN
        • E-Challan Details
        • Vehicle RC Lite
        • Vehicle RC
        • UAN Advance
    • Face and Document Verification
      • Onsite Verification
      • Face Match
      • Selfie Validation
  • DATA REPOSITORY
    • Search API
  • Business Profile
    • Lookups
      • Email
      • Phone
      • BIN
      • IP
    • Credibility Check
    • Corporate Check
      • Comprehensive Details
    • AML And PEP
    • Court And FIR
    • Cybersafe
  • AML SEARCH
    • Search
    • Search Details
    • Search Details PDF
    • Decision Making
    • Decision Details
  • WEB CRAWLING
    • Initiate Crawl API
    • Status Check API
    • Result API
    • List API
  • Disputes
    • Create Dispute
    • Update Dispute
    • Dispute Details
    • Dispute Level Change
    • Dispute Won
    • Dispute Loss
    • Dispute Reopen
  • MOBILE SDK INTEGRATIONS
    • Android SDK
    • Flutter SDK
    • iOS SDK
  • CLIENT SIDE INTEGRATIONS
    • Javascript Integration
    • Tutelar Error Code
Powered by GitBook
On this page
  1. MERCHANT ONBOARDING

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"
        }
    ]
  }
}
{
    "message": "Invalid authentication credentials"
}

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"
            }
        ]
    }
}
PreviousEntity TypesNextReseller Lists

Last updated 1 year ago