Documentation
Everything you need to know about deploying and managing your projects on Webstadia.
Quick Start Guides
Deploy a Static Site
Get your first static site deployed in under 5 minutes
Set Up Backend Hosting
Deploy Node.js, Python, or other backend services
WordPress Hosting
Launch a managed WordPress site with CyberPanel
Forms & Tables
Add forms and data storage to your applications
Complete Documentation
Forms & Tables
API Reference
Comprehensive API documentation for integrating Webstadia services into your applications and workflows.
- REST API for forms and tables
- Deployment webhooks
- Analytics API
- Project management API
// Submit form data
POST /api/forms/contact
Content-Type: application/json
Authorization: Bearer your-api-key
{
"name": "John Doe",
"email": "[email protected]",
"message": "Hello World!"
}
// Response
{ "success": true, "id": "form_123" }
// Install the package
$ npm install @webstadia/client
// Use in your React app
import { WebstadiaForm } from '@webstadia/client'
function ContactForm() {
return (
<WebstadiaForm
formId="contact"
onSuccess={handleSuccess}
/>
)
}
NPM Package
Integrate Webstadia forms and tables directly into your frontend applications with our easy-to-use NPM package.
- React, Vue, and Angular support
- TypeScript definitions included
- Built-in validation and error handling
- Customizable styling
Need Help?
Can't find what you're looking for? Our community and support team are here to help.
GitHub Discussions
Join our community discussions and get help from other developers.
Support Tickets
Get direct help from our support team for technical issues.
Video Tutorials
Watch step-by-step video guides for common tasks and features.