§ docs · verify
Verify & attest.
Developer-facing verification reference. Code-search-friendly. The canonical, long-form guide lives at /proof/verify.
Canonical: /proof/verify →Ed25519 + secp256k1 · equal
Nukez receipts are independently verifiable. This page is a terse code-oriented reference for developers who need to integrate verification into an automated system. For the full narrative walk — including why each step matters — see /proof/verify.
Via SDK
from nukez import Client
async with Client.from_env() as nkz:
ok = await nkz.verify(receipt_id="A7F1")
assert ok.sha_match
assert ok.merkle_match
assert ok.anchored_on_solana
assert ok.signer in ("ed25519", "secp256k1")Via HTTP
$ curl -sS https://api.nukez.xyz/v1/storage/verification-bundle?receipt_id=A7F1
Via CLI
$ nukez verify A7F1
verified§ do the long version
