Get started with the Orbit AI API in just a few minutes. This guide will walk you through authentication and making your first API requests.
Get Your API Key
Generate an API key from your dashboard:
- Go to Developer Portal → API Keys
- Click Generate New Key
- Copy and store your key securely
List Your Forms
Make your first API request to list all forms in your account:curl -X GET "https://orbitforms.ai/api/v1/forms" \
-H "Authorization: Bearer YOUR_API_KEY"
Get Form Submissions
Retrieve submissions for a specific form:curl -X GET "https://orbitforms.ai/api/v1/forms/{form_id}/submissions" \
-H "Authorization: Bearer YOUR_API_KEY"
You’re all set! You’ve made your first API requests. Explore the full API reference to discover all available endpoints.
Next Steps
API Reference
Explore all endpoints
Webhooks
Real-time notifications