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 Referenceapi-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);Browse Documentation
Explore our comprehensive guides organized by topic.
Getting Started
Core Concepts
Security & Privacy
Need More Help?
Can't find what you're looking for? Our support team is here to help.