# 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`

**Responses**

`200: OK`

```json
{
  "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"
      }
    ]
  }
}
```

`401: Unauthorized`

```json
{
  "message": "Invalid authentication credentials"
}
```

### Success Response

```json
{
  "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"
      }
    ]
  }
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.v2.tutelar.io/merchant-onboarding/mcc-lists.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
