Featured Integrations

Most Popular Connections

These integrations power thousands of medical spa workflows every day.

Integration Directory

All Integrations

Explore our growing library of integrations to supercharge your practice.

Developer API

Build Custom Integrations

Need something specific? Our RESTful API gives you full access to build custom integrations tailored to your unique workflow needs.

Secure & HIPAA Compliant

OAuth 2.0 authentication with encrypted data transfer

Comprehensive Documentation

Detailed API docs with code examples and SDKs

Developer Support

Dedicated support team for enterprise integrations

api.glowclient.com
// Create an appointment
const response = await fetch(
  'https://api.glowclient.com/v1/appointments',
  {
    method: 'POST',
    headers: {
      'Authorization': 'Bearer YOUR_API_KEY',
      'Content-Type': 'application/json'
    },
    body: JSON.stringify({
      patientId: 'pat_abc123',
      providerId: 'prov_xyz789',
      serviceId: 'svc_botox_full',
      startTime: '2024-12-15T10:00:00Z',
      duration: 30
    })
  }
);

// Response
{
  "id": "apt_def456",
  "status": "confirmed",
  "patient": { ... },
  "provider": { ... },
  "service": { ... }
}
Request an Integration

Missing an Integration?

We are always adding new integrations based on customer feedback. Let us know what tools you need connected to GlowClient.