Installation
Installation
Section titled “Installation”HydraSkill provides official SDKs for Python, Node.js, and Go. Choose your language:
Python
Section titled “Python”pip install hydraskillRequires Python 3.8+. Compatible with requests, httpx, aiohttp, and playwright.
Node.js
Section titled “Node.js”npm install hydraskillRequires Node.js 18+. Works with axios, fetch, puppeteer, and playwright.
go get github.com/hydraskill/go-sdkRequires Go 1.21+.
CLI (Optional)
Section titled “CLI (Optional)”For quick testing and debugging:
npx hydraskill initThis creates a .hydraskill.yml config file and validates your API key.
Get Your API Key
Section titled “Get Your API Key”- Create an account (free tier available)
- Go to Dashboard → API Keys
- Click Create Key
- Copy the key — it’s shown only once
export HYDRASKILL_API_KEY="sk-your-key-here"Verify Installation
Section titled “Verify Installation”from hydraskill import ProxyClient
client = ProxyClient() # reads HYDRASKILL_API_KEY from envstatus = client.health_check()print(status) # {'status': 'ok', 'latency_ms': 45}Next Steps
Section titled “Next Steps”→ Quick Start Guide — make your first proxy request