Ender Docs

CC Generator

Generate valid credit card numbers from BINs using the Luhn algorithm - free tool.

Overview

Generate valid credit card numbers from BIN patterns using the Luhn algorithm. Supports customizable expiry dates, CVV, and randomization options.

Free Tool

CC Generator is completely free - no credits required! API key is needed for authentication.

Endpoints

Get Tool Info

GET /v1/tools/cc-generator

Generate Cards

POST /v1/tools/cc-generator

Request

Headers

HeaderRequiredDescription
AuthorizationYour API key
Content-Typeapplication/json

Body Parameters

ParameterTypeRequiredDefaultDescription
binsstring[]-Array of BIN patterns (max 50). Use 'x' for random digits.
quantitynumber10Cards to generate per BIN (1-100)
monthstringrandomExpiry month (01-12)
yearstringrandomExpiry year (e.g., 2025)
cvvstringrandomCVV value
randomizebooleanfalseShuffle the output cards

BIN Pattern Examples

453201      - Exact 6-digit BIN
4532xx      - BIN with 2 random digits
453201xxxx  - Extended BIN pattern
4xxx        - 4-digit prefix with random rest

Example Request

curl -X POST https://api.ender.black/v1/tools/cc-generator \
  -H "Authorization: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "bins": ["453201", "411111"],
    "quantity": 5,
    "month": "12",
    "year": "2026",
    "randomize": true
  }'

Response

{
  "success": true,
  "data": {
    "cards": [
      "4532010123456789|12|2026|123",
      "4532019876543210|12|2026|456",
      "4111111234567890|12|2026|789",
      "4111115678901234|12|2026|012",
      "4532014567890123|12|2026|345"
    ],
    "summary": {
      "binsProvided": 2,
      "quantityPerBin": 5,
      "totalGenerated": 10
    }
  }
}

Response Fields

FieldTypeDescription
cardsstring[]Generated cards in pipe format
summary.binsProvidednumberNumber of BINs input
summary.quantityPerBinnumberCards generated per BIN
summary.totalGeneratednumberTotal cards generated

Card Format

Generated cards use the pipe-delimited format:

number|month|year|cvv
4532010123456789|12|2026|123

Limits

  • Maximum BINs per request: 50
  • Maximum quantity per BIN: 100
  • Maximum total cards: 5,000 (50 BINs × 100 each)
  • Credits: Free

Luhn Algorithm

All generated card numbers pass the Luhn check digit validation, ensuring they have valid formatting for testing purposes.

Testing Only

Generated cards are for testing purposes only. They will not work for actual transactions.

On this page