Tally
Tally API integration with managed OAuth. Manage forms, submissions, workspaces, and webhooks. Use this skill when users want to create or manage Tally forms, retrieve form submissions, or work with w
Tally API integration with managed OAuth. Manage forms, submissions, workspaces, and webhooks. Use this skill when users want to create or manage Tally forms, retrieve form submissions, or work with w
Real data. Real impact.
Emerging
Developers
Per week
Open source
Skills give you superpowers. Install in 30 seconds.
Access the Tally API with managed OAuth authentication. Manage forms, submissions, workspaces, and webhooks for your Tally account.
# List your forms python <<'EOF' import urllib.request, os, json req = urllib.request.Request('https://gateway.maton.ai/tally/forms') req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}') req.add_header('User-Agent', 'Maton/1.0') print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2)) EOF
https://gateway.maton.ai/tally/{native-api-path}
Replace
{native-api-path} with the actual Tally API endpoint path. The gateway proxies requests to api.tally.so and automatically injects your OAuth token.
All requests require the Maton API key in the Authorization header and the User Agent header:
Authorization: Bearer $MATON_API_KEY User-Agent: Maton/1.0
Environment Variable: Set your API key as
MATON_API_KEY:
export MATON_API_KEY="YOUR_API_KEY"
Manage your Tally OAuth connections at
https://ctrl.maton.ai.
python <<'EOF' import urllib.request, os, json req = urllib.request.Request('https://ctrl.maton.ai/connections?app=tally&status=ACTIVE') req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}') print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2)) EOF
python <<'EOF' import urllib.request, os, json data = json.dumps({'app': 'tally'}).encode() req = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST') req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}') req.add_header('Content-Type', 'application/json') print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2)) EOF
python <<'EOF' import urllib.request, os, json req = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}') req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}') print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2)) EOF
Response:
{ "connection": { "connection_id": "cd54e2b0-f1d0-435e-a97d-f2d6a5c474bf", "status": "ACTIVE", "creation_time": "2026-02-07T21:00:31.222600Z", "last_updated_time": "2026-02-07T21:00:37.821240Z", "url": "https://connect.maton.ai/?session_token=...", "app": "tally", "metadata": {} } }
Open the returned
url in a browser to complete OAuth authorization.
python <<'EOF' import urllib.request, os, json req = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE') req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}') print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2)) EOF
If you have multiple Tally connections, specify which one to use with the
Maton-Connection header:
python <<'EOF' import urllib.request, os, json req = urllib.request.Request('https://gateway.maton.ai/tally/forms') req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}') req.add_header('Maton-Connection', 'cd54e2b0-f1d0-435e-a97d-f2d6a5c474bf') print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2)) EOF
If omitted, the gateway uses the default (oldest) active connection.
GET /tally/users/me
Response:
{ "id": "w2lBkb", "firstName": "John", "lastName": "Doe", "email": "john@example.com", "organizationId": "n0Ze8Q", "subscriptionPlan": "FREE", "createdAt": "2026-02-07T20:58:54.000Z", "updatedAt": "2026-02-07T22:50:35.000Z" }
GET /tally/forms
Query Parameters:
page - Page number (default: 1)limit - Items per page (default: 50)Response:
{ "items": [ { "id": "GxdRaQ", "name": "Contact Form", "workspaceId": "3jW9Q1", "organizationId": "n0Ze8Q", "status": "PUBLISHED", "hasDraftBlocks": false, "numberOfSubmissions": 42, "createdAt": "2026-02-09T08:36:00.000Z", "updatedAt": "2026-02-09T08:36:17.000Z", "isClosed": false } ], "page": 1, "limit": 50, "total": 1, "hasMore": false }
GET /tally/forms/{formId}
Response:
{ "id": "GxdRaQ", "name": "Contact Form", "workspaceId": "3jW9Q1", "status": "PUBLISHED", "blocks": [ { "uuid": "11111111-1111-1111-1111-111111111111", "type": "FORM_TITLE", "groupUuid": "22222222-2222-2222-2222-222222222222", "groupType": "FORM_TITLE", "payload": {} }, { "uuid": "33333333-3333-3333-3333-333333333333", "type": "INPUT_TEXT", "groupUuid": "44444444-4444-4444-4444-444444444444", "groupType": "INPUT_TEXT", "payload": {} } ], "settings": null }
POST /tally/forms Content-Type: application/json{ "status": "DRAFT", "workspaceId": "3jW9Q1", "blocks": [ { "type": "FORM_TITLE", "uuid": "11111111-1111-1111-1111-111111111111", "groupUuid": "22222222-2222-2222-2222-222222222222", "groupType": "FORM_TITLE", "title": "My Form", "payload": {} }, { "type": "INPUT_TEXT", "uuid": "33333333-3333-3333-3333-333333333333", "groupUuid": "44444444-4444-4444-4444-444444444444", "groupType": "INPUT_TEXT", "title": "Your name", "payload": {} } ] }
Block Types:
FORM_TITLE - Form title blockINPUT_TEXT - Single-line text inputINPUT_EMAIL - Email inputINPUT_NUMBER - Number inputINPUT_PHONE_NUMBER - Phone number inputINPUT_DATE - Date pickerINPUT_TIME - Time pickerINPUT_LINK - URL inputTEXTAREA - Multi-line text inputMULTIPLE_CHOICE - Radio buttonsCHECKBOXES - Checkbox groupDROPDOWN - Dropdown selectLINEAR_SCALE - Scale ratingRATING - Star ratingFILE_UPLOAD - File uploadSIGNATURE - Signature fieldPAYMENT - Payment fieldHIDDEN_FIELDS - Hidden fieldsNote: Block
uuid and groupUuid must be valid UUIDs (GUIDs).
PATCH /tally/forms/{formId} Content-Type: application/json{ "name": "Updated Form Name", "status": "PUBLISHED" }
Status Values:
DRAFT - Form is a draftPUBLISHED - Form is liveDELETE /tally/forms/{formId}
Moves the form to trash.
GET /tally/forms/{formId}/questions
Response:
{ "questions": [ { "uuid": "33333333-3333-3333-3333-333333333333", "type": "INPUT_TEXT", "title": "Your name" } ], "hasResponses": true }
GET /tally/forms/{formId}/submissions
Query Parameters:
page - Page number (default: 1)limit - Items per page (default: 50)startDate - Filter by start date (ISO 8601)endDate - Filter by end date (ISO 8601)afterId - Get submissions after this ID (cursor pagination)Response:
{ "page": 1, "limit": 50, "hasMore": false, "totalNumberOfSubmissionsPerFilter": { "all": 42, "completed": 40, "partial": 2 }, "questions": [ { "uuid": "33333333-3333-3333-3333-333333333333", "type": "INPUT_TEXT", "title": "Your name" } ], "submissions": [ { "id": "sub123", "respondentId": "resp456", "formId": "GxdRaQ", "createdAt": "2026-02-09T10:00:00.000Z", "isCompleted": true, "responses": [ { "questionId": "33333333-3333-3333-3333-333333333333", "value": "John Doe" } ] } ] }
GET /tally/forms/{formId}/submissions/{submissionId}
DELETE /tally/forms/{formId}/submissions/{submissionId}
GET /tally/workspaces
Response:
{ "items": [ { "id": "3jW9Q1", "name": "My Workspace", "createdByUserId": "w2lBkb", "createdAt": "2026-02-09T08:35:53.000Z", "updatedAt": "2026-02-09T08:35:53.000Z" } ], "page": 1, "limit": 50, "total": 1, "hasMore": false }
GET /tally/workspaces/{workspaceId}
Response:
{ "id": "3jW9Q1", "name": "My Workspace", "createdByUserId": "w2lBkb", "createdAt": "2026-02-09T08:35:53.000Z", "members": [ { "id": "w2lBkb", "firstName": "John", "lastName": "Doe", "email": "john@example.com" } ] }
POST /tally/workspaces Content-Type: application/json{ "name": "New Workspace" }
Note: Creating workspaces requires a Pro subscription.
PATCH /tally/workspaces/{workspaceId} Content-Type: application/json{ "name": "Updated Workspace Name" }
DELETE /tally/workspaces/{workspaceId}
Moves the workspace and all its forms to trash.
GET /tally/organizations/{organizationId}/users
Response:
[ { "id": "w2lBkb", "firstName": "John", "lastName": "Doe", "email": "john@example.com", "createdAt": "2026-02-07T20:58:54.000Z" } ]
DELETE /tally/organizations/{organizationId}/users/{userId}
GET /tally/organizations/{organizationId}/invites
POST /tally/organizations/{organizationId}/invites Content-Type: application/json{ "email": "newuser@example.com", "workspaceIds": ["3jW9Q1"] }
DELETE /tally/organizations/{organizationId}/invites/{inviteId}
GET /tally/webhooks
Note: Listing webhooks may require specific permissions.
POST /tally/webhooks Content-Type: application/json{ "formId": "GxdRaQ", "url": "https://your-endpoint.com/webhook", "eventTypes": ["FORM_RESPONSE"] }
Webhook Event Types:
FORM_RESPONSE - Triggered when a new form response is submittedPATCH /tally/webhooks/{webhookId} Content-Type: application/json{ "url": "https://new-endpoint.com/webhook" }
DELETE /tally/webhooks/{webhookId}
GET /tally/webhooks/{webhookId}/events
POST /tally/webhooks/{webhookId}/events/{eventId}
Tally uses page-based pagination:
GET /tally/forms?page=1&limit=50
Response includes pagination info:
{ "items": [...], "page": 1, "limit": 50, "total": 100, "hasMore": true }
For submissions, cursor-based pagination is also available using
afterId.
const response = await fetch( 'https://gateway.maton.ai/tally/forms', { headers: { 'Authorization': `Bearer ${process.env.MATON_API_KEY}`, 'User-Agent': 'Maton/1.0' } } ); const data = await response.json(); console.log(data.items);
import os import requestsresponse = requests.get( 'https://gateway.maton.ai/tally/forms', headers={ 'Authorization': f'Bearer {os.environ["MATON_API_KEY"]}', 'User-Agent': 'Maton/1.0' } ) data = response.json() print(data['items'])
import os import requests import uuidheaders = { 'Authorization': f'Bearer {os.environ["MATON_API_KEY"]}', 'User-Agent': 'Maton/1.0' }
Create a simple form
form_data = { 'status': 'DRAFT', 'blocks': [ { 'type': 'FORM_TITLE', 'uuid': str(uuid.uuid4()), 'groupUuid': str(uuid.uuid4()), 'groupType': 'FORM_TITLE', 'title': 'Contact Form', 'payload': {} }, { 'type': 'INPUT_EMAIL', 'uuid': str(uuid.uuid4()), 'groupUuid': str(uuid.uuid4()), 'groupType': 'INPUT_EMAIL', 'title': 'Your email', 'payload': {} } ] }
response = requests.post( 'https://gateway.maton.ai/tally/forms', headers=headers, json=form_data ) form = response.json() print(f"Created form: {form['id']}")
Get submissions for a form
response = requests.get( f'https://gateway.maton.ai/tally/forms/{form["id"]}/submissions', headers=headers ) submissions = response.json() print(f"Total submissions: {submissions['totalNumberOfSubmissionsPerFilter']['all']}")
GxdRaQ)uuid and groupUuid fields must be valid UUIDs (GUIDs)jq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environments| Status | Meaning |
|---|---|
| 400 | Missing Tally connection or validation error |
| 401 | Invalid or missing Maton API key |
| 403 | Insufficient permissions |
| 404 | Resource not found |
| 429 | Rate limited (100 req/min) |
| 4xx/5xx | Passthrough error from Tally API |
MATON_API_KEY environment variable is set:echo $MATON_API_KEY
python <<'EOF' import urllib.request, os, json req = urllib.request.Request('https://ctrl.maton.ai/connections') req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}') print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2)) EOF
tally. For example:https://gateway.maton.ai/tally/formshttps://gateway.maton.ai/formsNo automatic installation available. Please visit the source repository for installation instructions.
View Installation Instructions1,500+ AI skills, agents & workflows. Install in 30 seconds. Part of the Torly.ai family.
© 2026 Torly.ai. All rights reserved.