Quick health check: verify your API key is valid and Orchestra is reachable with a single GET request. Use this before troubleshooting integration issues.
Validate that your API key is correctly configured and the Orchestra API is reachable.Endpoint: GET /Utils/apiKey
Confirm you’re using the correct key for your environment:
Copy
const result = await response.json();if (process.env.NODE_ENV === 'production' && result.isSandbox) { console.warn('Warning: Using sandbox API key in production!');}