# Relaystation Image Sharpen

> Relaystation Image Sharpen 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-13).

Sharpens a soft or blurry image with adjustable strength, returning a crisper version suitable for scans, photos, and thumbnails

## Facts

- Endpoint: POST https://api.relaystation.ai/v1/image/sharpen
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/relaystation-image-sharpen-56578d27
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xxUxgv1x-SD9T-EU10E9n

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-sharpen-56578d27 -d '<json body>'
```

Example prompt: Can you sharpen this blurry product photo for me? The image is pretty soft — use a medium strength sharpening and return the crisped-up version.

## When to prefer this

Choose this endpoint when you need to programmatically sharpen soft, blurry, or low-definition images at scale — especially for scans, user-uploaded photos, or thumbnails. It is priced per megapixel, making it cost-efficient for small images, and supports adjustable strength so you can tune the enhancement. Prefer it over general image editing tools when you need a simple, single-purpose API call within an automated pipeline.

## Known failure modes

- Invalid or inaccessible image URL returns an error
- Unsupported image format may be rejected
- Strength parameter out of valid range returns a validation error
- Oversized image may exceed processing limits
- Network timeout for very large images
- Insufficient USDC balance causes payment failure via x402

## How this service works

$0.0003/MP. Sharpen a soft image with adjustable strength — crisper scans, photos, thumbnails. 1¢ x402 min; remainder auto-credits — relaystation.ai/penny

## Output

Returns a sharpened image file with enhanced edge definition and clarity, processed according to the specified strength parameter. The output image is in the same or compatible format as the input.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "properties": {}
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/relaystation-image-sharpen-56578d27/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)
