JWT Decoder & Verifier β€” Bulk avatar

JWT Decoder & Verifier β€” Bulk

Pricing

from $0.0005 / jwt processed

Go to Apify Store
JWT Decoder & Verifier β€” Bulk

JWT Decoder & Verifier β€” Bulk

Decode JWT header and payload, and optionally verify the signature and expiry against a secret or JWKS. Debug and audit auth tokens in bulk.

Pricing

from $0.0005 / jwt processed

Rating

0.0

(0)

Developer

hiper soft

hiper soft

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

9 days ago

Last modified

Share

Decode JWT header and payload, and optionally verify the signature and expiry β€” in bulk. Debug auth tokens, inspect claims, and audit expiry across many tokens at once, with support for HMAC secrets and JWKS-based verification.

What it does

  • Decodes the header and payload of each JWT (claims, issuer, subject, audience, timestamps).
  • Flags expired tokens.
  • Optionally verifies the signature against a secret / public key, or a JWKS endpoint (RS256/ES256).

Use cases

  • Backend debugging β€” inspect what a token actually contains.
  • Auth audits β€” check claims and expiry across many tokens.
  • Integration testing β€” verify tokens from an identity provider.

Input

{ "tokens": ["eyJhbGci..."], "secret": "", "jwksUri": "" }
FieldTypeDescription
tokensarrayJWTs to decode/verify.
secretstringOptional HMAC secret or PEM public key.
jwksUristringOptional JWKS endpoint for RS/ES tokens.

Output

{ "algorithm": "HS256", "issuer": "acme", "expiresAt": "2026-01-01T00:00:00.000Z", "expired": true, "signatureVerified": null, "valid": false, "payload": { "sub": "1234567890" } }

Output schema

FieldTypeDescription
validbooleanSignature verified AND not expired.
expiredbooleanWhether the token is past its exp.
algorithmstringSigning algorithm.

FAQ

Can I verify signatures? Yes β€” provide a secret/public key, or a jwksUri for provider-signed tokens.

Can I automate it? Yes β€” via integrations on the Apify platform and the Apify API.

Notes

Original clean-room implementation. Tokens are processed only to decode/verify them.