CSV exports

Stream bulk intel as CSV for spreadsheets, SIEMs, or a data warehouse. pro

Responses are text/csv streamed as an attachment. Column-level entitlements apply — a scoped key's CSV omits fields it isn't permitted to see.

Tier-1 financial extractions

GET/api/exports/tier1

One row per call carrying mule-bank / crypto / gift-card data.

Query: range/start/end, limit (1–10000).

curl -H "Authorization: Bearer $BBO_API_KEY" \
  "https://dashboard.martha-honeypot.com/api/exports/tier1?range=30d&limit=5000" \
  -o tier1.csv

Transcript list

GET/api/exports/transcripts

The call list as CSV, with the same core filters as the Transcripts endpoint.

Query: range/start/end, only_hooked, only_tier1, min_confidence.

curl -H "Authorization: Bearer $BBO_API_KEY" \
  "https://dashboard.martha-honeypot.com/api/exports/transcripts?range=7d&only_tier1=true" \
  -o calls.csv

Top-N breakdown

GET/api/exports/topn/{field}

A ranked breakdown as CSV. {field} takes the same values as the Overview top-N endpoint (impersonated_brand, payment_method, mule_bank_name, …).

Query: range/start/end, n (1–500).

curl -H "Authorization: Bearer $BBO_API_KEY" \
  "https://dashboard.martha-honeypot.com/api/exports/topn/payment_method?range=30d&n=50" \
  -o payment_methods.csv