# Relaystation Image Adjust

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

Adjusts brightness, saturation, hue, lightness, negation, and tint of an image in a single API call

## Facts

- Endpoint: POST https://api.relaystation.ai/v1/image/adjust
- 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-adjust-097126c7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Q0P8ZVpR_nO2CYEfEZqUo

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-adjust-097126c7 -d '<json body>'
```

Example prompt: Take this product photo and increase the brightness by 20, boost saturation by 30, and add a slight warm orange tint to it.

## When to prefer this

Choose this endpoint when you need fast, affordable, single-call image color adjustment — brightness, saturation, hue, lightness, negation, or tinting — without setting up a full image editing pipeline. Ideal for automated workflows that need lightweight color correction at scale at $0.0003 per megapixel.

## Known failure modes

- Invalid or unreachable image URL returns an error
- Out-of-range adjustment values may return a validation error
- Unsupported image format causes processing failure
- Insufficient x402 payment balance returns a payment error
- Large image files may time out or exceed processing limits

## How this service works

$0.0003/MP. Adjust brightness, saturation, hue, lightness — or negate and tint — in one call. 1¢ x402 min; remainder auto-credits — relaystation.ai/penny

## Output

Returns a modified image file with the requested color adjustments (brightness, saturation, hue, lightness, negation, tint) applied. The output is a processed image ready for display or further use.

## 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": {
     "type": "object",
     "properties": {
      "file": {
       "type": "object",
       "description": "cputools input-source: { inline: <base64 ≤ 4 MiB> } or { inputKey: <scratch key from /v1/cputools/upload-url, ≤ 50 MB> }."
      },
      "brightness": {
       "type": "number",
       "minimum": 0,
       "maximum": 10,
       "description": "Multiplier (1 = unchanged)."
      },
      "saturation": {
       "type": "number",
       "minimum": 0,
       "maximum": 10,
       "description": "Multiplier (1 = unchanged)."
      },
      "hue": {
       "type": "integer",
       "minimum": -360,
       "maximum": 360,
       "description": "Rotation in degrees."
      },
      "lightness": {
       "type": "number",
       "minimum": -100,
       "maximum": 100
      },
      "negate": {
       "type": "boolean",
       "description": "Invert colors."
      },
      "tint": {
       "type": "object",
       "required": [
        "r",
        "g",
        "b"
       ],
       "properties": {
        "r": {
         "type": "integer",
         "minimum": 0,
         "maximum": 255
        },
        "g": {
         "type": "integer",
         "minimum": 0,
         "maximum": 255
        },
        "b": {
         "type": "integer",
         "minimum": 0,
         "maximum": 255
        }
       }
      }
     }
    }
   },
   "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-adjust-097126c7/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)
