Ender Docs

API Key Checkers

Validate payment gateway API credentials for Stripe, Braintree, RazorPay, and more.

Overview

Verify if payment gateway API keys are valid and functional. This tool is completely free - no credits required.

Free Tool

API Key Checkers don't cost any credits!

Supported Gateways

GatewayStatusEndpoint
Stripe✅ Live/v1/tools/api-keys/stripe
RazorPay✅ Live/v1/tools/api-keys/razorpay
Braintree✅ Live/v1/tools/api-keys/braintree

List Available Checkers

GET /v1/tools/api-keys

Stripe API Key

Endpoint

POST /v1/tools/api-keys/stripe

Request

{
  "api_key": "sk_live_..."
}

Example

curl -X POST https://api.ender.black/v1/tools/api-keys/stripe \
  -H "Authorization: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "api_key": "sk_live_..."
  }'

RazorPay Credentials

Endpoint

POST /v1/tools/api-keys/razorpay

Request

{
  "api_key": "rzp_live_...",
  "secret_key": "..."
}

Braintree Credentials

Braintree API Key Checker is supported via the same request format below.

Endpoint

POST /v1/tools/api-keys/braintree

Request

{
  "public_key": "...",
  "private_key": "...",
  "merchant_id": "..."
}

Response

Valid Key

{
  "success": true,
  "data": {
    "valid": true,
    "message": "API key is valid"
  }
}

Invalid Key

{
  "success": true,
  "data": {
    "valid": false,
    "message": "API key is invalid or expired"
  }
}

Use Cases

  1. Verify found credentials before using in checks
  2. Test your own keys to ensure they're working
  3. Validate key rotation after updates

On this page