# 24K Labs Image Blur API

> 24K Labs Image Blur API 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-14).

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/v1/image-blur
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/24k-labs-image-blur-api-9799a2f0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PP5uT-8yrh-p0Gj0nbEgr

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-blur-api-9799a2f0 -d '<json body>'
```

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

## When to prefer this

Choose this endpoint when you need a simple, cost-effective Gaussian blur applied to an image — especially for redaction backdrops, privacy masking, or softening images before overlaying UI elements. Prefer this over full image editing suites when blur is the only transform needed and you want a lightweight, paid-per-call API with no setup.

## Known failure modes

- Invalid or unsupported image format returns an error
- Blur radius out of acceptable range causes a validation error
- Malformed image URL or missing image payload returns a 400 error
- Payment failure or insufficient USDC balance returns a 402 error
- Large images may exceed size limits and return a 413 error

## How this service works

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

## Output

Returns a blurred version of the input image, processed with a Gaussian blur at the specified radius, suitable for use as a redaction backdrop or privacy mask.

## 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-blur-api-9799a2f0/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)
