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

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

These personas are optimized for a variety of real-world scenarios:

<Note>
  To fetch all available stock personas, use the <a href="/api-reference/personas/get-personas" target="_blank" rel="noopener noreferrer">List Personas endpoint</a>.
</Note>

### Stock Personas

<CardGroup cols={2}>
  <Card title="Sales Coach" icon="user">
    Teaches sales tips and strategies.

    ```text  theme={null}
    p1af207b8189
    ```

    <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 '{
            "replica_id": "r4f5b5ef55c8",
            "persona_id": "p1af207b8189"
        }'
      ```
    </Accordion>
  </Card>

  <Card title="Customer Support" icon="headset">
    Support users with product issues.

    ```text  theme={null}
    paaee96e4f87
    ```

    <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 '{
            "replica_id": "r3f427f43c9d",
            "persona_id": "paaee96e4f87"
        }'
      ```
    </Accordion>
  </Card>

  <Card title="Interviewer" icon="comments">
    Runs mock interviews and screens candidates.

    ```text  theme={null}
    pdac61133ac5
    ```

    <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 '{
            "replica_id": "r5f0577fc829",
            "persona_id": "pdac61133ac5"
        }'
      ```
    </Accordion>
  </Card>

  <Card title="Sales Development Rep" icon="briefcase">
    Engage with Anna, the Tavus sales development rep.

    ```text  theme={null}
    pcb7a34da5fe
    ```

    <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 '{
            "replica_id": "rf4e9d9790f0",
            "persona_id": "pcb7a34da5fe"
        }'
      ```
    </Accordion>
  </Card>
</CardGroup>


Built with [Mintlify](https://mintlify.com).