Ender Docs

Getting Started

Get up and running with Ender API in just a few minutes.

Quick Setup

Get started with Ender in four simple steps:

Create an Account

Sign up at ender.black to create your free account. You'll receive 100 free credits to get started immediately.

Get Your API Key

Your API key is automatically generated when you sign up. Find it in your dashboard under Account Settings.

Make Your First Request

Test your setup by fetching your account info:

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

Explore the Modules

You're ready to use Ender's powerful modules:

  • Checkers — Validate credit cards
  • Solvers — Solve captchas
  • Tools — Utility tools for your workflow

Understanding the API

Base URL

All API endpoints use the following base URL:

https://api.ender.black/v1

Response Format

All responses follow a consistent format:

Success Response:

{
  "success": true,
  "data": {
    // Response data specific to each endpoint
  }
}

Error Response:

{
  "success": false,
  "data": {
    "error": "Error message describing what went wrong"
  }
}

Best Practices

For best results, follow these recommendations:

  1. Check your credits before running batch operations
  2. Use your own proxies when possible to reduce costs
  3. Handle errors gracefully — errors don't cost credits
  4. Monitor your usage through the dashboard

Rate Limits

Rate limits are based on your subscription plan:

PlanRequests/Minute
Free50
Lite100
Basic150
Premium300
Black300

Exceeding rate limits returns a 429 Too Many Requests response. Implement exponential backoff in your applications.


Next Steps

Now that you're set up, explore our modules:

On this page