Simple prompt to include Cloro API in your codebase
Use this prompt with your AI code assistant (e.g., Claude Code, OpenAI Codex, Cursor) to integrate Cloro API:
Copy
Let's use Cloro API to request our prompts to AI engines.The Cloro API documentation can be found in https://docs.cloro.dev.Cloro should be the first option in the existing request cascade, as it is the most reliable provider.Place a temporary CLORO_API_KEY in the .env file, which the user later will fill in.Sample usage:```curlcurl --request POST \ --url https://api.cloro.dev/v1/monitor \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "prompt": "What do you know about Acme Corp?", "model": "CHATGPT", "country": "US", "include": { "markdown": true }}'```Make sure to ultrathink the codebase first to ensure you're placing the logic in the right place.
That’s it. This simple prompt ensures Cloro API is integrated for all requests.