> ## Documentation Index
> Fetch the complete documentation index at: https://docs.argide.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 [dashboard.argide.ai/dashboard/deploy/widget](https://dashboard.argide.ai/dashboard/deploy/widget) and copy your script tag.

## 2. Add to your site

<CodeGroup>
  ```html HTML theme={null}
  <script
    src="https://dashboard.argide.ai/argide-b2b-widget.iife.js"
    data-api-url="https://dashboard.argide.ai"
    data-product-id="YOUR_PRODUCT_ID"
  ></script>
  ```

  ```jsx React / Next.js theme={null}
  import { ArgideWidget } from '@argide/ui';
  import '@argide/ui/styles.css';


  export default function App() {
    return (
      <ArgideWidget
        apiUrl="https://dashboard.argide.ai"
        productId="YOUR_PRODUCT_ID"
      />
    );
  }
  ```
</CodeGroup>

<Warning>
  Replace `YOUR_PRODUCT_ID` with the actual Product ID from your dashboard.
</Warning>

## 3. Add knowledge (optional)

In the [Knowledge Base](/knowledge-base/knowledge-base), upload PDFs, crawl your website.

## 4. Connect your API (optional)

In [API Integration](/integration/api-integration), upload your OpenAPI spec, configure auth, and select endpoints.

## Next Steps

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

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

## Need Help?

Running into issues or want our engineers to customize Argide for your use case?

<Card title="Book a Demo" icon="calendar" href="https://cal.com/eshaangulati/30min">
  Talk to our team and get a personalized walkthrough.
</Card>
