Skip to content

Robocular/ai-agent-starter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AI Agent Starter Kit

Build AI agents with 40+ production APIs — crypto wallets, web scraping, code execution, screenshots, DNS, and more. One API key, zero dependencies.

Quick Start

# 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

What's Included

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

Available APIs

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

API Examples

IP Geolocation

curl "https://agent-gateway-kappa.vercel.app/v1/agent-geo/geo/8.8.8.8" \
  -H "Authorization: Bearer $FROSTBYTE_KEY"

Crypto Prices

curl "https://agent-gateway-kappa.vercel.app/v1/crypto-feeds/api/prices" \
  -H "Authorization: Bearer $FROSTBYTE_KEY"

Take a Screenshot

curl "https://agent-gateway-kappa.vercel.app/v1/agent-screenshot/api/screenshot?url=https://example.com" \
  -H "Authorization: Bearer $FROSTBYTE_KEY" -o screenshot.png

Execute Code

curl -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)))"}'

Resources

License

MIT

About

AI Agent Starter Kit — Build agents with 40+ production APIs. IP geolocation, crypto prices, code execution, web scraping, screenshots, DNS, and more. One API key, zero dependencies.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors