
Rallly Has a Free API: Open-Source Meeting Scheduler That Replaces Doodle
What is Rallly? Rallly (yes, three L's) is an open-source scheduling tool — a Doodle alternative for finding the best meeting time. Create a poll, share the link, participants vote on time slots. No account required for participants. Free. Self-hostable. Self-Host git clone https://github.com/lukevella/rallly cd rallly docker compose up -d How It Works Create Poll : Choose dates and time options Share Link : Send to participants Vote : Participants mark availability (Yes/If need be/No) Result : Best time is highlighted automatically The API export RALLLY_URL = "https://your-rallly.com/api" Create Poll curl -X POST " $RALLLY_URL /polls" \ -H "Content-Type: application/json" \ -d '{ "title": "Team Standup Time", "description": "Vote for the best standup time", "location": "Google Meet", "options": [ {"startDate": "2026-04-01T09:00:00Z", "endDate": "2026-04-01T09:30:00Z"}, {"startDate": "2026-04-01T10:00:00Z", "endDate": "2026-04-01T10:30:00Z"}, {"startDate": "2026-04-01T14:00:00Z", "endD
Continue reading on Dev.to Tutorial
Opens in a new tab



