# 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 dimensions (width and height) of an image file submitted as data or by filename

## Facts

- Endpoint: POST https://kihustle.tech/bot-bazaar/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-35d3ebc4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0fhW87DiJ65eDBAjm1Rnv

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-35d3ebc4 -d '<json body>'
```

Example prompt: Can you check the dimensions of this image file called 'banner.png' and tell me the width and height in pixels?

## When to prefer this

Use this endpoint when you need a lightweight, pay-per-call image dimension extraction without setting up a full image processing library or pipeline. Ideal for one-off checks or automation workflows where you need quick pixel dimension lookups for a single image file.

## Known failure modes

- Invalid or corrupt image data returns an error status
- Missing required 'data' or 'filename' field causes a 400-level error
- Unsupported image format may result in a failed processing response
- Oversized image payload may time out or be rejected

## 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 indicating the processed image dimensions and a status field confirming success. Typically includes width and height values extracted from the submitted image data or file.

## 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-35d3ebc4/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)
