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

# Examples

> Sample configurations for common external APIs, which serve as a reference for setting up your own tool integrations.

Each example shows a complete, proven configuration—from the endpoint URL to the required header and authentication settings, all the way to the appropriate JSON path for processing the response.

<Tabs>
  <Tab title="DHL Shipment Tracking">
    <Steps>
      <Step title="Shipment tracking template">
        Select the preconfigured shipment tracking template.
      </Step>

      <Step title="Endpoint URL">
        Enter the following URL in the HTTP Request field:

        `https://www.dhl.de/int-verfolgen/data/search?piececode={tracking_id}&language=de`

        Select **GET** as the method.
      </Step>

      <Step title="Response">
        Define the JSON path as follows:

        `sendungen[0].sendungsdetails.sendungsverlauf.status`
      </Step>

      <Step title="Header">
        Set the header details:

        | Name              | Value                                                                                                             |
        | :---------------- | :---------------------------------------------------------------------------------------------------------------- |
        | `User-Agent`      | `Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36` |
        | `Referer`         | `https://www.dhl.de/de/privatkunden/dhl-sendungsverfolgung.html?piececode={tracking_id}`                          |
        | `Accept`          | `application/json, text/plain, */*`                                                                               |
        | `Accept-Language` | `de-DE,de;q=0.9`                                                                                                  |
      </Step>
    </Steps>
  </Tab>
</Tabs>
