# KiHustle Color Contrast Checker

> KiHustle Color Contrast 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 the color contrast ratio between a foreground and background color pair for accessibility compliance

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/color-contrast-checker
- 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-color-contrast-checker-87d7b48c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KeVbGEqYKUiKoNyUWqCIR

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-color-contrast-checker-87d7b48c -d '<json body>'
```

Example prompt: Can you check if white text (#FFFFFF) on a dark blue background (#1A237E) has enough contrast to be readable and accessible?

## When to prefer this

Choose this endpoint when you need a quick, low-cost programmatic check of color contrast between two colors, particularly in automated design pipelines, accessibility audits, or CI/CD workflows where you want to flag potentially inaccessible color combinations without manual inspection.

## Known failure modes

- Invalid or missing color values (e.g. malformed hex codes) may cause processing errors
- Missing foreground or background fields returns an error
- Non-color string inputs may cause unexpected results
- Service may return generic success without detailed WCAG level breakdown

## 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 indicating whether the contrast check was processed successfully, with a result field and status field. The response confirms computation completed but may not explicitly return a numeric contrast ratio or WCAG pass/fail level based on the minimal schema shown.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "background": {
   "type": "string"
  },
  "foreground": {
   "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-color-contrast-checker-87d7b48c/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)
