Skip to main content
The Orbit AI REST API enables you to programmatically manage forms, submissions, scheduling pages, meetings, sequences, and integrate with your applications.

Base URL

https://orbitforms.ai/api/v1

Authentication

All API requests require authentication using a Bearer token in the Authorization header:
Authorization: Bearer YOUR_API_KEY
Learn more about authentication

Available Endpoints

Forms API

Create, read, update, and delete forms

Submissions API

Retrieve and manage form submissions

Scheduling API

Manage scheduling pages, event types, meetings, and availability

Sequences API

Enroll contacts in drip campaigns, view analytics, manage unsubscribes

Authentication

API keys and OAuth tokens

Response Format

All responses are returned in JSON format with consistent structure:
{
  "data": { ... },
  "meta": {
    "total": 100,
    "page": 1,
    "per_page": 20
  }
}