# klymax402 User Agent Parser

> klymax402 User Agent Parser is a paid API for AI agents from klymax402.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-13).

Parses a user agent string to extract browser, OS, device info, and detect bots and mobile clients

## Facts

- Endpoint: GET https://klymax402.com/api/user-agent-parser/api/parse
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/klymax402-user-agent-parser-1238d082
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_I0uVUsvCUmrZZ-IWrl1da

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 klymax402-user-agent-parser-1238d082
```

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 the browser, OS, device type, and whether it's a bot or mobile device?

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call user agent parsing solution with no API key setup, especially in agent workflows that already use USDC-based x402 micropayment infrastructure. Ideal for one-off parsing tasks, bot detection checks, or enriching request logs with device and browser metadata without committing to a monthly subscription.

## Known failure modes

- Missing or empty userAgent parameter may return an error or empty parsed fields
- Unusual or highly custom user agent strings may not be recognized and return empty browser/OS/device objects
- Network or service downtime on klymax402.com could result in non-200 responses
- Very long user agent strings may be truncated or cause parsing errors

## How this service works

One MCP endpoint gives your AI agent access to 100 APIs -- crypto, DeFi, web, AI, finance and utilities. No API keys, USDC on Base from $0.003/call.

## Output

Returns a JSON object with parsed details including browser name/version, OS name/version, device type, a boolean isBot flag, a boolean isMobile flag, the raw user agent string, and the string length.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "userAgent": {
   "type": "string",
   "description": "The user agent string to parse"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "os": {},
  "raw": "example",
  "isBot": true,
  "device": {},
  "length": 1,
  "browser": {},
  "isMobile": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/klymax402-user-agent-parser-1238d082/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from klymax402.com](https://www.zero.xyz/host/klymax402.com/llms.txt)
