> ## 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.

# Quickstart

> Get started with the cloro API in minutes. Learn how to get your API key, make your first monitoring request, and understand the response structure.

This guide covers the basics of using the cloro API.

## 1. Get your API key

You can find your API key in your [dashboard](https://dashboard.cloro.dev/).

## 2. Make your first request

You can use the following code to make your first request to the cloro API.

```bash theme={null}
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:

```json theme={null}
{
  "success": true,
  "result": {
    "text": "Acme Corp is a fictional corporation that appears in many cartoons.",
    "sources": []
  }
}
```
