API Reference

Complete API documentation for Web3-Crypto.XYZ integration.

REST API

Comprehensive REST API documentation with examples.

View Documentation

WebSocket API

Real-time WebSocket API for live updates and notifications.

View Documentation

SDK Reference

Detailed documentation for our client SDKs.

View Documentation

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'
});