# Delx JWT Claims Audit

> Delx JWT Claims Audit is a paid API for AI agents from api.delx.ai, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Audits JWT claim names, expiry, and identifiers at a specified reference time without exposing claim values, returning deterministic machine-readable JSON.

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/jwt-claims-audit
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/delx-jwt-claims-audit-cde0d38c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qttS-KGbX0m82LdXkBJZd

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 delx-jwt-claims-audit-cde0d38c -d '<json body>'
```

Example prompt: Can you audit the claims in this JWT — check the claim names, expiry status, and identifiers as of epoch 1720000000, without returning any of the actual claim values?

## When to prefer this

Choose this endpoint when you need a stateless, privacy-preserving preflight audit of JWT claim metadata — specifically when you must not expose claim values, when you need deterministic expiry evaluation at an explicit reference time, or when integrating a lightweight JWT structure check into an enterprise agent workflow before a security, policy, or access-control decision.

## Known failure modes

- Missing or malformed claims object returns a validation error
- Invalid or missing now_epoch causes evaluation to fail or default unexpectedly
- Malformed JWT structure may result in parse errors
- Payment failure via x402 prevents execution
- Empty claims object returns minimal audit with no fields found

## How this service works

Audit JWT claim names, expiry, and identifiers at an explicit reference time without returning claim values. Use it as a bounded preflight or analysis step inside an enterprise agent workflow before data, policy, integration, security, or commercial decisions reach production. Returns deterministic machine-readable JSON for $0.003 USDC via x402 on Base. Execution is first-party, local-only, stateless, memory-only, and has no paid upstream or input retention. Results are advisory; the caller rem…

## Output

Returns deterministic machine-readable JSON listing the JWT claim names present, expiry evaluation result relative to the provided reference epoch, and identified identifier fields — without revealing any claim values. No data is retained or logged.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "claims": {
   "type": "object",
   "description": "Input field: claims."
  },
  "now_epoch": {
   "type": "number",
   "description": "Input field: now_epoch."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "schema": "delx/util-jwt-claims-audit/v1",
  "expired": false,
  "has_jti": false,
  "claim_names": [
   "aud",
   "exp",
   "iat",
   "iss",
   "sub"
  ],
  "valid_shape": true,
  "missing_claims": [],
  "values_returned": false,
  "evaluated_at_epoch": 1785940000
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/delx-jwt-claims-audit-cde0d38c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.delx.ai](https://www.zero.xyz/host/api.delx.ai/llms.txt)
