Ender Docs

CC Killer

Bulk validate credit cards with our high-performance tool.

Overview

CC Killer is a bulk card validation tool that checks multiple cards at once against authentication gates to identify live cards. It's designed for high-volume operations.

Credit Cost

80 credits per batch (up to 100 cards).

Endpoint

Get Tool Info

GET /v1/tools/cc-killer

Response:

{
  "success": true,
  "data": {
    "name": "CC Killer",
    "description": "Bulk card validation tool",
    "credits": 80,
    "maxCardsPerBatch": 100,
    "gates": ["braintree"]
  }
}

Process Batch

POST /v1/tools/cc-killer

Supported Gates

GatewayStatus
Braintree✅ Live

Request

Body Parameters

ParameterTypeRequiredDescription
cardsstring[]Array of cards in format number|mm|yy|cvv
gatestringGate to use (default: braintree)

Example Request

curl -X POST https://api.ender.black/v1/tools/cc-killer \
  -H "Authorization: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "cards": [
      "4111111111111111|12|25|123",
      "4222222222222222|01|26|456",
      "4333333333333333|06|27|789"
    ],
    "gate": "braintree"
  }'

Response

{
  "success": true,
  "data": {
    "results": [
      {
        "cc": "4111111111111111|12|25|123",
        "status": "live",
        "message": "Card is live"
      },
      {
        "cc": "4222222222222222|01|26|456",
        "status": "dead",
        "message": "Card is dead"
      },
      {
        "cc": "4333333333333333|06|27|789",
        "status": "error",
        "message": "Invalid card format"
      }
    ],
    "summary": {
      "total": 3,
      "live": 1,
      "dead": 1,
      "errors": 1
    },
    "creditsUsed": 80
  }
}

Response Fields

FieldTypeDescription
resultsarrayIndividual card results
results[].ccstringThe card that was processed
results[].statusstringlive, dead, or error
results[].messagestringStatus message
summaryobjectBatch summary
summary.totalnumberTotal cards processed
summary.livenumberNumber of live cards found
summary.deadnumberNumber of dead cards
summary.errorsnumberNumber of errors
creditsUsednumberCredits charged for batch

Credit Calculation

Credits are charged per batch (flat rate):

Batch SizeCredits
1-10080

Example

Cards submitted: 50
Live cards found: 12
Dead cards: 35
Errors: 3

Credits charged = 80 credits (flat rate per batch)

Limits

  • Maximum cards per batch: 100
  • Minimum cards per batch: 1
  • Cost: 80 credits per batch

Best Practices

  1. Pre-validate format - Ensure cards are in correct format before submitting
  2. Remove duplicates - Don't waste API calls on duplicate cards
  3. Check card status first - Use checkers to verify cards are live before killing

On this page