MCPcopy Create free account
hub / github.com/CScorza/IntelOSINT / check_revolut

Method check_revolut

IntelOSINT.py:14044–14051  ·  view source on GitHub ↗
(self, target)

Source from the content-addressed store, hash-verified

14042 return main_img, info, tg_link, wa_link
14043
14044 def check_revolut(self, target):
14045 try:
14046 r = requests.get(f"https://revolut.me/api/web-profile/{target}", headers={"User-Agent":"Mozilla/5.0"}, timeout=5)
14047 if r.status_code == 200:
14048 d = r.json()
14049 return {"Name": f"{d.get('firstName')} {d.get('lastName')}", "Tag": f"@{d.get('revtag')}", "Country": d.get('country')}, 200
14050 return {}, 404
14051 except: return {}, 404
14052
14053 def check_paypal(self, target):
14054 try:

Callers 1

searchFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected