Documentation Coming Soon
We are currently finalizing our complete API documentation. The information below is a preview of the available endpoints and SDKs.
API Documentation
Everything you need to integrate Cloak AI into your applications.
Getting Started
The Cloak AI API allows you to programmatically anonymize images by detecting and redacting sensitive information like names, emails, phone numbers, faces, and addresses.
Secure
Images are processed in memory and never stored.
Fast
Powered by Google Gemini for sub-second processing.
Simple
RESTful API with SDKs for Python and JavaScript.
Base URL
url
https://cloakai.dev/apiQuick Example
bash
curl -X POST https://cloakai.dev/api/anonymize \
-H "Authorization: Bearer clk_live_your_api_key" \
-F "image=@screenshot.png" \
-F "mode=replace" \
-F "detect[]=faces" \
-F "detect[]=pii" \
-F "detect[]=email"