# Pixo Tools Image Flip

> Pixo Tools Image Flip is a paid API for AI agents from api.pixo.tools, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Flips an uploaded image horizontally or vertically

## Facts

- Endpoint: POST https://api.pixo.tools/v1/image/flip
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pixo-tools-image-flip-0efadb79
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UUZonRVc0-QpmberFstMv

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 pixo-tools-image-flip-0efadb79 -d '<json body>'
```

Example prompt: Can you flip this product photo horizontally so it mirrors itself left-to-right?

## When to prefer this

Use this endpoint when you need a simple, deterministic image flip operation (horizontal or vertical mirror) without any AI processing overhead. Prefer it over general-purpose image editors when you need a lightweight, pay-per-use API call for mirroring images programmatically.

## Known failure modes

- Unsupported image format — returns 4xx with format error
- File too large — returns 4xx payload size error
- Missing file input — returns 400 bad request
- Payment not provided or insufficient — returns 402 Payment Required
- Invalid flip direction parameter — returns 400 with parameter error

## How this service works

Flip an image horizontally or vertically

## Output

Returns the transformed image file with the requested flip applied — either a horizontal mirror (left-to-right) or vertical flip (upside-down), preserving the original image format and quality.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "file",
  "direction"
 ],
 "properties": {
  "file": {
   "type": "string"
  },
  "colors": {
   "type": "integer",
   "description": "PNG only, default 256"
  },
  "format": {
   "enum": [
    "jpeg",
    "png",
    "webp"
   ],
   "type": "string"
  },
  "quality": {
   "type": "integer",
   "description": "JPEG/WebP only, default 90"
  },
  "direction": {
   "enum": [
    "horizontal",
    "vertical"
   ],
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "string",
 "format": "binary"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pixo-tools-image-flip-0efadb79/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.pixo.tools](https://www.zero.xyz/host/api.pixo.tools/llms.txt)
