mirror of
https://github.com/mouna23/OSINT-with-LLM.git
synced 2026-07-10 18:37:03 +02: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()
|