Trusted By
No accounts. No sign-ups. No bullshit. The x402 protocol enables true pay-per-request billing directly from your crypto wallet. Every API call is a microtransaction - fully anonymous, instant, and permissionless.
Per image conversion
Per video conversion
Per watermark applied
Official SDKs to get you started in minutes, not hours
npm install @cloak/sdk
pip install cloakprocessing
Maven Central
Gradle/Maven
No user authentication required. Upload your media and get results without leaving a trace.
Submit jobs and check status later. Perfect for batch processing and background workflows.
Convert any image format to WebP with smart compression and optional resizing.
Transform videos to WebM format with configurable quality and compression settings.
Add custom watermarks to your media with flexible positioning and opacity controls.
Clean, RESTful endpoints. Upload, process, and retrieve results with minimal code.
Get started with just a few lines of code
// Using the CloakProcessing SDK with x402
import { CloakClient } from '@cloak/sdk';
const cloak = new CloakClient({
wallet: 'your-crypto-wallet' // x402 auto-pays per request
});
// Upload and process an image
const result = await cloak.convert.image({
file: imageFile,
width: 800,
height: 600,
watermark: { text: 'My Brand', position: 'bottom-right' }
});
console.log(result.url); // Your processed image