DEV Community

Fred Santos
Fred Santos

Posted on

IteraTools Hits 50 Tools: AI Chat, SMS, Document Convert & GitHub Integration

We just shipped our 50th tool on IteraTools — a pay-per-use API toolkit for AI agents. Here's what's new:

🤖 POST /ai/chat — LLM Proxy (The Milestone Tool!)

Chat with GPT-4o-mini, Claude Haiku, or Gemini Flash — all under one API key.

curl -X POST https://api.iteratools.com/ai/chat \
  -H "Authorization: Bearer YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"message": "Explain recursion in one sentence", "model": "gpt-4o-mini"}'
Enter fullscreen mode Exit fullscreen mode

Response:

{
  "ok": true,
  "response": "Recursion is a function calling itself until a base case stops it.",
  "model": "gpt-4o-mini",
  "provider": "openai",
  "tokens": {"input": 14, "output": 14, "total": 28}
}
Enter fullscreen mode Exit fullscreen mode

Cost: $0.005/message. Switch models with a single field.

📱 POST /sms/send

Send SMS via Twilio. USA/CA: $0.012, International: $0.018.

📄 POST /document/convert

Convert DOCX → PDF, Markdown → HTML, and more. LibreOffice + Pandoc backend. $0.003/conversion.

🔐 POST /hash

SHA-256, SHA-512, MD5. Native Node.js crypto, zero latency. $0.001/call.

🐙 GitHub Integration (4 tools)

Read repos, search code, create issues, read files. All $0.001–$0.002.

📊 Google Sheets (3 tools)

Read, write, and create spreadsheets. AI agents can now persist structured data. $0.002–$0.005.

The 50-Tool Moment

When we started IteraTools, the idea was simple: one API key for all the plumbing AI agents need.

Today we're at 50 tools:

  • Image generation, background removal, resizing, OCR
  • Web scraping, browser automation, PDF extract/generate
  • TTS, audio transcription, video generation
  • WhatsApp messaging, SMS, email validation
  • Translation, sentiment, summarization, embeddings
  • DNS, WHOIS, QR codes, weather, crypto, currency
  • Google Sheets, GitHub, document conversion
  • And now: a full LLM proxy

All pay-per-use. No subscriptions. MCP-compatible.

Get Started

  1. Grab an API key at iteratools.com
  2. $1 = ~200 API calls depending on the tool
  3. Or use MCP: npx iteratools-mcp (works with Claude Desktop, Cursor, etc.)

Docs: iteratools.com/docs

Top comments (0)