Documentation & Resources
Everything you need to master blockchain monitoring with Ekko.
Quick Start
Get up and running in minutes
👤
1
Sign Up
Create your free account in seconds
✍️
2
Create Alert
Type what you want to monitor in plain English
🔔
3
Get Notified
Receive real-time alerts when conditions are met
🚀
Getting Started
Everything you need to begin monitoring blockchain
🎯
Alert Creation
Master the art of creating powerful alerts
🔌
API Reference
Integrate Ekko with your applications
📦
SDKs & Tools
Libraries and tools for developers
🔗
Integrations
Connect Ekko with your favorite tools
💡
Best Practices
Tips and strategies for effective monitoring
Code Examples
Get started with our SDKs
# Install the Ekko Python SDK
pip install ekko-sdk
# Initialize the client
from ekko import EkkoClient
client = EkkoClient(api_key="your_api_key")
# Create an alert in plain English
alert = client.alerts.create(
query="Alert me when AVAX price goes above $50",
channels=["email", "slack"]
)
# List your alerts
alerts = client.alerts.list()
for alert in alerts:
print(f"{alert.id}: {alert.query}")
Additional Resources
More ways to learn and get help