# RelayStation Image Blur

> RelayStation Image Blur is a paid API for AI agents from api.relaystation.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Applies Gaussian blur to an image at a configurable strength, suitable for background blurring, redactions, and thumbnail softening.

## Facts

- Endpoint: POST https://api.relaystation.ai/v1/image/blur
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/relaystation-image-blur-4fd538eb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tiFeZ1_8jKod7yut6rXPx

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 relaystation-image-blur-4fd538eb -d '<json body>'
```

Example prompt: Can you blur this image for me with a strong Gaussian blur — I need to obscure the background before posting it publicly?

## When to prefer this

Choose this endpoint when you need a simple, pay-per-use Gaussian blur applied to an image — especially for background blurring, privacy redactions, or thumbnail softening — without managing your own image processing infrastructure. Priced per megapixel, it is cost-efficient for occasional or high-volume blur tasks and integrates cleanly into x402 micropayment workflows.

## Known failure modes

- Invalid or inaccessible image URL returns an error
- Unsupported image format may cause processing failure
- Blur strength parameter out of valid range returns a validation error
- Image too large may exceed processing limits
- Insufficient USDC balance causes payment failure via x402

## How this service works

$0.0003/MP. Gaussian-blur an image at the strength you set — backgrounds, redactions, thumbnails. 1¢ x402 min; remainder auto-credits — relaystation.ai/penny

## Output

Returns the processed image file with Gaussian blur applied at the requested strength. The output is the blurred image ready for use, billed at $0.0003 per megapixel with a 1¢ minimum per x402 call and auto-credited remainder.

## 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": {
     "properties": {}
    },
    "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": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/relaystation-image-blur-4fd538eb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.relaystation.ai](https://www.zero.xyz/host/api.relaystation.ai/llms.txt)
