Skip to main content
Get headline counts for the entire VantaPrism dataset — total victims, credentials, cards, wallets, cookies, and the most recently ingested stealer family/version/date. Use this to power a “dataset size” widget or to monitor ingestion freshness.

Request

GET /v1/stats/overview · Required scope: none — any valid key · Not paginated Response is not tier-masked and is cached for 15 minutes.

Example request

curl -X GET https://api.vantaprism.me/v1/stats/overview \
  -H "api-key: $VANTAPRISM_API_KEY"

Response

200 OK — a single StatsOverview object.
{
  "data": {
    "total_victims": 184213902,
    "total_credentials": 612048771,
    "total_cards": 4128933,
    "total_wallets": 1839204,
    "total_cookies": 2918433021,
    "latest_stealer_family": "LummaC2",
    "latest_stealer_version": "4.2",
    "latest_infection_date": "2026-06-15T02:11:08Z"
  },
  "meta": {
    "request_id": "req_01HZXK3Q7N8YV6F3M2P9JABCDE",
    "took_ms": 4.2,
    "tier": "free",
    "masked_fields": []
  }
}
FieldDescription
total_victimsTotal distinct victims in the dataset
total_credentialsTotal stolen login/password records
total_cardsTotal stolen payment-card records
total_walletsTotal cryptocurrency wallet records
total_cookiesTotal stolen browser cookies
latest_stealer_familyFamily of the most recently ingested log
latest_stealer_versionVersion of the most recently ingested log
latest_infection_dateTimestamp of the most recently ingested infection

Not paginated

This endpoint always returns a single object. cursor/limit/sort_direction do not apply.

Errors

See Errors for the full catalog. Only the standard auth and rate-limit errors apply — there is no endpoint-specific validation.

Tier notes

This endpoint is not tier-masked — all tiers receive identical values. Responses are cached for 15 minutes, so took_ms will typically be very low.