Manage Miro boards, sticky notes, and shapes via Miro API. Create collaborative whiteboards programmatically.
Collaborative whiteboard platform.
```bash
export MIRO_ACCESS_TOKEN="xxxxxxxxxx"
```
```bash
curl "https://api.miro.com/v2/boards" \
-H "Authorization: Bearer $MIRO_ACCESS_TOKEN"
```
```bash
curl -X POST "https://api.miro.com/v2/boards" \
-H "Authorization: Bearer $MIRO_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"name": "Project Planning", "description": "Sprint planning board"}'
```
```bash
curl "https://api.miro.com/v2/boards/{board_id}" \
-H "Authorization: Bearer $MIRO_ACCESS_TOKEN"
```
```bash
curl -X POST "https://api.miro.com/v2/boards/{board_id}/sticky_notes" \
-H "Authorization: Bearer $MIRO_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"data": {"content": "New idea!", "shape": "square"},
"position": {"x": 0, "y": 0},
"style": {"fillColor": "yellow"}
}'
```
```bash
curl -X POST "https://api.miro.com/v2/boards/{board_id}/shapes" \
-H "Authorization: Bearer $MIRO_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"data": {"shape": "rectangle", "content": "Task 1"},
"position": {"x": 100, "y": 100},
"geometry": {"width": 200, "height": 100}
}'
```
```bash
curl "https://api.miro.com/v2/boards/{board_id}/items" \
-H "Authorization: Bearer $MIRO_ACCESS_TOKEN"
```
Leave a review
No reviews yet. Be the first to review this skill!