jotform
Installation
SKILL.md
JotForm
Access the JotForm API with managed OAuth authentication. Create and manage forms, retrieve submissions, and manage webhooks.
Quick Start
# List user forms
python <<'EOF'
import urllib.request, os, json
req = urllib.request.Request('https://api.maton.ai/jotform/user/forms?limit=20')
req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF