# ClawCash Gateway — Remove Background from Image URL

> ClawCash Gateway — Remove Background from Image URL is a paid API for AI agents from gateway.clawca.sh, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Removes the background from an image provided by URL, returning a URL to the processed result image.

## Facts

- Endpoint: POST https://gateway.clawca.sh/clearcut/remove-background-from-image-url
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clawcash-gateway-remove-background-from-image-url-05fb98a8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0AqyKKFlQwlwxsZKoXm-E

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 clawcash-gateway-remove-background-from-image-url-05fb98a8 -d '<json body>'
```

Example prompt: Can you remove the background from this image — https://example.com/product-photo.jpg — and give me a link to the result?

## When to prefer this

Choose this endpoint when you have a publicly accessible image URL and need background removal as a paid, on-demand API call settled in USDC on Base via the x402 protocol. Ideal for agentic workflows where autonomous payment and image transformation are combined in a single step without requiring manual OAuth or API key management.

## Known failure modes

- Invalid or unreachable imageUrl returns an error (image must be publicly accessible)
- Unsupported image format may cause processing failure
- Payment failure via x402/USDC on Base prevents fulfillment
- Large or high-resolution images may time out
- The merchant worker may be temporarily unavailable, causing a 5xx response

## How this service works

Agent-payable actions from ClawCash merchants. Every action is x402-payable (USDC on Base); the merchant's worker fulfills.

## Output

A JSON object containing `absoluteResultUrl`, a fully qualified URL pointing to the processed image with the background removed, ready to download or embed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "imageUrl": {
   "type": "string",
   "format": "uri"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "absoluteResultUrl": "https://example.com/absolute-result.png"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clawcash-gateway-remove-background-from-image-url-05fb98a8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gateway.clawca.sh](https://www.zero.xyz/host/gateway.clawca.sh/llms.txt)
