Skip to main content
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.
1

Get Your API Key

Generate an API key from your dashboard:
  1. Go to Developer Portal → API Keys
  2. Click Generate New Key
  3. Copy and store your key securely
2

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"
3

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