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

Decodes and validates a JWT token, returning its parsed claims and status

## Facts

- Endpoint: POST https://kihustle.tech/nexus/api/v1/jwt-decoder
- 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-jwt-decoder-c0633875
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3euIZDs3h_aV1L9b9VIa2

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

Example prompt: Can you decode this JWT for me and show me what claims are inside it: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c

## When to prefer this

Use this endpoint when you need a lightweight, pay-per-call JWT decoding service accessible via API without running your own token parsing library — especially useful in agent pipelines where you need to inspect token claims on the fly without standing up dedicated auth infrastructure

## Known failure modes

- Malformed or invalid JWT string returns an error status
- Empty token field causes a validation error
- Expired tokens may still be decoded but flagged accordingly
- Network or payment authorization failures return a 402 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 'processed' and a 'status' field of 'success', along with the decoded JWT payload including its claims (such as subject, expiration, issuer, and custom 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-c0633875/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)
