Developer Resources
API Documentation
Integrate Scrumrobo into your applications with our comprehensive REST API and webhooks.
Authentication
Learn how to authenticate API requests
All API requests require authentication using an API key. Include your API key in the Authorization header.
REST API
Complete REST API reference
Our REST API allows you to programmatically manage standups, polls, surveys, and retrieve analytics data.
Webhooks
Subscribe to real-time events
Receive notifications when standups are completed, polls are answered, or other events occur in your workspace.
SDKs & Libraries
Official SDKs and client libraries
Use our official SDKs for JavaScript, Python, and other popular languages to integrate Scrumrobo into your applications.
Quick Start
// Example: Create a standup
curl -X POST https://api.scrumrobo.com/v1/standups \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"team_id": "team_123",
"questions": ["What did you do yesterday?"],
"scheduled_time": "09:00"
}'API Endpoints
GET
/v1/standupsList all standupsPOST
/v1/standupsCreate a new standupGET
/v1/standups/{id}Get standup detailsGET
/v1/pollsList all pollsPOST
/v1/pollsCreate a new pollGET
/v1/analyticsGet analytics dataNeed Help?
Have questions about the API? Our developer support team is here to help.