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

# embedded.ready

> Emitted when the embedded API is ready to receive calls.

## Event Properties

| Field          | Value              |
| -------------- | ------------------ |
| `event`        | `"embedded.ready"` |
| `confidential` | `boolean`          |
| `payload`      | `object`           |

<Tabs>
  <Tab title="Public Payload">
    No payload properties.

    #### Example

    ```json theme={null}
    {
      "event": "embedded.ready",
      "confidential": false,
      "payload": {}
    }
    ```
  </Tab>

  <Tab title="Confidential Payload">
    No payload properties.

    #### Example

    ```json theme={null}
    {
      "event": "embedded.ready",
      "confidential": true,
      "payload": {}
    }
    ```
  </Tab>
</Tabs>
