Coming Soon

Subscription SDK

Code Example

// Example API request
const response = await fetch('https://api.example.com/subscription', {
    method: 'POST',
    headers: {
        'Content-Type': 'application/json',
        'Authorization': `Bearer ${apiKey}`
    },
    body: JSON.stringify({
        wallet: walletAddress,
        plan: 'premium',
        duration: 30 // days
    })
});

const data = await response.json();
console.log(data);