List Archived Evidence Reports
audit_entriesList the immutable audit-archive entries for the caller's API key: every Montgomery evidence report the key generated (text or json), newest first, each with its entry id, generation timestamp, DOT number, scoring date, methodology version and the SHA-256 of the archived report text. Requires a paid CarrierScore API key.
Use it to answer "which carriers did we generate evidence for, and when?" and to find the entry id to cite or verify for a given carrier and date. Monitor keys see the last 90 days; Compliance keys see everything ever archived.
Args:
dot_number (optional): only entries for this US DOT number
since (optional): YYYY-MM-DD; only entries generated on/after this date (UTC)
limit (optional): 1-500, default 50
Returns JSON: { tier, retention_days, total_entries, matched, count, entries: [{ entry_id, generated_at, dot_number, sha256, format_requested, scored_as_of, score_version }] }.
Errors: 403 without a paid key; 400 if since is malformed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max entries to return (default 50) | |
| since | No | Only entries generated on/after this date (YYYY-MM-DD, UTC) | |
| dot_number | No | US DOT number of the carrier, digits only (e.g. "1234567") |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tier | Yes | Caller's tier (monitor / compliance) | |
| count | Yes | Entries returned (<= limit) | |
| entries | Yes | Newest first | |
| matched | Yes | Entries matching the filters within the retention window | |
| total_entries | Yes | All entries ever archived for this key | |
| retention_days | Yes | Retrieval window in days (monitor 90; compliance null = unlimited) |