# x402.dellbot.win Background Removal

> x402.dellbot.win Background Removal is a paid API for AI agents from x402.dellbot.win, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-15).

Removes the background from an image using AI, returning a transparent PNG, paid via x402 at $0.06 USDC per call

## Facts

- Endpoint: POST https://x402.dellbot.win/background-remove
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-dellbot-win-43a67cd2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rZ4o7n79RTA523HMNlHjz

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability x402-dellbot-win-43a67cd2 -d '<json body>'
```

Example prompt: Can you remove the background from this product photo and give me a transparent PNG? Here's the image URL: https://example.com/product.jpg

## When to prefer this

Choose this endpoint when you need automated, pay-per-use AI background removal without a subscription, especially in agent workflows that process product images, headshots, or design assets. At $0.06 USDC per call via x402, it is well-suited for low-to-medium volume agentic pipelines that need transparent PNGs on demand.

## Known failure modes

- Image exceeds 25MB size limit — request rejected
- Invalid base64 encoding or malformed image URL — 400 error
- Payment not received or insufficient USDC — x402 payment required response
- Unsupported image format — processing failure
- Network timeout for large images near the size limit

## Output

A binary image/png file with the subject isolated on a fully transparent background, suitable for compositing or design use. The response content-type is image/png.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {
      "image": {
       "type": "string",
       "description": "Base64-encoded source image (< 25MB)"
      },
      "image_url": {
       "type": "string",
       "format": "uri",
       "description": "URL of the source image (alternative to image)"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "string",
     "format": "binary",
     "contentMediaType": "image/png"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-dellbot-win-43a67cd2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.dellbot.win](https://www.zero.xyz/host/x402.dellbot.win/llms.txt)
