Resize, crop, compress, convert (WebP/AVIF/JPEG/PNG/GIF), optimize, and transform images f
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.
5000 (raw units)
price
18
calls / 30d
4
unique payers
2026-09-11
updated
Provider
api.snapfix.media · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x7006853650Cf5D2FB1BBf0416AaDF365c08c6D44",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"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"
},
"output": {
"example": {
"downloadUrl": "/v1/jobs/b3b1e2b0-2f2a-4c7e-9c1a-2f6a1e0f9d3b/download",
"jobId": "b3b1e2b0-2f2a-4c7e-9c1a-2f6a1e0f9d3b",
"output": {
"byteSize": 182442,
"contentType": "image/png",
"filename": "snapfix-b3b1e2b0-2f2a-4c7e-9c1a-2f6a1e0f9d3b.png",
"format": "png",
"hasAlpha": true,
"height": 512,
"width": 512
},
"status": "completed"
},
"type": "json"
}
},
"schema": {
"$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"
}
}
}Use it
curl
curl "https://api.snapfix.media/v1/transform" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.snapfix.media/v1/transform");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.snapfix.media/v1/transform")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/3003.json, and this resource appears in /discovery/resources and /discovery/search.