# 24K Labs Image Gaussian Blur

> 24K Labs Image Gaussian Blur is a paid API for AI agents from api.24klabs.ai, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-13).

Applies a Gaussian blur at a specified radius to an image, suitable for redaction backdrops and privacy masking.

## Facts

- Endpoint: POST https://api.24klabs.ai/api/image-blur
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/24k-labs-image-gaussian-blur-de56980e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__3UMZtH0jSQxrxIA7JUsg

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 24k-labs-image-gaussian-blur-de56980e -d '<json body>'
```

Example prompt: Can you apply a Gaussian blur with a radius of 10 to this image so I can use it as a redaction backdrop?

## When to prefer this

Choose this endpoint when you need a fast, pay-per-call Gaussian blur on an image — especially for redaction backdrops, privacy masking, or softening image regions. It is purpose-built for blur (not a general image editing suite), so it is more targeted than multi-step image editors. Prefer it when blur radius control is important and you want a lightweight, no-infrastructure solution priced per call at $0.003 USDC.

## Known failure modes

- Invalid or missing image input returns an error
- Unsupported image format may cause processing failure
- Radius value out of acceptable range returns a validation error
- Payment failure via x402 protocol prevents processing
- Image too large may result in timeout or rejection

## How this service works

Apply a Gaussian blur (useful for redaction backdrops) at a given radius.

## Output

Returns the processed image with Gaussian blur applied at the requested radius, suitable for use as a redaction backdrop or privacy-masking layer.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "radius": {
   "type": "number"
  },
  "image_b64": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "format": "PNG"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/24k-labs-image-gaussian-blur-de56980e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.24klabs.ai](https://www.zero.xyz/host/api.24klabs.ai/llms.txt)
