> ## Documentation Index
> Fetch the complete documentation index at: https://docs.orbitforms.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# API Overview

> The OrbitForms REST API enables you to programmatically manage forms, submissions, scheduling pages, meetings, sequences, and integrate with your applications.

The OrbitForms 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](/developers/api/authentication)

## Available Endpoints

<CardGroup cols={1}>
  <Card title="Forms API" icon="file-text" href="/developers/api/forms">
    Create, read, update, and delete forms
  </Card>

  <Card title="Submissions API" icon="list" href="/developers/api/submissions">
    Retrieve and manage form submissions
  </Card>

  <Card title="Scheduling API" icon="clock" href="/developers/api/scheduling">
    Manage scheduling pages, event types, meetings, and availability
  </Card>

  <Card title="Sequences API" icon="envelope" href="/developers/api/sequences">
    Enroll contacts in drip campaigns, view analytics, manage unsubscribes
  </Card>

  <Card title="Authentication" icon="key" href="/developers/api/authentication">
    API keys and OAuth tokens
  </Card>
</CardGroup>

## Response Format

All responses are returned in JSON format with consistent structure:

```json theme={null}
{
  "data": { ... },
  "meta": {
    "total": 100,
    "page": 1,
    "per_page": 20
  }
}
```
