$0.005
per call · USD Coin on Base
JSON Web Key (JWK) inspector — validate bounded public RSA, EC, or Ed25519 keys and calculate RFC 7638 SHA-256 thumbprints without ownership or trust claims.
Endpoint
POST https://artifact-inspector.use.x402atlas.com/jwk2
Calls / 30d
1
Unique payers / 30d
Sep 1
Last called
exact
Payment scheme
Call this service
import { wrapFetchWithPayment } from "@x402/fetch";
import { privateKeyToAccount } from "viem/accounts";
const account = privateKeyToAccount(process.env.PRIVATE_KEY);
const fetchWithPay = wrapFetchWithPayment(fetch, account);
const res = await fetchWithPay("https://artifact-inspector.use.x402atlas.com/jwk", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
"jwk": {
"alg": "RS256",
"e": "AQAB",
"key_ops": [
"verify"
],
"kid": "2011-04-29",
"kty": "RSA",
"n": "0vx7agoebGcQSuuPiLJXZptN9nndrQmbXEps2aiAFbWhM78LhWx4cbbfAAtVT86zwu1RK7aPFFxuhDR1L6tSoc_BJECPebWKRXjBZCiFV4n3oknjhMstn64tZ_2W-5JsGY4Hc5n9yBXArwl93lqt7_RN5w6Cf0h4QyQ5v-65YGjQR0_FDW2QvzqY368QQMicAtaSqzs8KJZgnYb9c7d0zgdAZHzu6qMQvRL5hajrn1n91CbOpbISD08qNLyrdkt-bFTWhAI4vMQFh6WeZu0fM4lFd2NcRwr3XPksINHaQ-G_xBniIqbw0Ls1jF44-csFCur-kEgU8awapJzKnqDKgw",
"use": "sig"
}
}),
});
const data = await res.json();curl -X POST \
"https://artifact-inspector.use.x402atlas.com/jwk" \
-H "Content-Type: application/json" \
-d '{"jwk":{"alg":"RS256","e":"AQAB","key_ops":["verify"],"kid":"2011-04-29","kty":"RSA","n":"0vx7agoebGcQSuuPiLJXZptN9nndrQmbXEps2aiAFbWhM78LhWx4cbbfAAtVT86zwu1RK7aPFFxuhDR1L6tSoc_BJECPebWKRXjBZCiFV4n3oknjhMstn64tZ_2W-5JsGY4Hc5n9yBXArwl93lqt7_RN5w6Cf0h4QyQ5v-65YGjQR0_FDW2QvzqY368QQMicAtaSqzs8KJZgnYb9c7d0zgdAZHzu6qMQvRL5hajrn1n91CbOpbISD08qNLyrdkt-bFTWhAI4vMQFh6WeZu0fM4lFd2NcRwr3XPksINHaQ-G_xBniIqbw0Ls1jF44-csFCur-kEgU8awapJzKnqDKgw","use":"sig"}}' \
-H "X-PAYMENT: <signed x402 payment>"Example response
{
"algorithm_version": "rfc7638-public-jwk-inspect-v1",
"key_count": 1,
"keys": [
{
"alg": "RS256",
"bits": 2048,
"curve": "",
"key_ops": [
"verify"
],
"kid": "2011-04-29",
"kty": "RSA",
"thumbprint_sha256": "NzbLsXh8uDCcd-6MNwXF4W_7noWXFZAfHkxZsRGC9Xs",
"use": "sig",
"warnings": []
}
],
"kind": "single",
"operation": "jwk-inspect",
"warnings": [
"JWK metadata and thumbprints do not establish protocol suitability, key ownership, identity, or trust."
]
}Payment details
0x8c128f1ee62bb5e47867cfbae2ad89be325df1b2USD Coin · 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913Is this your API?
Pin it to the top of Search & Web and the homepage with a featured placement.
More from Artifact Inspector & similar services
Artifact Inspector · JWT
artifact-inspector.use.x402atlas.com
JSON Web Token (JWT) decoder — parse an unverified compact JWS header and claims and evaluate advisory NumericDate times without signature verification or URL fetching.
Artifact Inspector · File
artifact-inspector.use.x402atlas.com
File type and MIME/media type inspector — identify bounded content by magic bytes and return SHA-256, size, and extension consistency without unpacking, malware scanning, or safety claims.
Artifact Inspector · CSR
artifact-inspector.use.x402atlas.com
PKCS#10 certificate signing request (CSR) inspector — parse requested identities and public-key metadata, calculate a fingerprint, and check the included self-signature without CA approval claims.