Seamlessly integrate the c99.nl API into your Python projects
Installation
pip install c99-api
Usage
# Import the package
import c99-api
# Define your API key
c99_api.key = 'your_key'
# Access list of different methods available
response = c99.list_methods()
print(response)
# Example Methods
# Phone lookup
response = c99.phonelookup(number='1234567890', json=True)
print(response)
# Email validation
response = c99.emailvalidator(email='example@example.com', json=True)
print(response)
# Port scanner
response = c99.portscanner(host='example.com', json=True)
print(response)