# KiHustle Twitter Card Image Checker

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

Checks and validates Twitter Card images by verifying dimensions and processing status for a given width and height

## Facts

- Endpoint: POST https://kihustle.tech/nexus/api/v1/twitter-card-image-check
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kihustle-twitter-card-image-checker-35ff0c39
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XKeLhGaVBTp8A_ajuExHH

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-twitter-card-image-checker-35ff0c39 -d '<json body>'
```

Example prompt: Can you check whether my Twitter card image dimensions of 1200 width and 630 height are valid and will be processed correctly?

## When to prefer this

Use this endpoint when you need a lightweight, low-cost check to confirm that specific Twitter Card image dimensions are valid before publishing content. Prefer this over manual inspection or full image download-and-analysis pipelines when only dimension validation is needed.

## Known failure modes

- Missing or non-integer width/height values may cause validation failure
- Dimensions outside Twitter's accepted ranges may return a non-success status
- Network or service errors may return unexpected response structures
- Very large or zero-value dimension inputs may 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 (e.g. 'processed') and a 'status' field (e.g. 'success'), indicating whether the provided image dimensions are valid and accepted for Twitter Card use.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "width": {
   "type": "integer"
  },
  "height": {
   "type": "integer"
  }
 }
}
```

## 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-twitter-card-image-checker-35ff0c39/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)
