Getting Started
Welcome to Cetuc documentation. This guide will help you get up and running quickly.
Prerequisites
- Node.js 18+ or Python 3.9+
- An API key (available after signup)
- Basic familiarity with blockchain concepts
Everything you need to build with Cetuc infrastructure. Comprehensive documentation, APIs, and developer tools.
We built Cetuc for developers who ship production code. Our infrastructure is designed to be intuitive, well-documented, and reliable. Whether you're building a prototype or deploying to mainnet, we provide the tools and support you need.
Install the Cetuc SDK for your preferred language using your package manager.
npm install @cetuc/core
Sign up for an account and retrieve your API key from the dashboard. For testing, you can use our public testnet endpoints.
Set your API key and choose your target network (local, testnet, or mainnet).
const cetuc = new CetucClient({
apiKey: process.env.CETUC_API_KEY,
network: 'testnet'
});
Start by querying blockchain data or submitting a transaction.
const balance = await cetuc.getBalance('0x...');
console.log('Balance:', balance);
Explore our documentation for advanced features, subscribe to events, and integrate Cetuc into your application.
Welcome to Cetuc documentation. This guide will help you get up and running quickly.
Cetuc provides a RESTful API with consistent endpoints across all supported networks.
https://api.cetuc.xyz/v1
Include your API key in the Authorization header:
Authorization: Bearer YOUR_API_KEY
All API requests require authentication using your API key. Keep your API key secure and never commit it to version control.
Generate and manage API keys through the developer dashboard. You can create multiple keys for different environments or applications.
Cetuc supports multiple blockchain networks across different environments.
Use our local development endpoints for testing without network costs.
Official SDKs are available for popular programming languages.
@cetuc/corecetuc-pythongithub.com/cetuc/go-sdkconst balance = await cetuc.accounts.getBalance(
'0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb'
);
cetuc.events.subscribe('transfer', (event) => {
console.log('Transfer event:', event);
});
Rate limiting: If you exceed rate limits, implement exponential backoff and retry logic.
Network errors: Check your network connection and API endpoint configuration.
Authentication errors: Verify your API key is correct and has the necessary permissions.
Last checked:
Added support for Polygon zkEVM and improved error handling.
Increased rate limits for enterprise tier customers.
Launched improved documentation with interactive examples.
Cetuc Bridge is now available on mainnet with support for 5 networks.
Completed comprehensive security audit of core infrastructure components.