# KiHustle JWT Decoder API

> KiHustle JWT Decoder API 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 parses a JWT (JSON Web Token) to extract its header, payload, and claims without verifying the signature

## Facts

- Endpoint: POST https://kihustle.tech/agents/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-api-2d1241c3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_A2T1M_mYkY4UcJcI-4m1v

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-api-2d1241c3 -d '<json body>'
```

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

## When to prefer this

Use this endpoint when you need a lightweight, pay-per-call JWT decoding service accessible via the x402 micropayment protocol without setting up a local JWT library. Prefer it when operating in an agent workflow that already uses x402-compatible infrastructure and needs to inspect token claims on the fly. Not suitable for cryptographic signature verification — use a dedicated auth library for that.

## Known failure modes

- Malformed or non-JWT string input returns an error or unexpected result
- Missing or empty token field results in a validation error
- Tokens with non-standard encoding may fail to parse correctly
- Service may return a generic success/processed status even if the token is structurally invalid, making error detection ambiguous based on the minimal response schema

## 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

A JSON response containing the decoded JWT broken into its constituent parts — typically the header (algorithm, token type), payload (all embedded claims such as sub, iat, exp, roles, and custom fields), and a status indicator confirming successful processing.

## 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-api-2d1241c3/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)
