mirror of
https://github.com/mouna23/OSINT-with-LLM.git
synced 2026-02-12 12:42:44 +00:00
6 lines
140 B
Python
6 lines
140 B
Python
import requests
|
|
|
|
def search_breaches(email):
|
|
url = f"https://leakcheck.io/api/public?check={email}"
|
|
return requests.get(url).json()
|