API Reference
Complete API documentation for Web3-Crypto.XYZ integration.
Quick Start
// Initialize the SDK
import { Web3Crypto } from '@web3-crypto/sdk';
const client = new Web3Crypto({
apiKey: 'your-api-key',
environment: 'production'
});
// Create a payment
const payment = await client.payments.create({
amount: '100.00',
currency: 'EUR',
description: 'Test payment'
});