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

# Zapier

> Connect cloro to 8,000+ apps with the Zapier integration — trigger AI-engine and Google Search checks from any Zap and route parsed results to Sheets, Slack, or your CRM.

The [cloro app for Zapier](https://zapier.com/apps/cloro/integrations) exposes a single **Submit Prompt** action that sends a prompt to an AI or search engine and returns the parsed, structured result to your Zap — no HTTP requests to hand-write.

Under the hood the action creates an [async task](/api-reference/endpoint/create-async-task) with a Zapier callback URL as the [webhook](/guides/webhooks) target. The Zap step pauses until cloro delivers the result, so long-running monitor requests never hit Zapier's timeout limits.

## Prerequisites

* A [Zapier](https://zapier.com) account
* A cloro API key from the [dashboard](https://dashboard.cloro.dev) (see [Authentication](/guides/authentication))

## Set up the action

1. In the Zap editor, add a step and search for **cloro**.
2. Select the **Submit Prompt** action.
3. Connect your cloro account by pasting your API key when prompted.
4. Pick the engine in the **Tool** dropdown and fill in the input fields below.

## Supported engines

| Tool               | Result schema                                                          |
| ------------------ | ---------------------------------------------------------------------- |
| ChatGPT            | [`/v1/monitor/chatgpt`](/api-reference/endpoint/monitor-chatgpt)       |
| Perplexity         | [`/v1/monitor/perplexity`](/api-reference/endpoint/monitor-perplexity) |
| Grok               | [`/v1/monitor/grok`](/api-reference/endpoint/monitor-grok)             |
| Gemini             | [`/v1/monitor/gemini`](/api-reference/endpoint/monitor-gemini)         |
| Copilot            | [`/v1/monitor/copilot`](/api-reference/endpoint/monitor-copilot)       |
| Google Search      | [`/v1/monitor/google`](/api-reference/endpoint/monitor-google)         |
| Google AI Mode     | [`/v1/monitor/aimode`](/api-reference/endpoint/monitor-aimode)         |
| Google AI Overview | [AI Overview](/api-reference/endpoint/google/ai-overview)              |

<Note>
  The Grok tool is still listed in the dropdown, but the provider is [temporarily unavailable](/guides/providers) — requests to it will fail until Grok access is restored.
</Note>

## Input fields

| Field            | Description                                                                                      |
| ---------------- | ------------------------------------------------------------------------------------------------ |
| Tool             | The AI or search engine to query (required).                                                     |
| Prompt           | The prompt to submit, 1–10,000 characters (required). Used as the search query for Google tools. |
| Country          | ISO 3166-1 alpha-2 country code for localized results. Defaults to `US`.                         |
| Device           | Google tools only — `desktop`, `mobile`, or `tablet`. Defaults to `desktop`.                     |
| Number of Pages  | Google tools only — number of result pages to fetch. Defaults to 1.                              |
| Include HTML     | Include the raw HTML output in the response. Defaults to false.                                  |
| Include Markdown | Include the markdown output in the response. Defaults to true.                                   |

## Output fields

Every run returns the task metadata (`taskId`, `status`, `success`, `completedAt`) plus the parsed result: `text`, `markdown`, `html`, `model`, `sources` (position, URL, label, description), `entities`, `searchQueries`, and `shoppingCards` when available. Map any of these into later Zap steps.

## Example Zaps

* **Schedule by Zapier → cloro → Google Sheets**: run a fixed set of brand prompts daily and append the answers and cited sources to a tracking sheet.
* **Google Forms → cloro → Slack**: let teammates submit a prompt from a form and post the parsed answer to a channel.
* **Schedule by Zapier → cloro (Google AI Overview) → Email**: watch whether the AI Overview for a target query cites your domain and get notified of the result.

Each run consumes credits at the standard per-provider rates — see [Providers](/guides/providers) and [Credits & limits](/guides/credits-and-limits).
