# KiHustle Image Dimension Checker

> KiHustle Image Dimension Checker is a paid API for AI agents from kihustle.tech, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Checks and returns the pixel dimensions (width and height) of an uploaded image file

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/image-dimension-checker
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kihustle-image-dimension-checker-2469a65f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lcRwUilWwfq41SFOSKqmN

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 kihustle-image-dimension-checker-2469a65f -d '<json body>'
```

Example prompt: Can you check the pixel dimensions of this image file — it's called banner.png — and tell me the width and height?

## When to prefer this

Use this endpoint when you need a lightweight, low-cost way to programmatically extract pixel dimensions from an image file without spinning up a full image processing library. Suitable for validation pipelines, pre-upload checks, or content auditing workflows where image size must be confirmed cheaply and quickly.

## Known failure modes

- Invalid or corrupt image data returns an error status
- Missing required 'data' or 'filename' fields may result in a failed request
- Unsupported image formats may not be parsed correctly
- Large image files may cause timeouts or processing failures
- Non-image binary data passed as input may return unexpected results

## How this service works

Kostenlose Guides, Solo-Playbooks und Artikel zu KI, Automation und Side Hustles — für Menschen, die mit echten Systemen online Einkommen aufbauen wollen. Transparent finanziert über faire Affiliate-Links.

## Output

Returns a JSON object with a result field (e.g. 'processed') and a status field (e.g. 'success'), indicating the image was analyzed. Dimension values such as width and height are expected in the result payload based on the endpoint's stated purpose.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "string"
  },
  "filename": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": "processed",
  "status": "success"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kihustle-image-dimension-checker-2469a65f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from kihustle.tech](https://www.zero.xyz/host/kihustle.tech/llms.txt)
