# PayWeave Cloudflare Image Info

> PayWeave Cloudflare Image Info is a paid API for AI agents from cloudflare.payweave.services, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Fetches metadata (format, dimensions, file size) for a publicly accessible image URL via Cloudflare's edge network.

## Facts

- Endpoint: POST https://cloudflare.payweave.services/images/info
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/payweave-cloudflare-image-info-c47d66c1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_D8KDa_gS9djvNHETjMZq0

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 payweave-cloudflare-image-info-c47d66c1 -d '<json body>'
```

Example prompt: Can you check that image at https://example.com/photo.jpg and tell me its format, dimensions, and file size?

## When to prefer this

Use this endpoint when you need lightweight image metadata (dimensions, format, file size) from a public URL without downloading or processing the full image locally. Prefer it over vision/analysis endpoints when you only need structural metadata, not image content understanding. It is cost-effective at $0.001 per call and runs on Cloudflare's global edge for low-latency responses.

## Known failure modes

- URL is not publicly accessible — returns error or empty response
- Image exceeds 15 MB limit — rejected or truncated
- URL does not point to a valid image — format detection fails
- Network timeout reaching the remote URL from Cloudflare edge
- Unsupported image format — may return partial or missing fields

## How this service works

Browser rendering, transcription, image, vision, and speech on Cloudflare&#39;s edge.

## Output

Returns a JSON object with the detected MIME type (format), width and height in pixels, and source file size in bytes. For SVG images, only the format field is guaranteed; width, height, and file_size may be absent.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "source_url"
 ],
 "properties": {
  "source_url": {
   "type": "string",
   "description": "Public URL of the image to inspect (max 15 MB)."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "format"
 ],
 "properties": {
  "width": {
   "type": "integer",
   "description": "Width in pixels (absent for SVG)"
  },
  "format": {
   "type": "string",
   "description": "Detected image MIME type"
  },
  "height": {
   "type": "integer",
   "description": "Height in pixels (absent for SVG)"
  },
  "file_size": {
   "type": "integer",
   "description": "Source file size in bytes (absent for SVG)"
  }
 },
 "description": "Image metadata",
 "additionalProperties": false
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/payweave-cloudflare-image-info-c47d66c1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cloudflare.payweave.services](https://www.zero.xyz/host/cloudflare.payweave.services/llms.txt)
