# KiHustle User-Agent Parser

> KiHustle User-Agent Parser 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).

Parses a user-agent string and returns structured information about the browser, OS, and device

## Facts

- Endpoint: POST https://kihustle.tech/api/v1/useragent-parser
- 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-user-agent-parser-78aff242
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8rl2mtLoRlhfn4svutp8M

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-user-agent-parser-78aff242 -d '<json body>'
```

Example prompt: Can you parse this user-agent string for me — 'Mozilla/5.0 (iPhone; CPU iPhone OS 16_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Mobile/15E148 Safari/604.1' — and tell me what browser, OS, and device type it represents?

## When to prefer this

Use this endpoint when you need a quick, paid micro-API to parse a user-agent string into structured browser/OS/device data without setting up your own parser library. Suitable for lightweight agent workflows that need on-demand user-agent classification at low cost per call.

## Known failure modes

- Missing or malformed user-agent string in request body returns an error
- Empty POST body may result in a generic or failed parse result
- Invalid JSON in request body causes a 400-level error
- Very obscure or custom user-agent strings may not be recognized correctly
- Payment failure via x402 protocol causes 402 response before processing

## 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 parsed outcome and a status field confirming success; expected to contain structured browser, OS, and device classification details extracted from the submitted user-agent string.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "user_agent": {
   "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-user-agent-parser-78aff242/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)
