Metadata-Version: 2.4
Name: botindex
Version: 1.0.0
Summary: Official Python SDK for BotIndex — crypto intelligence, compliance OSINT, agent discovery
Project-URL: Homepage, https://botindex.dev
Project-URL: Documentation, https://api.botindex.dev/docs
Project-URL: Repository, https://github.com/Cyberweasel777/botindex-python
Project-URL: Issues, https://github.com/Cyberweasel777/botindex-python/issues
Author-email: BotIndex <support@botindex.dev>
License: MIT
Keywords: agent-discovery,api,compliance,crypto,defi,mcp,osint,prediction-markets,trading,whale-tracking
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Office/Business :: Financial
Requires-Python: >=3.9
Requires-Dist: httpx>=0.24.0
Requires-Dist: pydantic>=2.0.0
Description-Content-Type: text/markdown

# BotIndex Python SDK

Official Python SDK for BotIndex — whale tracking, prediction markets, crypto signals.

## Install

```bash
pip install botindex
```

## Quick Start

```python
from botindex import BotIndex

bot = BotIndex(api_key="botindex_sk_...")

# Whale alerts (free)
whales = bot.hyperliquid.whale_alerts()
print(whales.summary.top_positions)

# Full data ($0.05)
full = bot.hyperliquid.whale_alerts_full()
print(full.top_positions)

# All endpoints
signals = bot.v1.signals()
zora = bot.zora.trending_coins()
```

## Get API Key

Free tier: 100 requests/day
```bash
curl https://api.botindex.dev/api/botindex/keys/register?plan=free
```

## Links

- Docs: https://botindex.dev
- API Reference: https://api.botindex.dev/docs
