> ## 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.

# Developer Documentation

> Welcome to the OrbitForms API documentation. Use our REST API to programmatically manage forms, retrieve submissions, and integrate OrbitForms into your applications.

Welcome to the OrbitForms API documentation. Use our REST API to programmatically manage forms, retrieve submissions, and integrate OrbitForms into your applications.

## Explore the API

<CardGroup cols={2}>
  <Card title="API Reference" icon="terminal" href="/developers/api/overview">
    Complete API documentation with endpoints, parameters, and response examples.
  </Card>

  <Card title="Webhooks" icon="webhook" href="/developers/webhooks">
    Receive real-time notifications when form events occur in your account.
  </Card>
</CardGroup>

## Quick Example

Make your first API request to list all forms in your account:

```bash theme={null}
curl -X GET "https://orbitforms.ai/api/v1/forms" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"
```

[View full Quick Start guide](/developers/quick-start)

## API Features

<CardGroup cols={2}>
  <Card title="RESTful API" icon="terminal">
    Standard REST endpoints with JSON responses
  </Card>

  <Card title="API Keys" icon="key">
    Secure authentication with API keys
  </Card>

  <Card title="Webhooks" icon="webhook">
    Real-time event notifications
  </Card>

  <Card title="Rate Limits" icon="zap">
    Generous rate limits for production use
  </Card>
</CardGroup>

## Resources

<CardGroup cols={3}>
  <Card title="Quick Start" icon="rocket" href="/developers/quick-start">
    Get up and running in minutes
  </Card>

  <Card title="Embed Script" icon="code" href="/developers/embed">
    Add forms to any website
  </Card>

  <Card title="Build Apps" icon="zap" href="https://orbitforms.ai/apps/overview">
    Create OAuth integrations
  </Card>
</CardGroup>
