meapi: Unofficial api for 'Me - Caller ID & Spam Blocker'
☎️ meapi is a Python3 library to identify, discover and get information about phone numbers, indicate and report spam, get and manage socials, profile management and much more.
🔐 To get started, read the Authentication guide.
📖 For a complete documentation of available functions, see the Reference.
>>️ For more information about Me® - Click here.
- Install using pip3:
pip3 install -U meapi- Install from source:
git clone https://github.com/david-lev/meapi.git
cd meapi && python3 setup.py install- Search phone numbers
- Get user full profile: profile picture, birthday, location, platform, socials and more
- Spam indication and report
- Get user social networks: facebook, instagram, twitter, spotify and more
- See how people call you
- Get mutual contacts
- See who watched your profile
- See who deleted you from his contacts book
- Get, publish and manage comments
- Report spam on phone numbers
- Read app notifications
- Change profile information
- Connect social networks (And get verified blue check)
- Upload contacts and calls history
- Block profiles and numbers
- Update your location
- Delete or suspend your account
from meapi import Me
me = Me(phone_nuber=972123456789)
# If you have official access token:
# me = Me(access_token='XXXXXXXX')
search_res = me.search_phone('+865-456-234-12'))
if search_res:
print(search_res['contact']['name'])
if search_res['contact'].get('user'):
uuid = search_res['contact']['user']['uuid']
print(me.get_profile_info(uuid))📚 For more usage examples, read the Examples page.
- Python 3.6 or higher - https://www.python.org
See the Documentation for detailed instructions
This application is intended for educational purposes only. Any use in professional manner or to harm anyone or any organization doesn't relate to me and can be considered as illegal. Me name, its variations and the logo are registered trademarks of NFO LTD. I have nothing to do with the registered trademark.
- Magisk for device rooting.
- LSPosed for xposed framework.
- TrustMeAlready to disable SSL verification.
- mitmproxy to monitor the app network requests.
- ytmusicapi for the structure of this project.
- readthedocs for hosting the docs.
