Skip to main content
This guide will walk you through the basics of using the cloro API.

1. Get your API key

You can find your API key in your dashboard.

2. Make your first request

You can use the following code to make your first request to the cloro API.
curl -X POST "https://api.cloro.dev/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"
  }"

3. See the response

You should see a response like this:
{
  "success": true,
  "result": {
    "text": "Acme Corp is a fictional corporation that appears in many cartoons.",
    "sources": []
  }
}