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

# Stock PALs

> Tavus offers pre-built PAL templates to help you get started quickly.

These template PALs match the presets in [PAL Maker](https://maker.tavus.io/dev/pals/create). Clone one in the portal or call them directly by `pal_id`:

<Note>
  To list every stock PAL your account can use, call the <a href="/api-reference/pals/list-pals" target="_blank" rel="noopener noreferrer">List PALs endpoint</a>. For the full configuration (including system prompt), use <a href="/api-reference/pals/get-pal" target="_blank" rel="noopener noreferrer">Get PAL</a>.
</Note>

### Template PALs

<CardGroup cols={2}>
  <Card title="Casting Director" icon="clapperboard">
    Interactive table-read with immediate feedback and a post-call audition review

    ```text theme={null}
    p735435f8c36
    ```

    <Accordion title="Create Conversation">
      ```shell theme={null}
        curl --request POST \
        --url https://tavusapi.com/v2/conversations \
        -H "Content-Type: application/json" \
        -H "x-api-key: <api-key>" \
        -d '{
            "pal_id": "p735435f8c36"
        }'
      ```
    </Accordion>
  </Card>

  <Card title="Sales Development Representative" icon="briefcase">
    Qualify leads on a live call and sync results to your CRM.

    ```text theme={null}
    p88b777355b2
    ```

    <Accordion title="Create Conversation">
      ```shell theme={null}
        curl --request POST \
        --url https://tavusapi.com/v2/conversations \
        -H "Content-Type: application/json" \
        -H "x-api-key: <api-key>" \
        -d '{
            "pal_id": "p88b777355b2"
        }'
      ```
    </Accordion>
  </Card>

  <Card title="Medical Intake" icon="heart-pulse">
    Pre-visit intake flow with structured data capture.

    ```text theme={null}
    pa5ad6596ef5
    ```

    <Accordion title="Create Conversation">
      ```shell theme={null}
        curl --request POST \
        --url https://tavusapi.com/v2/conversations \
        -H "Content-Type: application/json" \
        -H "x-api-key: <api-key>" \
        -d '{
            "pal_id": "pa5ad6596ef5"
        }'
      ```
    </Accordion>
  </Card>

  <Card title="Trivia Master" icon="trophy">
    Trivia coach and trainer, complete with quizzes

    ```text theme={null}
    p89b602b1174
    ```

    <Accordion title="Create Conversation">
      ```shell theme={null}
        curl --request POST \
        --url https://tavusapi.com/v2/conversations \
        -H "Content-Type: application/json" \
        -H "x-api-key: <api-key>" \
        -d '{
            "pal_id": "p89b602b1174"
        }'
      ```
    </Accordion>
  </Card>
</CardGroup>
