Get Evidence Bundle
bundle.getRetrieve an evidence bundle's metadata: check if complete, notarized, or under legal hold. Returns a signed action receipt.
Instructions
Retrieve metadata for an evidence bundle (ev_...) owned by your API key. Free — no credits consumed. Use for quick status/metadata lookups such as checking if a bundle is complete, finding its notarization status, or viewing retention/legal hold info. For deep cryptographic integrity verification (hash + signature + artifact checks), use bundle.verify instead. Also returns a signed action receipt (rcpt_...) binding this lookup to the bundle manifest — list with receipt.list, verify with receipt.verify. Returns: { bundle_id, source_url, mode, status: "pending"|"complete"|"failed", manifest_sha256, manifest_signature, signer_address, attestation_tx, attestation_at, eas_uid, parent_bundle_id, superseded_by, legal_hold: boolean, retention_until, created_at, receipt: ActionReceipt|null } Example prompts:
"Show me the metadata for bundle ev_550e8400."
"Check the status and notarization info of my evidence bundle."
"Get me the details of bundle [ev_id] — is it complete?"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| bundle_id | Yes | Evidence bundle ID (ev_...) returned by extract or bundle.notarize. Example: "ev_550e8400-e29b-41d4-a716-446655440000" |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| mode | Yes | ||
| status | Yes | ||
| eas_uid | Yes | ||
| receipt | Yes | ||
| bundle_id | Yes | ||
| created_at | Yes | ||
| legal_hold | Yes | ||
| source_url | Yes | ||
| superseded_by | Yes | ||
| attestation_at | Yes | ||
| attestation_tx | Yes | ||
| signer_address | Yes | ||
| manifest_sha256 | Yes | ||
| retention_until | Yes | ||
| parent_bundle_id | Yes | ||
| manifest_signature | Yes |