LIVE NODE STATUS
BINANCE C2C : 99.99% UPTIME
USDT TRC20 : FAST CONFIRM
BEP20 : LIVE NODE
BKASH API : AUTO SYNC
BINANCE C2C : 99.99% UPTIME
USDT TRC20 : FAST CONFIRM
Home Distributors API Docs Pricing

API Introduction

Welcome to the BD Pay Developer API. Our API allows you to integrate secure Binance C2C payments directly into your service portal or e-commerce website.

Base URL: https://paidfile.net/api/v1

Authentication

All API requests require your Merchant API Key and Secret Key passed in the request headers.

GET /api/v1/balance
Header:
X-API-KEY: your_api_key
X-API-SECRET: your_secret_key

Create Payment Request

Use this endpoint to initiate a new payment session for your customer.

POST /payment/create
amount The value in USDT (Min 10.00)
order_id Your unique internal order reference

PHP CURL Example:

$ch = curl_init("https://paidfile.net/api/v1/payment/create");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, [
    'amount' => 50.00,
    'order_id' => 'INV-1002'
]);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
    'X-API-KEY: your_api_key',
    'X-API-SECRET: your_secret_key'
]);
$response = curl_exec($ch);