{
  "info": {
    "name": "Cloro — mcp.ai",
    "description": "REST API for the Cloro MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/cloro",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "cloro_extract_ai_answer",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/extract/ai/answer",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "extract",
            "ai",
            "answer"
          ]
        },
        "description": "Synchronously extract a Gemini or Perplexity answer for a prompt and country. This spends credits and includes Cloro's 2-credit synchronous surcharge. Use Submit Async Task for ChatGPT or Copilot, whi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"state\": \"\",\n  \"prompt\": \"\",\n  \"country\": \"\",\n  \"provider\": \"\",\n  \"include_html\": false,\n  \"include_markdown\": false,\n  \"include_raw_response\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cloro_extract_google_ai_mode_answer",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/extract/google/ai/mode/answer",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "extract",
            "google",
            "ai",
            "mode",
            "answer"
          ]
        },
        "description": "Extract a structured Google AI Mode answer with sources and optional rich modules for a prompt and country. This synchronous call costs at least 6 credits.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"uule\": \"\",\n  \"device\": \"\",\n  \"prompt\": \"\",\n  \"country\": \"\",\n  \"location\": \"\",\n  \"include_html\": false,\n  \"include_markdown\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cloro_get_async_queue_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/async/queue/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "async",
            "queue",
            "status"
          ]
        },
        "description": "Read organization-wide queued and processing counts, priority distribution, and current async concurrency without modifying the queue.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cloro_get_async_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/async/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "async",
            "task"
          ]
        },
        "description": "Get a queued Cloro task by ID, or wait with bounded polling until it reaches COMPLETED or FAILED. FAILED is returned as a valid terminal record with its provider response details intact.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\",\n  \"wait_for_completion\": false,\n  \"poll_timeout_seconds\": 0,\n  \"poll_interval_seconds\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cloro_get_credits",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/credits",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "credits"
          ]
        },
        "description": "Read the organization's current completed-charge credit balance and billing cycle. Queued async work is not reserved, and even after a task reports a completed charge, the balance may take about 25 se",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cloro_list_supported_countries",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/supported/countries",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "supported",
            "countries"
          ]
        },
        "description": "Return Cloro's current supported country codes, optionally filtered by provider model. This reports geographic support only and does not confirm that a provider monitor is operational.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"model\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cloro_list_us_states",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/us/states",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "us",
            "states"
          ]
        },
        "description": "Return the US state and DC codes accepted for state-level targeting. State targeting applies only to ChatGPT, Gemini, Copilot, and Perplexity and adds 2 credits.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cloro_search_google",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/google",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "google"
          ]
        },
        "description": "Extract structured Google web or Google News results from a query and country, or web results from a complete Google Search URL. This synchronous call costs at least 5 credits; extra result pages cost",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"uule\": \"\",\n  \"pages\": 0,\n  \"query\": \"\",\n  \"device\": \"\",\n  \"country\": \"\",\n  \"location\": \"\",\n  \"search_type\": \"\",\n  \"include_html\": false,\n  \"include_ai_overview\": false,\n  \"include_paa_ai_overview\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cloro_submit_async_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/submit/async/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "submit",
            "async",
            "task"
          ]
        },
        "description": "Queue one non-cancelable Cloro monitor task and return its task ID and estimated credit charge without waiting. An accepted task continues after this call and spends the reported credits on completion",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cloro_submit_async_task_batch",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/submit/async/task/batch",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "submit",
            "async",
            "task",
            "batch"
          ]
        },
        "description": "Queue 1-500 independently validated, non-cancelable Cloro monitor tasks. Each accepted task continues after this call and spends its reported credits on completion. Inspect summary, partial_success, a",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tasks\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}