> ## Documentation Index
> Fetch the complete documentation index at: https://developers.orchestrasolutions.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Card Tools

> Identify card brands, retrieve card metadata, validate card numbers, and assess transaction risk.

The Card Tools are a set of utility endpoints that let you work with card BIN/IIN data. The BIN (Bank Identification Number), also known as IIN (Issuer Identification Number), is the first 6 to 11 digits of a card number. These digits identify the card's brand, issuing bank, country of origin, and card type.

All Card Tools endpoints are authenticated with your API key. Both the input (the first 6–11 digits of the card number) and the output are considered non-sensitive data. The BIN/IIN alone cannot identify a cardholder or be used to initiate a transaction, so calling these endpoints does not put you in PCI scope.

## Available Tools

<CardGroup cols={2}>
  <Card title="Brand Lookup" icon="credit-card" href="/guides/rest-api/utilities/card-tools/brand-lookup">
    Identify the card brand (Visa, Mastercard, etc.) and get a logo URL to display in your UI.
  </Card>

  <Card title="Metadata Lookup" icon="magnifying-glass" href="/guides/rest-api/utilities/card-tools/metadata-lookup">
    Get the full card metadata: brand, type (credit/debit), category, issuing bank, and country of issue.
  </Card>

  <Card title="Luhn Validation" icon="check" href="/guides/rest-api/utilities/card-tools/luhn-validation">
    Validate a full card number using the Luhn algorithm, with optional metadata in the response.
  </Card>

  <Card title="Card Validation" icon="shield-check" href="/guides/rest-api/utilities/card-tools/card-validation">
    Assess transaction risk by comparing card origin against the payer's IP address and billing country.
  </Card>
</CardGroup>

## Authentication

All Card Tools endpoints require an API key passed in the `X-Api-Key` header. See [Generate API Key](/getting-started/generate-api-key) to get started.
