N
Nexus API Reference v2.4.1

Configuration Options

Complete list of client configuration parameters and their default values.

GET/v2/general/configuration-optionsRequires authentication

Code Example

typescript
interface NexusConfig {
  apiKey: string          // Required. Your API key from the dashboard.
  environment: string     // 'production' | 'sandbox'. Default: 'production'
  version: string         // API version. Default: 'v2'
  timeout: number         // Request timeout in ms. Default: 30000
  retries: number         // Max retry attempts. Default: 3
  baseUrl?: string        // Override the API base URL
  debug?: boolean         // Enable debug logging. Default: false
}
Last updated: April 21, 2026typescript