# Pixo Tools Image Rotate

> Pixo Tools Image Rotate 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).

Rotates an uploaded image by 90, 180, or 270 degrees

## Facts

- Endpoint: POST https://api.pixo.tools/v1/image/rotate
- 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-rotate-2e01c3db
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_J-sCY4Bf5Qv2EEnuTXKD6

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-rotate-2e01c3db -d '<json body>'
```

Example prompt: Can you rotate this image 90 degrees clockwise for me? Here's the file: photo.jpg

## When to prefer this

Use this endpoint when you need to rotate a single image by a fixed 90/180/270-degree increment. Ideal for correcting photo orientation issues programmatically without full image editing pipelines.

## Known failure modes

- Unsupported image format returns an error
- Missing or malformed file upload returns 400
- Rotation angle not one of 90/180/270 returns validation error
- File too large may result in timeout or rejection
- Payment failure via x402 prevents processing

## How this service works

Rotate an image by 90/180/270 degrees

## Output

Returns the rotated image file as binary output, reoriented by the specified angle (90, 180, or 270 degrees) relative to the original.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "file"
 ],
 "properties": {
  "file": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "string",
 "format": "binary",
 "description": "The processed file (a ZIP for multi-file outputs)."
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pixo-tools-image-rotate-2e01c3db/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)
