# Autonomy API Network Image Inspect

> Autonomy API Network Image Inspect is a paid API for AI agents from autonomy-api-network.onrender.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Inspects a base64-encoded image to extract dimensions, format, animation likelihood, and optimization recommendations.

## Facts

- Endpoint: POST https://autonomy-api-network.onrender.com/v1/image-inspect
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/autonomy-api-network-image-inspect-f9f8d961
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hg6LZOd6L-UbE-Hxj45t0

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 autonomy-api-network-image-inspect-f9f8d961 -d '<json body>'
```

Example prompt: Can you inspect this base64 image for me and tell me its dimensions, format, whether it might be animated, and any optimization tips? Here's the data URL: data:image/png;base64,iVBORw0KGgoAAAANS...

## When to prefer this

Use this endpoint when you need to quickly extract metadata from a base64-encoded image without uploading it to a storage service, or when you want to assess whether an image needs optimization before further processing or display. Ideal for pipelines that receive images as base64 blobs and need format/dimension checks programmatically.

## Known failure modes

- Invalid or malformed base64 string returns an error indicating bad input
- Unsupported image format results in a parsing failure
- Empty or missing base64 field returns a validation error
- Extremely large images may time out or exceed payload limits
- Truncated base64 data may result in partial or failed inspection

## How this service works

Inspect a base64 image for dimensions, format, likely animation, and optimization advice.

## Output

Returns image metadata including pixel dimensions (width and height), detected image format (e.g. PNG, JPEG, GIF, WebP), a flag indicating whether the image is likely animated, and actionable optimization advice such as compression recommendations or format conversion suggestions.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "base64": {
   "type": "string",
   "description": "Base64 bytes or a data URL"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "width": 1,
   "format": "png",
   "height": 1,
   "megapixels": 0,
   "likelyAnimated": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/autonomy-api-network-image-inspect-f9f8d961/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from autonomy-api-network.onrender.com](https://www.zero.xyz/host/autonomy-api-network.onrender.com/llms.txt)
