The imagedit.co Workflow
Most photo editors try to do everything. imagedit.co does three things, and it does them in one place:
- Remove background — a clean, edge-accurate cutout in one click.
- Erase objects — brush over a distraction and rebuild the pixels behind it.
- Upscale — recover real detail at 2x or 4x, not just a stretched resize.
Why three?
Because those are the edits image-makers actually need. Background removal gets the subject onto a transparent canvas. Erase cleans up whatever the cutout missed — a stray wire, a logo, a photobombing stranger. Upscale finishes the job by delivering the result at a resolution worth printing.
If you want a deeper look at the first edit, start here:
One editor, not three tabs
Each edit lives on its own route, but the interaction model is identical: drop an image, adjust, export. You never relearn the tool when you switch tasks.
| Edit | Route | Best for |
|---|---|---|
| Remove background | /remove-background | Cutouts, product photos |
| Erase objects | /erase-objects | Cleanup, distraction removal |
| Upscale | /upscale-image | Resolution recovery |
piping it together from the CLI
For automation, the same endpoints are reachable over HTTP. Drop a file in, pick a tool, get a result URL back:
curl -X POST https://imagedit.co/api/edit \
-H "content-type: application/json" \
-d '{"tool":"remove-background","image":"https://example.com/photo.jpg"}'The response returns a preview URL plus an HD URL once processing finishes:
{
"images": [
{ "taskId": "ts_abc", "previewUrl": "https://assets.imagedit.co/…" }
]
}The fastest path is the one that doesn't make you think about the tool.
That's the whole product.