Regional Endpoints & Availability Zones
Access our global network of high-performance data centers. Select a region to view endpoints, latency metrics, and connection details.
SDK & API Integration
Specify the region endpoint in your configuration to route traffic optimally. All regions support our standard REST API and gRPC protocols.
// CloudNexus Node.js SDK
import { CloudNexusClient } from '@cloudnexus/sdk';
const client = new CloudNexusClient({
apiKey: process.env.CLOUDNEXUS_API_KEY,
region: 'us-east-1', // Replace with target endpoint
timeout: 5000,
retries: 3
});
// Initialize connection
await client.connect();