Developers
Background removal, called from your own code.
The cutout belongs in the step where your files already arrive — the upload handler, the import job, the pipeline that runs at two in the morning. One HTTP call, no SDK, nothing to keep in sync.
- You start with
- POST an image
- You end up with
- Transparent PNG
How it goes
One step
Each one is a tool you can open on its own. The order is the part worth keeping.
-
Background remover
Try it by hand first, on a file that looks like the ones your users will send.
Answers
Questions people ask
What does authentication look like?
A bearer token on the request. There is no SDK to install and no connector to keep up to date.
What do I get back?
A PNG with the background gone and the alpha channel intact — the same result the tool page produces.
How long is a result kept?
Ten minutes. Fetch it in the same job rather than storing the link and coming back tomorrow.
Background removal, called from your own code
No account needed, no watermark, and nothing to install.