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

# Quick Start

> Get started with the OrbitForms API in just a few minutes. This guide will walk you through authentication and making your first API requests.

Get started with the OrbitForms API in just a few minutes. This guide will walk you through authentication and making your first API requests.

<Steps>
  <Step title="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
  </Step>

  <Step title="List Your Forms">
    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"
    ```
  </Step>

  <Step title="Get Form Submissions">
    Retrieve submissions for a specific form:

    ```bash theme={null}
    curl -X GET "https://orbitforms.ai/api/v1/forms/{form_id}/submissions" \
      -H "Authorization: Bearer YOUR_API_KEY"
    ```
  </Step>
</Steps>

<Tip>
  **You're all set!** You've made your first API requests. Explore the full API reference to discover all available endpoints.
</Tip>

## Next Steps

<CardGroup cols={2}>
  <Card title="API Reference" icon="terminal" href="/developers/api/overview">
    Explore all endpoints
  </Card>

  <Card title="Webhooks" icon="zap" href="/developers/webhooks">
    Real-time notifications
  </Card>
</CardGroup>
