todoist
SKILL.md
Todoist
Access the Todoist REST API v2 with managed OAuth authentication. Manage tasks, projects, sections, labels, and comments.
Quick Start
# List all tasks
python <<'EOF'
import urllib.request, os, json
req = urllib.request.Request('https://gateway.maton.ai/todoist/rest/v2/tasks')
req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF
Base URL