Resources

Developer Resources

Everything you need to integrate Traffic Orchestrator into your application. SDKs, guides, examples, and more.

Code Examples

Copy-paste ready code for common patterns

JavaScript
// Validate a license key via REST API
const response = await fetch(
  'https://api.trafficorchestrator.com/api/v1/validate',
  {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
      'Authorization': 'Bearer ' + process.env.TO_API_KEY
    },
    body: JSON.stringify({
      key: 'TO-XXXX-XXXX-XXXX',
      domain: 'example.com'
    })
  }
);

const result = await response.json();
if (result.valid) {
  console.log('License valid!', result.license.features);
}

Need Help?

Get in touch with our team for support and questions

Contact Us

Documentation

Browse guides, API reference, and code examples

View Docs

Email Support

Get help from our technical support team

Contact Support