# 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-15).

Parses a User-Agent string and returns structured information about the browser, OS, and device type.

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/useragent-parser
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kihustle-user-agent-parser-85f1d0bb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DoGch_YbSeTWV-zcCYraZ

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-85f1d0bb -d '<json body>'
```

Example prompt: Can you parse this user agent string for me — 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36' — and tell me what browser, OS, and device type it is?

## When to prefer this

Choose this endpoint when you need a quick, low-cost ($0.001 USDC) API call to parse and classify a single user agent string, particularly in automation pipelines or agent workflows that need browser/OS/device context without maintaining a local parsing library.

## Known failure modes

- Missing or empty user_agent field returns an error
- Malformed or non-standard user agent strings may yield incomplete parsed data
- Unknown or novel user agent formats may not be fully classified
- Network timeouts or payment failures may prevent a response

## 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. The parsed data is expected to include browser, OS, and device classification derived 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-85f1d0bb/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)
