cloro WebsiteAPI Get an API key
Documentation › Introduction › Welcome to cloro

Welcome to cloro

cloro is a REST API for capturing how AI assistants and AI-powered search answer your prompts, returning each response as clean, parsed structured data.

Overview

Modern discovery increasingly runs through AI assistants and AI answer boxes rather than a traditional list of blue links. cloro lets you observe that layer programmatically: send a prompt to a supported provider and receive the model's answer already parsed into markdown, together with the sources and citations it drew from. A single, consistent request and response shape covers every provider, so you can compare answers across ChatGPT, Perplexity, Copilot, Grok, Gemini, Google Search, and Google AI Mode without rewriting your integration for each one.

Every provider is reached through a dedicated endpoint under the same base URL, and you can target a specific country or region to see how answers shift by locale.

POST https://api.cloro.cloud/v1/monitor/chatgpt

Request parameters

FieldTypeDescription
promptstringThe question or instruction to submit to the provider. Required.
countrystringISO country code (for example US) used to localize the request. Optional; defaults to a global region when omitted.

Authentication

Requests are authorized with a bearer token. Include your key in the Authorization header and send the body as JSON:

curl -X POST "https://api.cloro.cloud/v1/monitor/chatgpt" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "What do you know about Acme Corp?",
    "country": "US"
  }'

Available endpoints

Each provider has its own POST /v1/monitor/* endpoint. Pick the one that matches the surface you want to observe.

EndpointProviderWell suited to
/v1/monitor/chatgptChatGPTShopping and product-related answers
/v1/monitor/copilotMicrosoft CopilotMicrosoft ecosystem queries
/v1/monitor/perplexityPerplexityUp-to-date research questions
/v1/monitor/grokGrokCurrent events and news
/v1/monitor/googleGoogle SearchSEO and market research
/v1/monitor/google-newsGoogle NewsMedia and news monitoring
/v1/monitor/geminiGoogle GeminiGeneral reasoning tasks
/v1/monitor/aimodeGoogle AI ModeGeneral knowledge lookups
/v1/google/ai-overviewGoogle AI OverviewAnalyzing AI Overview results

Response example

A successful call returns the parsed answer, the provider queried, and the citations behind it.

{
  "provider": "chatgpt",
  "country": "US",
  "prompt": "What do you know about Acme Corp?",
  "answer": "Acme Corp is a manufacturer of industrial hardware...",
  "citations": [
    {
      "title": "About Acme Corp",
      "url": "https://example.com/about"
    }
  ],
  "created_at": "2026-08-14T09:12:44Z"
}

Why cloro

Notes

Manage your API key and billing from the dashboard, and reach the team at [email protected] if you need help.