REST-API

This service offers a simple REST API to convert images to webp! In enforces a limit of 1000 conversions per IP per hour. IP-addresses are only stored as HASH, i.e. anonymously. The maximum request size is 25MB (please be aware of the overhead of base64 encoding). You are not allowed to upload illegal content to this service.

Request: POST: /convert


{
    "fileExtension": string; // e.g. "jpeg"
    "base64String": string;
    [optional] "quality": integer; // 1 - 100; Default-Value is 82
}
            

Response: /convert


{
    "success": boolean;
    "size": number;
    "oldSize": number;
    "savingsInPercent": number;
    "base64String": string;
    "quality": integer;
}