Ender Docs

Credits System

Understand Ender's transparent credit-based pricing system.

Overview

Ender uses a simple, transparent credit-based pricing system. You only pay for what you use, and credits are consumed only when API calls succeed.

Exchange Rate: $1 USD = 300 Credits

Credit Priority

When you make API calls, credits are consumed in this order:

  1. Plan Credits (from your subscription) are used first
  2. Balance Credits (from top-ups) are used when plan credits run out

Subscription Plans

FeatureFreeLiteBasicPremiumBlack
Launch Price (50% off)$0$3$10$20$30
Regular Price$0$6$20$40$60
Credits1002,0007,00015,00024,000
PeriodUnlimited3 Days10 Days20 Days30 Days
Premium Gates
Webshare Generations2/month20/month50/month200/month300/month
User Proxies2510UnlimitedUnlimited
Private Shopify Gates

Credit Costs by Module

Card Checkers

Credits are charged based on the check result:

ModuleApproved / ChargedLiveDeadError
Shopify5310
Charge5310
Auth5310
VBV Check2 (flat)220

System Proxy Cost

When you don't provide your own proxy, we use a system proxy which costs +1 additional credit for approved and live results only. Dead cards are not charged the extra credit.

Captcha Solvers

SolverCredits per Solve
reCaptcha v21
reCaptcha v31
Cloudflare Turnstile1

Tools

ToolCredits
Webshare Proxy Generator3 (+1 if using system proxy)
API Key CheckerFree
CC Killer80 per batch
Proxy CheckerFree
BIN LookupFree
CC GeneratorFree
CC CleanerFree
Address GeneratorFree

Credit Calculation Examples

Example 1: Auth Check with System Proxy

Check: Auth (Stripe)
Result: Live
Proxy: System (not provided)

Cost = 3 (live) + 1 (system proxy) = 4 credits

Example 2: Shopify Check with User Proxy

Check: Shopify
Result: Charged
Proxy: User provided

Cost = 5 (charged) = 5 credits

Example 3: Dead Card Check

Check: Charge
Result: Dead
Proxy: System (not provided)

Cost = 1 credit (dead cards don't incur system proxy cost)

Example 4: CC Killer

Tool: CC Killer
Cards: Up to 100 per batch

Cost = 80 credits per batch (flat rate)

Topping Up Credits

Payment Methods

We accept cryptocurrency payments through OxaPay:

  • Bitcoin (BTC)
  • Ethereum (ETH)
  • USDT (TRC20/ERC20)
  • Litecoin (LTC)
  • And many more...

How to Top Up

  1. Go to Billing in your dashboard
  2. Enter the amount you want to purchase ($1 - $10,000)
  3. Click Purchase Credits
  4. Complete the payment on the OxaPay page
  5. Credits are added automatically upon confirmation
curl -X POST https://api.ender.black/v1/payments/create \
  -H "Authorization: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"amount": 10}'

Response:

{
  "success": true,
  "data": {
    "trackId": "oxapay-track-id",
    "paymentUrl": "https://pay.oxapay.com/...",
    "amount": 10,
    "credits": 3000,
    "expiresAt": "2026-01-01T01:00:00.000Z"
  }
}

Checking Your Balance

Via API

curl -X POST https://api.ender.black/v1/me \
  -H "Authorization: YOUR_API_KEY" \
  -H "Content-Type: application/json"

Response:

{
  "success": true,
  "data": {
    "name": "John Doe",
    "credits": {
      "planCredits": 1000,
      "balanceCredits": 500,
      "totalCredits": 1500
    },
    "plan": "PREMIUM"
  }
}

Via Dashboard

Your current credit balance is always visible in the dashboard header.


Cost Optimization Tips

1. Use Your Own Proxies

Providing your own proxy saves 1 credit per approved/live check:

{
  "gate": "stripe",
  "cc": "4111111111111111|12|25|123",
  "proxy": "http://user:pass@ip:port"
}

2. Pre-validate Data

Clean and validate your card data before submitting to reduce dead card checks.

3. Handle Errors Properly

Errors don't cost credits, so implement proper error handling and retry logic.


Gifting Credits

You can gift credits to other users using coupons:

curl -X POST https://api.ender.black/v1/coupons/create \
  -H "Authorization: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "credits": 1000,
    "message": "Enjoy!",
    "expirationDays": 30
  }'

Credits for coupons are deducted from your balance credits (not plan credits).


FAQ

Do errors cost credits?

No! If an API call results in an error (network issues, invalid request, etc.), no credits are charged.

Can I transfer credits between accounts?

Yes, you can create credit coupons to gift credits to other users.

Do unused plan credits roll over?

No, plan credits expire at the end of your billing period. Balance credits (from top-ups) never expire.

What happens when I run out of credits?

API calls will return an error indicating insufficient credits. Top up your balance to continue.


Next Steps