Learn How to Use Apollyx

Everything you need to build beautiful, intelligent forms. From getting started to advanced integrations.

⌘K
API Example

Powerful API for Developers

Build custom integrations with our RESTful API. Create forms, manage submissions, and automate workflows programmatically.

View API Reference
api-example.js
// Create a form using the API
const response = await fetch('https://api.apollyx.com/v1/forms', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    name: 'Contact Form',
    fields: [
      { type: 'text', label: 'Name', required: true },
      { type: 'email', label: 'Email', required: true },
      { type: 'textarea', label: 'Message' }
    ]
  })
});

const form = await response.json();
console.log('Form created:', form.id);

Need More Help?

Can't find what you're looking for? Our support team is here to help.