# Free BIN checker example for Visa, Mastercard, and Amex

**Use case:** 

Run a BIN checker on real six-digit Visa, Mastercard, and American Express prefixes and export issuer records.

## Input

```json
{
  "bins": [
    "411111",
    "555555",
    "378282"
  ],
  "includeNotFound": true
}
```

## Output

```json
{
  "input": {
    "label": "Input BIN",
    "format": "string"
  },
  "found": {
    "label": "Found",
    "format": "boolean"
  },
  "matchedBin": {
    "label": "Matched BIN",
    "format": "string"
  },
  "network": {
    "label": "Network",
    "format": "string"
  },
  "cardType": {
    "label": "Card type",
    "format": "string"
  },
  "cardCategory": {
    "label": "Category",
    "format": "string"
  },
  "prepaid": {
    "label": "Prepaid",
    "format": "boolean"
  },
  "commercial": {
    "label": "Commercial",
    "format": "boolean"
  },
  "issuer": {
    "label": "Issuer",
    "format": "object"
  },
  "country": {
    "label": "Country",
    "format": "object"
  },
  "checkedAt": {
    "label": "Checked at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [BIN Issuer Checker](https://apify.com/automation-lab/bin-issuer-checker) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/bin-issuer-checker) to learn more, explore other use cases, and run it yourself.