Build AI agents with 40+ production APIs — crypto wallets, web scraping, code execution, screenshots, DNS, and more. One API key, zero dependencies.
# Get your free API key (200 credits, no signup)
curl -s -X POST https://agent-gateway-kappa.vercel.app/api/keys/create
# Set your key
export FROSTBYTE_KEY="gw_your_key_here"
# Run the Python agent
python3 agent.py
# Or the Node.js agent
node agent.mjs| File | Description |
|---|---|
agent.py |
Python AI agent — geo lookup, crypto prices, code execution, web scraping |
agent.mjs |
Node.js AI agent — same features, zero dependencies |
monitor.py |
Website monitor — screenshots + uptime checks on a schedule |
crypto-tracker.mjs |
Live crypto portfolio tracker with price alerts |
.env.example |
Environment variable template |
Your single API key gives you access to 40+ services:
| Category | Services |
|---|---|
| Crypto & DeFi | Wallet creation, token prices, DeFi trading, on-chain analytics |
| Web Tools | Screenshots, web scraping, DNS lookup, WHOIS, URL shortener |
| Developer | Code execution (Python/JS/Bash), PDF generation, data conversion |
| AI Infrastructure | Memory store, LLM router, agent registry, task scheduling |
| Security | Address poisoning detection, contract deployment, identity DIDs |
curl "https://agent-gateway-kappa.vercel.app/v1/agent-geo/geo/8.8.8.8" \
-H "Authorization: Bearer $FROSTBYTE_KEY"curl "https://agent-gateway-kappa.vercel.app/v1/crypto-feeds/api/prices" \
-H "Authorization: Bearer $FROSTBYTE_KEY"curl "https://agent-gateway-kappa.vercel.app/v1/agent-screenshot/api/screenshot?url=https://example.com" \
-H "Authorization: Bearer $FROSTBYTE_KEY" -o screenshot.pngcurl -X POST "https://agent-gateway-kappa.vercel.app/v1/agent-coderunner/api/execute" \
-H "Authorization: Bearer $FROSTBYTE_KEY" \
-H "Content-Type: application/json" \
-d '{"language": "python", "code": "print(sum(range(100)))"}'- API Catalog — Browse all 40+ services
- Interactive Playground — Try APIs in your browser
- Swagger Docs — Full API reference
- MCP Server — Use with Claude Desktop, Cursor, Windsurf
- SDK — JavaScript + Python SDK
MIT