Use when you have an identifier and need receipt records, receipt fields, tags, profile summary, or delegated context. In the reuse-first flow, call this after neus_proofs_check when you need details beyond yes/no eligibility.
In MCP, Proof Receipt is the tool-facing trust receipt record. In user-facing replies, summarize the result in plain language and link only real receipt URLs returned by NEUS.
| Auth | Visibility |
|---|
| None | Public-scope view |
| Bearer | Can include private receipts for that account (Auth) |
Common Reads
| Need | Use |
|---|
| Show prior checks | Read recent receipts for the account |
| Reuse assistant context | Filter by tags such as memory, rules, or instruction |
| Confirm an agent handoff | Include agentWallet for delegated reads |
| Continue a session | Filter by the tags your app saved on earlier receipts |
Keep tag values short and product-facing in your own app. Avoid exposing private workflow names in assistant replies.
{
"identifier": "0x...",
"limit": 25,
"offset": 0,
"tags": "memory,rules,instruction",
"agentWallet": "0x..."
}
| Field | Notes |
|---|
identifier | EVM, Solana base58, did:pkh:... |
tags | Comma-separated receipt tag filter |
agentWallet | Delegation (x-agent-wallet) |
When identifier is a DID, NEUS resolves the DID to its native account. Non-EVM signing and account context still use CAIP-2 chain; see CAIP-380 Portable Proof.
Response
Receipt records, receipt fields, profileSummary, and pagination. Follow the live tool response. Tags and receipt bodies come from this call.
profileSummary.proofsSummary uses the same compact summary shape as the hosted profile context:
| Field | Meaning |
|---|
total | Total receipts known for the profile summary |
embeddedCount | Receipt references included in the profile document |
isTruncated | true when more receipts exist than the embedded profile references |
byVerifier | Counts by verifier id |
latestByVerifier | Latest receipt pointer by verifier id |
latestByCategory | Latest receipt pointer grouped by verifier category |
latestByScope | Latest receipt pointer grouped by verifier id and scope |
Use the paginated proofs list for full receipt history. Treat the summary as a fast profile snapshot, not a replacement for pagination.
Assistant Output
Do:
NEUS Verify
Status: Passed
Receipt: Existing trust receipt accepted
Next: Continue
Avoid raw JSON, private implementation tags, or guessed receipt URLs.
Next
Last modified on June 9, 2026