3 New IteraTools Endpoints: Google Calendar, JSON Validator & RSS Feed Parser
What's New in IteraTools We've been shipping fast. Here's a recap of the three most recent additions to IteraTools — the API toolkit designed for AI agents and developers who need reliable, pay-per...

Source: DEV Community
What's New in IteraTools We've been shipping fast. Here's a recap of the three most recent additions to IteraTools — the API toolkit designed for AI agents and developers who need reliable, pay-per-use tools. 📅 Google Calendar Integration (3 endpoints) We added full Google Calendar support via the Google Calendar REST API v3. AI agents can now manage calendar events on behalf of users — all they need is an OAuth2 access token with the appropriate scope. POST /calendar/event — Create an event curl -X POST https://api.iteratools.com/calendar/event \ -H "Authorization: Bearer YOUR_KEY" \ -H "Content-Type: application/json" \ -d '{ "google_access_token": "ya29...", "title": "Team Standup", "start": "2026-03-20T10:00:00-03:00", "end": "2026-03-20T10:30:00-03:00", "description": "Daily sync", "attendees": ["[email protected]"], "timezone": "America/Sao_Paulo" }' Response: { "ok": true, "event_id": "abc123xyz", "html_link": "https://calendar.google.com/calendar/event?eid=...", "status": "con