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

# Quickstart

> Get started with access911 in minutes

## Get started with access911

access911 is an AI-powered emergency response platform that augments 911 call handling. This quickstart guide will help you set up and start using the platform.

### Step 1: Access the Dashboard

<AccordionGroup>
  <Accordion icon="chart-line" title="Open the Dashboard">
    Navigate to the [access911 Dashboard](https://access911.vercel.app) to see the platform in action.

    The dashboard provides:

    * Real-time emergency call visualization
    * Interactive map with severity indicators
    * Call history and analytics
    * Simulation controls
  </Accordion>

  <Accordion icon="map" title="Explore the Interface">
    The dashboard includes several key components:

    * **Map View**: Interactive map showing emergency calls as pins
    * **Call Queue**: Live list of incoming emergency calls
    * **Simulation Panel**: Tools for generating test scenarios
    * **City Selector**: Choose different emergency scenarios
    * **History**: View past emergency calls and responses
  </Accordion>
</AccordionGroup>

### Step 2: Run Your First Simulation

<AccordionGroup>
  <Accordion icon="flask" title="Generate Emergency Calls">
    Use the simulation feature to generate realistic emergency scenarios:

    1. Select a disaster scenario (Wildfire, Hurricane, Earthquake, Tornado)
    2. Choose the number of calls to generate (1-100)
    3. Click "Start Simulation"
    4. Watch as emergency calls appear on the map in real-time

    <Tip>Start with 10-20 calls to see the system in action without overwhelming the interface.</Tip>
  </Accordion>

  <Accordion icon="play" title="Monitor Live Calls">
    Once simulation starts, you'll see:

    * Emergency calls appearing as colored pins on the map
    * Call details in the queue monitor
    * Real-time updates as calls are processed
    * Severity indicators (Critical, High, Moderate)
  </Accordion>
</AccordionGroup>

### Step 3: Integrate with ElevenLabs

<AccordionGroup>
  <Accordion icon="microphone" title="Set up Voice Agent">
    To process real emergency calls, configure ElevenLabs integration:

    1. Create an ElevenLabs account and AI voice agent
    2. Configure the webhook endpoint to point to DispatchAI
    3. Set up data collection fields for emergency metadata
    4. Test the integration with sample calls

    <Warning>This requires ElevenLabs API access and webhook configuration.</Warning>
  </Accordion>

  <Accordion icon="webhook" title="Webhook Configuration">
    Configure your ElevenLabs agent to send webhooks to:

    ```
    https://your-api-gateway-url/elevenlabs-webhook
    ```

    The webhook will automatically:

    * Extract emergency metadata
    * Geocode locations
    * Store call records in AWS
    * Update the dashboard in real-time
  </Accordion>
</AccordionGroup>

## Key Features to Explore

<CardGroup cols={2}>
  <Card title="Simulation Engine" icon="flask" href="/simulation">
    Generate realistic emergency scenarios for testing and training.
  </Card>

  <Card title="Webhook Integration" icon="webhook" href="/webhook-integration">
    Connect ElevenLabs voice agent for real emergency call processing.
  </Card>

  <Card title="API Reference" icon="code" href="/api-reference/simulation">
    Use the REST API to integrate access911 with your systems.
  </Card>

  <Card title="Load Balancing" icon="server" href="/load-balancing">
    Understand how the platform handles high-volume emergency calls.
  </Card>
</CardGroup>

## Example API Usage

Generate emergency calls programmatically:

```bash theme={null}
curl -X POST https://v2y08vmfga.execute-api.us-east-1.amazonaws.com/simulate \
  -H "Content-Type: application/json" \
  -d '{
    "scenario": "nashville_tornado",
    "num_calls": 25
  }'
```

## Next Steps

<CardGroup cols={2}>
  <Card title="Dashboard Features" icon="chart-line" href="/dashboard">
    Learn about all dashboard features and capabilities.
  </Card>

  <Card title="API Documentation" icon="terminal" href="/api-reference/simulation">
    Explore the complete API reference with examples.
  </Card>
</CardGroup>

<Note>
  **Need help?** Check out our [API documentation](/api-reference/simulation) or contact support at [support@access911.com](mailto:support@access911.com).
</Note>
