Digital Footprint checks Adobe from an email address as part of every lookup, alongside 886+ other platforms, breach history and public web mentions - one request, one shape of answer. A hit means an account exists for that input; account contents are never collected.
Instant tier for email address lookups - answered in well under a second
Adobe is checked from an email address. The response says whether that address has a Adobe account - registered: true or registered: false - with the moment that was established in checkedAt. A username on its own cannot reach Adobe, so username lookups do not include it.
Adobe is in the instant tier: with ?instant=true it is among the first platforms answered, in well under a second. On a full lookup it is checked alongside every other platform and streamed as it lands.
If Adobe blocks the check, times out, or answers ambiguously, it is omitted from results[] entirely rather than returned as registered: false. Absence from the response means "unconfirmed", never "no account".
curl -X POST "https://api.digifootprint.dev/v1/lookup?wait=true" \
-H "Authorization: Bearer dfp_your_key" \
-H "Content-Type: application/json" \
-d '{"query": "someone@example.com"}'{
"platform": "adobe",
"registered": true,
"checkedAt": "2026-08-30T01:50:28.095Z"
}The full response shape - breaches, web mentions, matches versus socialMatches, and what method means - is in running a lookup.
Every one of these is checked in the same request as Adobe.
?instant=true it is answered in well under a second. A full lookup streams it as soon as it lands.