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

# Quickstart

> Get your agent live in 5 minutes

## 1. Copy your script tag

Go to [app.usecrow.ai/deploy](https://app.usecrow.ai/deploy) and copy your script tag.

## 2. Add to your site

<CodeGroup>
  ```html HTML theme={null}
  <script
    src="https://api.usecrow.org/static/crow-widget.js"
    data-api-url="https://api.usecrow.org"
    data-product-id="YOUR_PRODUCT_ID"
  ></script>
  ```

  ```jsx React / Next.js theme={null}
  // pages/_app.tsx or app/layout.tsx
  import Script from 'next/script'

  export default function Layout({ children }) {
    return (
      <>
        {children}
        <Script
          src="https://api.usecrow.org/static/crow-widget.js"
          data-api-url="https://api.usecrow.org"
          data-product-id="YOUR_PRODUCT_ID"
          strategy="afterInteractive"
        />
      </>
    )
  }
  ```

  ```vue Vue theme={null}
  <!-- App.vue -->
  <script setup>
  import { onMounted } from 'vue'

  onMounted(() => {
    const script = document.createElement('script')
    script.src = 'https://api.usecrow.org/static/crow-widget.js'
    script.setAttribute('data-api-url', 'https://api.usecrow.org')
    script.setAttribute('data-product-id', 'YOUR_PRODUCT_ID')
    document.body.appendChild(script)
  })
  </script>
  ```
</CodeGroup>

## 3. Configure your agent

In [Sandbox](https://app.usecrow.ai/sandbox), set your agent name and instructions. Test responses in the live preview.

## 4. Add knowledge (optional)

In [Knowledge Base](https://app.usecrow.ai/sources/files), upload PDFs, crawl your website, or connect Notion.

## 5. Connect your API (optional)

In [Integration](https://app.usecrow.ai/integration), upload your OpenAPI spec, configure auth, and select endpoints.

***

## Next Steps

<CardGroup cols={2}>
  <Card title="Identity Verification" icon="fingerprint" href="/identity-verification">
    Authenticate users for personalized experiences
  </Card>

  <Card title="OpenAPI Authentication" icon="key" href="/openapi-authentication">
    Configure API auth (JWT Forward for user actions)
  </Card>
</CardGroup>

***

## Need Help?

Running into issues or want our engineers to customize Crow for your use case? [Book a demo](https://cal.com/aryan-vij-wpimwt/30min).
