Coming Soon
SDKs & Libraries
Accelerate your integration with our official language wrappers.
JavaScript / TS
Ideal for Node.js backends and modern web applications.
npm install @tribridge/sdk
PHP / Laravel
First-class support for Laravel through our official bridge package.
composer require tribridge/payment-bridge
Usage Example (JS)
import { TriBridge } from '@tribridge/sdk';
const tb = new TriBridge('tri_test_...');
const payment = await tb.payments.create({
amount: 99.00,
currency: 'USD',
redirect_url: 'https://yoursite.com/success'
});
console.log(payment.deposit_address);