Back to home

Developer Portal

Everything you need to integrate Chainberry into your application

API Documentation

Our REST APIs provide comprehensive access to Chainberry's crypto infrastructure, including wallet management, deposits, withdrawals, and KYT screening.

// Example API request
fetch('https://api.chainberry.io/v1/deposits', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'Authorization': 'Bearer YOUR_API_KEY'
  },
  body: JSON.stringify({
    chain: 'BTC',
    amount: '0.01',
    address: '1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa'
  })
})