Developers

Background removal API

Cut out the subject of a photo and get a transparent PNG back — no green screen, no design software. Try it without code first on the free background removal tool.

POST/v1/images/transform
curl https://api.pixpoo.com/v1/images/transform \
  -H "x-api-key: pxp_xxxxxxxx" \
  -F file=@photo.jpg \
  -F removeBackground=true \
  -F format=png

Parameters

filefilerequired

The source image (multipart upload). Use "url" instead to fetch from a remote address.

removeBackgroundbooleanrequired

Set to true to run background removal before any other transform.

Response

A transparent PNG with the background removed.

Prefer JSON with a base64 payload instead of raw bytes? Use /v1/images/transform/json with the same parameters.

← Back to API documentation