ToolAssay

Resize, crop, compress, convert (WebP/AVIF/JPEG/PNG/GIF), optimize, and transfor

Resize, crop, compress, convert (WebP/AVIF/JPEG/PNG/GIF), optimize, and transform images from a natural-language instruction. Remove backgrounds, make thumbnails, srcset variants, icon sets, watermarks, GIF edits, Shopify-ready product images. Up to 12 named variants per request as a ZIP, or base64 data URI output. Every constraint is verified against the real output bytes before payment settles; failures are never charged.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
369 msmedian answer time
$0.005listed price per call
$0.005price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://api.snapfix.media/v1/transform

CategoryImage and media
Provider hostapi.snapfix.media
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days15 from 3 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.005 369 ms

Example input (from the provider)

{
  "body": {
    "imageUrl": "https://example.com/photo.jpg",
    "instruction": "resize to 2048x2048, convert to webp, keep it under 300 KB"
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "properties": {
            "imageUrl": {
              "description": "Publicly fetchable HTTPS URL of the source image (jpeg, png, webp, gif, tiff, or avif).",
              "format": "uri",
              "type": "string"
            },
            "instruction": {
              "description": "Natural-language edit instruction, e.g. \"remove the background\" or \"resize to 512x512\".",
              "maxLength": 500,
              "minLength": 1,
              "type": "string"
            }
          },
          "required": [
            "instruction",
            "imageUrl"
          ],
          "type": "object"
        },
        "bodyType": {
          "enum": [
            "json",
            "form-data",
            "text"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON