# KiHustle JWT Decoder

> KiHustle JWT Decoder is a paid API for AI agents from kihustle.tech, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Decodes and extracts the claims payload from a JWT (JSON Web Token) string

## Facts

- Endpoint: POST https://kihustle.tech/bot-bazaar/api/v1/jwt-decoder
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kihustle-jwt-decoder-13a4cba1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uqDs6US9siauqbPbhvtLE

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-jwt-decoder-13a4cba1 -d '<json body>'
```

Example prompt: Can you decode this JWT for me and show me what claims are inside it? Here's the token: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call JWT decoding service without standing up your own infrastructure. Useful for agents that occasionally need to inspect token contents at runtime without bundling a JWT library. At $0.002 per call it is cost-effective for low-volume or ad-hoc token inspection tasks.

## Known failure modes

- Malformed or non-JWT string causes parsing failure
- Empty or missing token field returns error
- Truncated JWT with missing segments may fail decoding
- Very large tokens may cause processing issues
- Network or payment authorization failures return 402

## 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 the decoded JWT broken into its components — typically the header (algorithm, token type), payload (claims such as sub, iat, exp, email, roles), and an indication of processing success. The response is a JSON object with result and status fields.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "token": {
   "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-jwt-decoder-13a4cba1/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)
