ImageRenamer.

Rename / Resize / Reformat / Compress / Host

AI image renamer API for agents.

Let agents rename and optimize images without manual filename cleanup.

The AI ImageRenamer API accepts images from agents and workflows, then returns a descriptive SEO filename, compressed WebP output and a hosted URL.

Try the image renamer

Copy-paste API examples

curl -X POST https://imagerenamer.co.uk/api/v1/process \
  -H "Authorization: Bearer ir_live_your_api_key" \
  -F "targetWidth=1000" \
  -F "image=@/path/to/image.jpg"
const form = new FormData();
form.append("targetWidth", "1000");
form.append("image", file);

const response = await fetch("https://imagerenamer.co.uk/api/v1/process", {
  method: "POST",
  headers: { Authorization: "Bearer ir_live_your_api_key" },
  body: form,
});

const { file: output } = await response.json();
console.log(output.newName, output.url);