API Gateway
Passthrough proxy for direct access to third-party APIs using managed OAuth connections, provided by Maton. The API gateway lets you call native API endpoints directly.
Quick Start
# Native Slack API call
python <<'EOF'
import urllib.request, os, json
data = json.dumps({'channel': 'C0123456', 'text': 'Hello from gateway!'}).encode()
req = urllib.request.Request('https://gateway.maton.ai/slack/api/chat.postMessage', 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
Base URL
https://gateway.maton.ai/{app}/{native-api-path}
Replace {app} with the service name and {native-api-path} with the actual API endpoint path.
IMPORTANT: The URL path MUST start with the connection's app name (eg. /google-mail/...). This prefix tells the gateway which app connection to use. For example, the native Gmail API path starts with gmail/v1/, so full paths look like /google-mail/gmail/v1/users/me/messages.
Authentication
All requests require the Maton API key in the Authorization header:
Authorization: Bearer $MATON_API_KEY
The API gateway automatically injects the appropriate OAuth token for the target service.
Environment Variable: You can set your API key as the MATON_API_KEY environment variable:
export MATON_API_KEY="YOUR_API_KEY"
Getting Your API Key
- Sign in or create an account at maton.ai
- Go to maton.ai/settings
- Click the copy button on the right side of API Key section to copy it
Connection Management
Connection management uses a separate base URL: https://ctrl.maton.ai
List Connections
python <<'EOF'
import urllib.request, os, json
req = urllib.request.Request('https://ctrl.maton.ai/connections?app=slack&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
Query Parameters (optional):
app - Filter by service name (e.g., slack, hubspot, salesforce)
status - Filter by connection status (ACTIVE, PENDING, FAILED)
Response:
{
"connections": [
{
"connection_id": "21fd90f9-5935-43cd-b6c8-bde9d915ca80",
"status": "ACTIVE",
"creation_time": "2025-12-08T07:20:53.488460Z",
"last_updated_time": "2026-01-31T20:03:32.593153Z",
"url": "https://connect.maton.ai/?session_token=5e9...",
"app": "slack",
"method": "OAUTH2",
"metadata": {}
}
]
}
Create Connection
python <<'EOF'
import urllib.request, os, json
data = json.dumps({'app': 'slack'}).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
Request Body:
app (required) - Service name (e.g., slack, notion)
method (optional) - Connection method (API_KEY, BASIC, OAUTH1, OAUTH2, MCP)
Get Connection
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": "21fd90f9-5935-43cd-b6c8-bde9d915ca80",
"status": "ACTIVE",
"creation_time": "2025-12-08T07:20:53.488460Z",
"last_updated_time": "2026-01-31T20:03:32.593153Z",
"url": "https://connect.maton.ai/?session_token=5e9...",
"app": "slack",
"metadata": {}
}
}
Open the returned URL in a browser to complete OAuth.
Delete Connection
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
Specifying Connection
If you have multiple connections for the same app, you can specify which connection to use by adding the Maton-Connection header with the connection ID:
python <<'EOF'
import urllib.request, os, json
data = json.dumps({'channel': 'C0123456', 'text': 'Hello!'}).encode()
req = urllib.request.Request('https://gateway.maton.ai/slack/api/chat.postMessage', data=data, method='POST')
req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')
req.add_header('Content-Type', 'application/json')
req.add_header('Maton-Connection', '21fd90f9-5935-43cd-b6c8-bde9d915ca80')
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF
If omitted, the gateway uses the default (oldest) active connection for that app.
Supported Services
| Service |
App Name |
Base URL Proxied |
| ActiveCampaign |
active-campaign |
{account}.api-us1.com |
| Acuity Scheduling |
acuity-scheduling |
acuityscheduling.com |
| Airtable |
airtable |
api.airtable.com |
| Apollo |
apollo |
api.apollo.io |
| Asana |
asana |
app.asana.com |
| Attio |
attio |
api.attio.com |
| Basecamp |
basecamp |
3.basecampapi.com |
| Baserow |
baserow |
api.baserow.io |
| beehiiv |
beehiiv |
api.beehiiv.com |
| Box |
box |
api.box.com |
| Brevo |
brevo |
api.brevo.com |
| Calendly |
calendly |
api.calendly.com |
| Cal.com |
cal-com |
api.cal.com |
| CallRail |
callrail |
api.callrail.com |
| Chargebee |
chargebee |
{subdomain}.chargebee.com |
| ClickFunnels |
clickfunnels |
{subdomain}.myclickfunnels.com |
| ClickSend |
clicksend |
rest.clicksend.com |
| ClickUp |
clickup |
api.clickup.com |
| Clockify |
clockify |
api.clockify.me |
| Coda |
coda |
coda.io |
| Confluence |
confluence |
api.atlassian.com |
| CompanyCam |
companycam |
api.companycam.com |
| Cognito Forms |
cognito-forms |
www.cognitoforms.com |
| Constant Contact |
constant-contact |
api.cc.email |
| Dropbox |
dropbox |
api.dropboxapi.com |
| Dropbox Business |
dropbox-business |
api.dropboxapi.com |
| ElevenLabs |
elevenlabs |
api.elevenlabs.io |
| Eventbrite |
eventbrite |
www.eventbriteapi.com |
| Exa |
exa |
api.exa.ai |
| Fathom |
fathom |
api.fathom.ai |
| Firebase |
firebase |
firebase.googleapis.com |
| Fireflies |
fireflies |
api.fireflies.ai |
| GetResponse |
getresponse |
api.getresponse.com |
| Grafana |
grafana |
User's Grafana instance |
| GitHub |
github |
api.github.com |
| Gumroad |
gumroad |
api.gumroad.com |
| Granola MCP |
granola |
mcp.granola.ai |
| Google Ads |
google-ads |
googleads.googleapis.com |
| Google BigQuery |
google-bigquery |
bigquery.googleapis.com |
| Google Analytics Admin |
google-analytics-admin |
analyticsadmin.googleapis.com |
| Google Analytics Data |
google-analytics-data |
analyticsdata.googleapis.com |
| Google Calendar |
google-calendar |
www.googleapis.com |
| Google Classroom |
google-classroom |
classroom.googleapis.com |
| Google Contacts |
google-contacts |
people.googleapis.com |
| Google Docs |
google-docs |
docs.googleapis.com |
| Google Drive |
google-drive |
www.googleapis.com |
| Google Forms |
google-forms |
forms.googleapis.com |
| Gmail |
google-mail |
gmail.googleapis.com |
| Google Merchant |
google-merchant |
merchantapi.googleapis.com |
| Google Meet |
google-meet |
meet.googleapis.com |
| Google Play |
google-play |
androidpublisher.googleapis.com |
| Google Search Console |
google-search-console |
www.googleapis.com |
| Google Sheets |
google-sheets |
sheets.googleapis.com |
| Google Slides |
google-slides |
slides.googleapis.com |
| Google Tasks |
google-tasks |
tasks.googleapis.com |
| Google Workspace Admin |
google-workspace-admin |
admin.googleapis.com |
| HubSpot |
hubspot |
api.hubapi.com |
| Instantly |
instantly |
api.instantly.ai |
| Jira |
jira |
api.atlassian.com |
| Jobber |
jobber |
api.getjobber.com |
| JotForm |
jotform |
api.jotform.com |
| Kaggle |
kaggle |
api.kaggle.com |
| Keap |
keap |
api.infusionsoft.com |
| Kibana |
kibana |
User's Kibana instance |
| Kit |
kit |
api.kit.com |
| Klaviyo |
klaviyo |
a.klaviyo.com |
| Lemlist |
lemlist |
api.lemlist.com |
| Linear |
linear |
api.linear.app |
| LinkedIn |
linkedin |
api.linkedin.com |
| Mailchimp |
mailchimp |
{dc}.api.mailchimp.com |
| MailerLite |
mailerlite |
connect.mailerlite.com |
| Mailgun |
mailgun |
api.mailgun.net |
| ManyChat |
manychat |
api.manychat.com |
| Manus |
manus |
api.manus.ai |
| Microsoft Excel |
microsoft-excel |
graph.microsoft.com |
| Microsoft Teams |
microsoft-teams |
graph.microsoft.com |
| Microsoft To Do |
microsoft-to-do |
graph.microsoft.com |
| Monday.com |
monday |
api.monday.com |
| Motion |
motion |
api.usemotion.com |
| Netlify |
netlify |
api.netlify.com |
| Notion |
notion |
api.notion.com |
| Notion MCP |
notion |
mcp.notion.com |
| OneDrive |
one-drive |
graph.microsoft.com |
| Outlook |
outlook |
graph.microsoft.com |
| PDF.co |
pdf-co |
api.pdf.co |
| Pipedrive |
pipedrive |
api.pipedrive.com |
| Podio |
podio |
api.podio.com |
| PostHog |
posthog |
{subdomain}.posthog.com |
| QuickBooks |
quickbooks |
quickbooks.api.intuit.com |
| Quo |
quo |
api.openphone.com |
| Reducto |
reducto |
platform.reducto.ai |
| Salesforce |
salesforce |
{instance}.salesforce.com |
| Sentry |
sentry |
{subdomain}.sentry.io |
| SharePoint |
sharepoint |
graph.microsoft.com |
| SignNow |
signnow |
api.signnow.com |
| Slack |
slack |
slack.com |
| Snapchat |
snapchat |
adsapi.snapchat.com |
| Square |
squareup |
connect.squareup.com |
| Squarespace |
squarespace |
api.squarespace.com |
| Sunsama MCP |
sunsama |
MCP server |
| Stripe |
stripe |
api.stripe.com |
| Systeme.io |
systeme |
api.systeme.io |
| Tally |
tally |
api.tally.so |
| Tavily |
tavily |
api.tavily.com |
| Telegram |
telegram |
api.telegram.org |
| TickTick |
ticktick |
api.ticktick.com |
| Todoist |
todoist |
api.todoist.com |
| Toggl Track |
toggl-track |
api.track.toggl.com |
| Trello |
trello |
api.trello.com |
| Twilio |
twilio |
api.twilio.com |
| Typeform |
typeform |
api.typeform.com |
| Unbounce |
unbounce |
api.unbounce.com |
| Vimeo |
vimeo |
api.vimeo.com |
| WhatsApp Business |
whatsapp-business |
graph.facebook.com |
| WooCommerce |
woocommerce |
{store-url}/wp-json/wc/v3 |
| WordPress.com |
wordpress |
public-api.wordpress.com |
| Xero |
xero |
api.xero.com |
| YouTube |
youtube |
www.googleapis.com |
| Zoho Bigin |
zoho-bigin |
www.zohoapis.com |
| Zoho Bookings |
zoho-bookings |
www.zohoapis.com |
| Zoho Books |
zoho-books |
www.zohoapis.com |
| Zoho Calendar |
zoho-calendar |
calendar.zoho.com |
| Zoho CRM |
zoho-crm |
www.zohoapis.com |
| Zoho Inventory |
zoho-inventory |
www.zohoapis.com |
| Zoho Mail |
zoho-mail |
mail.zoho.com |
| Zoho People |
zoho-people |
people.zoho.com |
| Zoho Projects |
zoho-projects |
projectsapi.zoho.com |
| Zoho Recruit |
zoho-recruit |
recruit.zoho.com |
See references/ for detailed routing guides per provider:
- ActiveCampaign - Contacts, deals, tags, lists, automations, campaigns
- Acuity Scheduling - Appointments, calendars, clients, availability
- Airtable - Records, bases, tables
- Apollo - People search, enrichment, contacts
- Asana - Tasks, projects, workspaces, webhooks
- Attio - People, companies, records, tasks
- Basecamp - Projects, to-dos, messages, schedules, documents
- Baserow - Database rows, fields, tables, batch operations
- beehiiv - Publications, subscriptions, posts, custom fields
- Box - Files, folders, collaborations, shared links
- Brevo - Contacts, email campaigns, transactional emails, templates
- Calendly - Event types, scheduled events, availability, webhooks
- Cal.com - Event types, bookings, schedules, availability slots, webhooks
- CallRail - Calls, trackers, companies, tags, analytics
- Chargebee - Subscriptions, customers, invoices
- ClickFunnels - Contacts, products, orders, courses, webhooks
- ClickSend - SMS, MMS, voice messages, contacts, lists
- ClickUp - Tasks, lists, folders, spaces, webhooks
- Clockify - Time tracking, projects, clients, tasks, workspaces
- Coda - Docs, pages, tables, rows, formulas, controls
- Confluence - Pages, spaces, blogposts, comments, attachments
- CompanyCam - Projects, photos, users, tags, groups, documents
- Cognito Forms - Forms, entries, documents, files
- Constant Contact - Contacts, email campaigns, lists, segments
- Dropbox - Files, folders, search, metadata, revisions, tags
- Dropbox Business - Team members, groups, team folders, devices, audit logs
- ElevenLabs - Text-to-speech, voice cloning, sound effects, audio processing
- Eventbrite - Events, venues, tickets, orders, attendees
- Exa - Neural web search, content extraction, similar pages, AI answers, research tasks
- Fathom - Meeting recordings, transcripts, summaries, webhooks
- Firebase - Projects, web apps, Android apps, iOS apps, configurations
- Fireflies - Meeting transcripts, summaries, AskFred AI, channels
- GetResponse - Campaigns, contacts, newsletters, autoresponders, tags, segments
- Grafana - Dashboards, data sources, folders, annotations, alerts, teams
- GitHub - Repositories, issues, pull requests, commits
- Gumroad - Products, sales, subscribers, licenses, webhooks
- Granola MCP - MCP-based interface for meeting notes, transcripts, queries
- Google Ads - Campaigns, ad groups, GAQL queries
- Google Analytics Admin - Reports, dimensions, metrics
- Google Analytics Data - Reports, dimensions, metrics
- Google BigQuery - Datasets, tables, jobs, SQL queries
- Google Calendar - Events, calendars, free/busy
- Google Classroom - Courses, coursework, students, teachers, announcements
- Google Contacts - Contacts, contact groups, people search
- Google Docs - Document creation, batch updates
- Google Drive - Files, folders, permissions
- Google Forms - Forms, questions, responses
- Gmail - Messages, threads, labels
- Google Meet - Spaces, conference records, participants
- Google Merchant - Products, inventories, promotions, reports
- Google Play - In-app products, subscriptions, reviews
- Google Search Console - Search analytics, sitemaps
- Google Sheets - Values, ranges, formatting
- Google Slides - Presentations, slides, formatting
- Google Tasks - Task lists, tasks, subtasks
- Google Workspace Admin - Users, groups, org units, domains, roles
- HubSpot - Contacts, companies, deals
- Instantly - Campaigns, leads, accounts, email outreach
- Jira - Issues, projects, JQL queries
- Jobber - Clients, jobs, invoices, quotes (GraphQL)
- JotForm - Forms, submissions, webhooks
- Kaggle - Datasets, models, competitions, kernels
- Keap - Contacts, companies, tags, tasks, opportunities, campaigns
- Kibana - Saved objects, dashboards, data views, spaces, alerts, fleet
- Kit - Subscribers, tags, forms, sequences, broadcasts
- Klaviyo - Profiles, lists, campaigns, flows, events
- Lemlist - Campaigns, leads, activities, schedules, unsubscribes
- Linear - Issues, projects, teams, cycles (GraphQL)
- LinkedIn - Profile, posts, shares, media uploads
- Mailchimp - Audiences, campaigns, templates, automations
- MailerLite - Subscribers, groups, campaigns, automations, forms
- Mailgun - Email sending, domains, routes, templates, mailing lists, suppressions
- ManyChat - Subscribers, tags, flows, messaging
- Manus - AI agent tasks, projects, files, webhooks
- Microsoft Excel - Workbooks, worksheets, ranges, tables, charts
- Microsoft Teams - Teams, channels, messages, members, chats
- Microsoft To Do - Task lists, tasks, checklist items, linked resources
- Monday.com - Boards, items, columns, groups (GraphQL)
- Motion - Tasks, projects, workspaces, schedules
- Netlify - Sites, deploys, builds, DNS, environment variables
- Notion - Pages, databases, blocks
- Notion MCP - MCP-based interface for pages, databases, comments, teams, users
- OneDrive - Files, folders, drives, sharing
- Outlook - Mail, calendar, contacts
- PDF.co - PDF conversion, merge, split, edit, text extraction, barcodes
- Pipedrive - Deals, persons, organizations, activities
- Podio - Organizations, workspaces, apps, items, tasks, comments
- PostHog - Product analytics, feature flags, session recordings, experiments, HogQL queries
- QuickBooks - Customers, invoices, reports
- Quo - Calls, messages, contacts, conversations, webhooks
- Reducto - Document parsing, extraction, splitting, editing
- Salesforce - SOQL, sObjects, CRUD
- SignNow - Documents, templates, invites, e-signatures
- SendGrid - Email sending, contacts, templates, suppressions, statistics
- Sentry - Issues, events, projects, teams, releases
- SharePoint - Sites, lists, document libraries, files, folders, versions
- Slack - Messages, channels, users
- Snapchat - Ad accounts, campaigns, ad squads, ads, creatives, audiences
- Square - Payments, customers, orders, catalog, inventory, invoices
- Squarespace - Products, inventory, orders, profiles, transactions
- Sunsama MCP - MCP-based interface for tasks, calendar, backlog, objectives, time tracking
- Stripe - Customers, subscriptions, payments
- Systeme.io - Contacts, tags, courses, communities, webhooks
- Tally - Forms, submissions, workspaces, webhooks
- Tavily - AI web search, content extraction, crawling, research tasks
- Telegram - Messages, chats, bots, updates, polls
- TickTick - Tasks, projects, task lists
- Todoist - Tasks, projects, sections, labels, comments
- Toggl Track - Time entries, projects, clients, tags, workspaces
- Trello - Boards, lists, cards, checklists
- Twilio - SMS, voice calls, phone numbers, messaging
- Typeform - Forms, responses, insights
- Unbounce - Landing pages, leads, accounts, sub-accounts, domains
- Vimeo - Videos, folders, albums, comments, likes
- WhatsApp Business - Messages, templates, media
- WooCommerce - Products, orders, customers, coupons
- WordPress.com - Posts, pages, sites, users, settings
- Xero - Contacts, invoices, reports
- YouTube - Videos, playlists, channels, subscriptions
- Zoho Bigin - Contacts, companies, pipelines, products
- Zoho Bookings - Appointments, services, staff, workspaces
- Zoho Books - Invoices, contacts, bills, expenses
- Zoho Calendar - Calendars, events, attendees, reminders
- Zoho CRM - Leads, contacts, accounts, deals, search
- Zoho Inventory - Items, sales orders, invoices, purchase orders, bills
- Zoho Mail - Messages, folders, labels, attachments
- Zoho People - Employees, departments, designations, attendance, leave
- Zoho Projects - Projects, tasks, milestones, tasklists, comments
- Zoho Recruit - Candidates, job openings, interviews, applications
Examples
Slack - Post Message (Native API)
# Native Slack API: POST https://slack.com/api/chat.postMessage
python <<'EOF'
import urllib.request, os, json
data = json.dumps({'channel': 'C0123456', 'text': 'Hello!'}).encode()
req = urllib.request.Request('https://gateway.maton.ai/slack/api/chat.postMessage', data=data, method='POST')
req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')
req.add_header('Content-Type', 'application/json; charset=utf-8')
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF
HubSpot - Create Contact (Native API)
# Native HubSpot API: POST https://api.hubapi.com/crm/v3/objects/contacts
python <<'EOF'
import urllib.request, os, json
data = json.dumps({'properties': {'email': 'john@example.com', 'firstname': 'John', 'lastname': 'Doe'}}).encode()
req = urllib.request.Request('https://gateway.maton.ai/hubspot/crm/v3/objects/contacts', 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
Google Sheets - Get Spreadsheet Values (Native API)
# Native Sheets API: GET https://sheets.googleapis.com/v4/spreadsheets/{id}/values/{range}
python <<'EOF'
import urllib.request, os, json
req = urllib.request.Request('https://gateway.maton.ai/google-sheets/v4/spreadsheets/122BS1sFN2RKL8AOUQjkLdubzOwgqzPT64KfZ2rvYI4M/values/Sheet1!A1:B2')
req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF
Salesforce - SOQL Query (Native API)
# Native Salesforce API: GET https://{instance}.salesforce.com/services/data/v64.0/query?q=...
python <<'EOF'
import urllib.request, os, json
req = urllib.request.Request('https://gateway.maton.ai/salesforce/services/data/v64.0/query?q=SELECT+Id,Name+FROM+Contact+LIMIT+10')
req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF
Airtable - List Tables (Native API)
# Native Airtable API: GET https://api.airtable.com/v0/meta/bases/{id}/tables
python <<'EOF'
import urllib.request, os, json
req = urllib.request.Request('https://gateway.maton.ai/airtable/v0/meta/bases/appgqan2NzWGP5sBK/tables')
req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF
Notion - Query Database (Native API)
# Native Notion API: POST https://api.notion.com/v1/data_sources/{id}/query
python <<'EOF'
import urllib.request, os, json
data = json.dumps({}).encode()
req = urllib.request.Request('https://gateway.maton.ai/notion/v1/data_sources/23702dc5-9a3b-8001-9e1c-000b5af0a980/query', data=data, method='POST')
req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')
req.add_header('Content-Type', 'application/json')
req.add_header('Notion-Version', '2025-09-03')
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF
Stripe - List Customers (Native API)
# Native Stripe API: GET https://api.stripe.com/v1/customers
python <<'EOF'
import urllib.request, os, json
req = urllib.request.Request('https://gateway.maton.ai/stripe/v1/customers?limit=10')
req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF
Code Examples
JavaScript (Node.js)
const response = await fetch('https://gateway.maton.ai/slack/api/chat.postMessage', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': `Bearer ${process.env.MATON_API_KEY}`
},
body: JSON.stringify({ channel: 'C0123456', text: 'Hello!' })
});
Python
import os
import requests
response = requests.post(
'https://gateway.maton.ai/slack/api/chat.postMessage',
headers={'Authorization': f'Bearer {os.environ["MATON_API_KEY"]}'},
json={'channel': 'C0123456', 'text': 'Hello!'}
)
Error Handling
| Status |
Meaning |
| 400 |
Missing connection for the requested app |
| 401 |
Invalid or missing Maton API key |
| 429 |
Rate limited (10 requests/second per account) |
| 500 |
Internal Server Error |
| 4xx/5xx |
Passthrough error from the target API |
Errors from the target API are passed through with their original status codes and response bodies.
Troubleshooting: API Key Issues
- Check that the
MATON_API_KEY environment variable is set:
echo $MATON_API_KEY
- Verify the API key is valid by listing connections:
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
Troubleshooting: Invalid App Name
- Verify your URL path starts with the correct app name. The path must begin with
/google-mail/. For example:
- Correct:
https://gateway.maton.ai/google-mail/gmail/v1/users/me/messages
- Incorrect:
https://gateway.maton.ai/gmail/v1/users/me/messages
- Ensure you have an active connection for the app. List your connections to verify:
python <<'EOF'
import urllib.request, os, json
req = urllib.request.Request('https://ctrl.maton.ai/connections?app=google-mail&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
Troubleshooting: Server Error
A 500 error may indicate an expired OAuth token. Try creating a new connection via the Connection Management section above and completing OAuth authorization. If the new connection is "ACTIVE", delete the old connection to ensure the gateway uses the new one.
Rate Limits
- 10 requests per second per account
- Target API rate limits also apply
Notes
- When using curl with URLs containing brackets (
fields[], sort[], records[]), use the -g flag to disable glob parsing
- When piping curl output to
jq, environment variables may not expand correctly in some shells, which can cause "Invalid API key" errors
Tips
Use native API docs: Refer to each service's official API documentation for endpoint paths and parameters.
Headers are forwarded: Custom headers (except Host and Authorization) are forwarded to the target API.
Query params work: URL query parameters are passed through to the target API.
All HTTP methods supported: GET, POST, PUT, PATCH, DELETE are all supported.
QuickBooks special case: Use :realmId in the path and it will be replaced with the connected realm ID.
Optional
1---2name: api-gateway3description: API Gateway4---56# API Gateway78Passthrough proxy for direct access to third-party APIs using managed OAuth connections, provided by [Maton](https://maton.ai). The API gateway lets you call native API endpoints directly.910## Quick Start1112```bash13# Native Slack API call14python <<'EOF'15import urllib.request, os, json16data = json.dumps({'channel': 'C0123456', 'text': 'Hello from gateway!'}).encode()17req = urllib.request.Request('https://gateway.maton.ai/slack/api/chat.postMessage', data=data, method='POST')18req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')19req.add_header('Content-Type', 'application/json')20print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))21EOF22```232425## Base URL2627```28https://gateway.maton.ai/{app}/{native-api-path}29```3031Replace `{app}` with the service name and `{native-api-path}` with the actual API endpoint path.3233IMPORTANT: The URL path MUST start with the connection's app name (eg. `/google-mail/...`). This prefix tells the gateway which app connection to use. For example, the native Gmail API path starts with `gmail/v1/`, so full paths look like `/google-mail/gmail/v1/users/me/messages`.3435## Authentication3637All requests require the Maton API key in the Authorization header:3839```40Authorization: Bearer $MATON_API_KEY41```4243The API gateway automatically injects the appropriate OAuth token for the target service.4445**Environment Variable:** You can set your API key as the `MATON_API_KEY` environment variable:4647```bash48export MATON_API_KEY="YOUR_API_KEY"49```5051## Getting Your API Key52531. Sign in or create an account at [maton.ai](https://maton.ai)542. Go to [maton.ai/settings](https://maton.ai/settings)553. Click the copy button on the right side of API Key section to copy it5657## Connection Management5859Connection management uses a separate base URL: `https://ctrl.maton.ai`6061### List Connections6263```bash64python <<'EOF'65import urllib.request, os, json66req = urllib.request.Request('https://ctrl.maton.ai/connections?app=slack&status=ACTIVE')67req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')68print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))69EOF70```7172**Query Parameters (optional):**73- `app` - Filter by service name (e.g., `slack`, `hubspot`, `salesforce`)74- `status` - Filter by connection status (`ACTIVE`, `PENDING`, `FAILED`)7576**Response:**77```json78{79 "connections": [80 {81 "connection_id": "21fd90f9-5935-43cd-b6c8-bde9d915ca80",82 "status": "ACTIVE",83 "creation_time": "2025-12-08T07:20:53.488460Z",84 "last_updated_time": "2026-01-31T20:03:32.593153Z",85 "url": "https://connect.maton.ai/?session_token=5e9...",86 "app": "slack",87 "method": "OAUTH2",88 "metadata": {}89 }90 ]91}92```9394### Create Connection9596```bash97python <<'EOF'98import urllib.request, os, json99data = json.dumps({'app': 'slack'}).encode()100req = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST')101req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')102req.add_header('Content-Type', 'application/json')103print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))104EOF105```106107**Request Body:**108- `app` (required) - Service name (e.g., `slack`, `notion`)109- `method` (optional) - Connection method (`API_KEY`, `BASIC`, `OAUTH1`, `OAUTH2`, `MCP`)110111### Get Connection112113```bash114python <<'EOF'115import urllib.request, os, json116req = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}')117req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')118print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))119EOF120```121122**Response:**123```json124{125 "connection": {126 "connection_id": "21fd90f9-5935-43cd-b6c8-bde9d915ca80",127 "status": "ACTIVE",128 "creation_time": "2025-12-08T07:20:53.488460Z",129 "last_updated_time": "2026-01-31T20:03:32.593153Z",130 "url": "https://connect.maton.ai/?session_token=5e9...",131 "app": "slack",132 "metadata": {}133 }134}135```136137Open the returned URL in a browser to complete OAuth.138139### Delete Connection140141```bash142python <<'EOF'143import urllib.request, os, json144req = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE')145req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')146print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))147EOF148```149150### Specifying Connection151152If you have multiple connections for the same app, you can specify which connection to use by adding the `Maton-Connection` header with the connection ID:153154```bash155python <<'EOF'156import urllib.request, os, json157data = json.dumps({'channel': 'C0123456', 'text': 'Hello!'}).encode()158req = urllib.request.Request('https://gateway.maton.ai/slack/api/chat.postMessage', data=data, method='POST')159req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')160req.add_header('Content-Type', 'application/json')161req.add_header('Maton-Connection', '21fd90f9-5935-43cd-b6c8-bde9d915ca80')162print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))163EOF164```165166If omitted, the gateway uses the default (oldest) active connection for that app.167168## Supported Services169170| Service | App Name | Base URL Proxied |171|---------|----------|------------------|172| ActiveCampaign | `active-campaign` | `{account}.api-us1.com` |173| Acuity Scheduling | `acuity-scheduling` | `acuityscheduling.com` |174| Airtable | `airtable` | `api.airtable.com` |175| Apollo | `apollo` | `api.apollo.io` |176| Asana | `asana` | `app.asana.com` |177| Attio | `attio` | `api.attio.com` |178| Basecamp | `basecamp` | `3.basecampapi.com` |179| Baserow | `baserow` | `api.baserow.io` |180| beehiiv | `beehiiv` | `api.beehiiv.com` |181| Box | `box` | `api.box.com` |182| Brevo | `brevo` | `api.brevo.com` |183| Calendly | `calendly` | `api.calendly.com` |184| Cal.com | `cal-com` | `api.cal.com` |185| CallRail | `callrail` | `api.callrail.com` |186| Chargebee | `chargebee` | `{subdomain}.chargebee.com` |187| ClickFunnels | `clickfunnels` | `{subdomain}.myclickfunnels.com` |188| ClickSend | `clicksend` | `rest.clicksend.com` |189| ClickUp | `clickup` | `api.clickup.com` |190| Clockify | `clockify` | `api.clockify.me` |191| Coda | `coda` | `coda.io` |192| Confluence | `confluence` | `api.atlassian.com` |193| CompanyCam | `companycam` | `api.companycam.com` |194| Cognito Forms | `cognito-forms` | `www.cognitoforms.com` |195| Constant Contact | `constant-contact` | `api.cc.email` |196| Dropbox | `dropbox` | `api.dropboxapi.com` |197| Dropbox Business | `dropbox-business` | `api.dropboxapi.com` |198| ElevenLabs | `elevenlabs` | `api.elevenlabs.io` |199| Eventbrite | `eventbrite` | `www.eventbriteapi.com` |200| Exa | `exa` | `api.exa.ai` |201| Fathom | `fathom` | `api.fathom.ai` |202| Firebase | `firebase` | `firebase.googleapis.com` |203| Fireflies | `fireflies` | `api.fireflies.ai` |204| GetResponse | `getresponse` | `api.getresponse.com` |205| Grafana | `grafana` | User's Grafana instance |206| GitHub | `github` | `api.github.com` |207| Gumroad | `gumroad` | `api.gumroad.com` |208| Granola MCP | `granola` | `mcp.granola.ai` |209| Google Ads | `google-ads` | `googleads.googleapis.com` |210| Google BigQuery | `google-bigquery` | `bigquery.googleapis.com` |211| Google Analytics Admin | `google-analytics-admin` | `analyticsadmin.googleapis.com` |212| Google Analytics Data | `google-analytics-data` | `analyticsdata.googleapis.com` |213| Google Calendar | `google-calendar` | `www.googleapis.com` |214| Google Classroom | `google-classroom` | `classroom.googleapis.com` |215| Google Contacts | `google-contacts` | `people.googleapis.com` |216| Google Docs | `google-docs` | `docs.googleapis.com` |217| Google Drive | `google-drive` | `www.googleapis.com` |218| Google Forms | `google-forms` | `forms.googleapis.com` |219| Gmail | `google-mail` | `gmail.googleapis.com` |220| Google Merchant | `google-merchant` | `merchantapi.googleapis.com` |221| Google Meet | `google-meet` | `meet.googleapis.com` |222| Google Play | `google-play` | `androidpublisher.googleapis.com` |223| Google Search Console | `google-search-console` | `www.googleapis.com` |224| Google Sheets | `google-sheets` | `sheets.googleapis.com` |225| Google Slides | `google-slides` | `slides.googleapis.com` |226| Google Tasks | `google-tasks` | `tasks.googleapis.com` |227| Google Workspace Admin | `google-workspace-admin` | `admin.googleapis.com` |228| HubSpot | `hubspot` | `api.hubapi.com` |229| Instantly | `instantly` | `api.instantly.ai` |230| Jira | `jira` | `api.atlassian.com` |231| Jobber | `jobber` | `api.getjobber.com` |232| JotForm | `jotform` | `api.jotform.com` |233| Kaggle | `kaggle` | `api.kaggle.com` |234| Keap | `keap` | `api.infusionsoft.com` |235| Kibana | `kibana` | User's Kibana instance |236| Kit | `kit` | `api.kit.com` |237| Klaviyo | `klaviyo` | `a.klaviyo.com` |238| Lemlist | `lemlist` | `api.lemlist.com` |239| Linear | `linear` | `api.linear.app` |240| LinkedIn | `linkedin` | `api.linkedin.com` |241| Mailchimp | `mailchimp` | `{dc}.api.mailchimp.com` |242| MailerLite | `mailerlite` | `connect.mailerlite.com` |243| Mailgun | `mailgun` | `api.mailgun.net` |244| ManyChat | `manychat` | `api.manychat.com` |245| Manus | `manus` | `api.manus.ai` |246| Microsoft Excel | `microsoft-excel` | `graph.microsoft.com` |247| Microsoft Teams | `microsoft-teams` | `graph.microsoft.com` |248| Microsoft To Do | `microsoft-to-do` | `graph.microsoft.com` |249| Monday.com | `monday` | `api.monday.com` |250| Motion | `motion` | `api.usemotion.com` |251| Netlify | `netlify` | `api.netlify.com` |252| Notion | `notion` | `api.notion.com` |253| Notion MCP | `notion` | `mcp.notion.com` |254| OneDrive | `one-drive` | `graph.microsoft.com` |255| Outlook | `outlook` | `graph.microsoft.com` |256| PDF.co | `pdf-co` | `api.pdf.co` |257| Pipedrive | `pipedrive` | `api.pipedrive.com` |258| Podio | `podio` | `api.podio.com` |259| PostHog | `posthog` | `{subdomain}.posthog.com` |260| QuickBooks | `quickbooks` | `quickbooks.api.intuit.com` |261| Quo | `quo` | `api.openphone.com` |262| Reducto | `reducto` | `platform.reducto.ai` |263| Salesforce | `salesforce` | `{instance}.salesforce.com` |264| Sentry | `sentry` | `{subdomain}.sentry.io` |265| SharePoint | `sharepoint` | `graph.microsoft.com` |266| SignNow | `signnow` | `api.signnow.com` |267| Slack | `slack` | `slack.com` |268| Snapchat | `snapchat` | `adsapi.snapchat.com` |269| Square | `squareup` | `connect.squareup.com` |270| Squarespace | `squarespace` | `api.squarespace.com` |271| Sunsama MCP | `sunsama` | MCP server |272| Stripe | `stripe` | `api.stripe.com` |273| Systeme.io | `systeme` | `api.systeme.io` |274| Tally | `tally` | `api.tally.so` |275| Tavily | `tavily` | `api.tavily.com` |276| Telegram | `telegram` | `api.telegram.org` |277| TickTick | `ticktick` | `api.ticktick.com` |278| Todoist | `todoist` | `api.todoist.com` |279| Toggl Track | `toggl-track` | `api.track.toggl.com` |280| Trello | `trello` | `api.trello.com` |281| Twilio | `twilio` | `api.twilio.com` |282| Typeform | `typeform` | `api.typeform.com` |283| Unbounce | `unbounce` | `api.unbounce.com` |284| Vimeo | `vimeo` | `api.vimeo.com` |285| WhatsApp Business | `whatsapp-business` | `graph.facebook.com` |286| WooCommerce | `woocommerce` | `{store-url}/wp-json/wc/v3` |287| WordPress.com | `wordpress` | `public-api.wordpress.com` |288| Xero | `xero` | `api.xero.com` |289| YouTube | `youtube` | `www.googleapis.com` |290| Zoho Bigin | `zoho-bigin` | `www.zohoapis.com` |291| Zoho Bookings | `zoho-bookings` | `www.zohoapis.com` |292| Zoho Books | `zoho-books` | `www.zohoapis.com` |293| Zoho Calendar | `zoho-calendar` | `calendar.zoho.com` |294| Zoho CRM | `zoho-crm` | `www.zohoapis.com` |295| Zoho Inventory | `zoho-inventory` | `www.zohoapis.com` |296| Zoho Mail | `zoho-mail` | `mail.zoho.com` |297| Zoho People | `zoho-people` | `people.zoho.com` |298| Zoho Projects | `zoho-projects` | `projectsapi.zoho.com` |299| Zoho Recruit | `zoho-recruit` | `recruit.zoho.com` |300301See [references/](references/) for detailed routing guides per provider:302- [ActiveCampaign](references/active-campaign/README.md) - Contacts, deals, tags, lists, automations, campaigns303- [Acuity Scheduling](references/acuity-scheduling/README.md) - Appointments, calendars, clients, availability304- [Airtable](references/airtable/README.md) - Records, bases, tables305- [Apollo](references/apollo/README.md) - People search, enrichment, contacts306- [Asana](references/asana/README.md) - Tasks, projects, workspaces, webhooks307- [Attio](references/attio/README.md) - People, companies, records, tasks308- [Basecamp](references/basecamp/README.md) - Projects, to-dos, messages, schedules, documents309- [Baserow](references/baserow/README.md) - Database rows, fields, tables, batch operations310- [beehiiv](references/beehiiv/README.md) - Publications, subscriptions, posts, custom fields311- [Box](references/box/README.md) - Files, folders, collaborations, shared links312- [Brevo](references/brevo/README.md) - Contacts, email campaigns, transactional emails, templates313- [Calendly](references/calendly/README.md) - Event types, scheduled events, availability, webhooks314- [Cal.com](references/cal-com/README.md) - Event types, bookings, schedules, availability slots, webhooks315- [CallRail](references/callrail/README.md) - Calls, trackers, companies, tags, analytics316- [Chargebee](references/chargebee/README.md) - Subscriptions, customers, invoices317- [ClickFunnels](references/clickfunnels/README.md) - Contacts, products, orders, courses, webhooks318- [ClickSend](references/clicksend/README.md) - SMS, MMS, voice messages, contacts, lists319- [ClickUp](references/clickup/README.md) - Tasks, lists, folders, spaces, webhooks320- [Clockify](references/clockify/README.md) - Time tracking, projects, clients, tasks, workspaces321- [Coda](references/coda/README.md) - Docs, pages, tables, rows, formulas, controls322- [Confluence](references/confluence/README.md) - Pages, spaces, blogposts, comments, attachments323- [CompanyCam](references/companycam/README.md) - Projects, photos, users, tags, groups, documents324- [Cognito Forms](references/cognito-forms/README.md) - Forms, entries, documents, files325- [Constant Contact](references/constant-contact/README.md) - Contacts, email campaigns, lists, segments326- [Dropbox](references/dropbox/README.md) - Files, folders, search, metadata, revisions, tags327- [Dropbox Business](references/dropbox-business/README.md) - Team members, groups, team folders, devices, audit logs328- [ElevenLabs](references/elevenlabs/README.md) - Text-to-speech, voice cloning, sound effects, audio processing329- [Eventbrite](references/eventbrite/README.md) - Events, venues, tickets, orders, attendees330- [Exa](references/exa/README.md) - Neural web search, content extraction, similar pages, AI answers, research tasks331- [Fathom](references/fathom/README.md) - Meeting recordings, transcripts, summaries, webhooks332- [Firebase](references/firebase/README.md) - Projects, web apps, Android apps, iOS apps, configurations333- [Fireflies](references/fireflies/README.md) - Meeting transcripts, summaries, AskFred AI, channels334- [GetResponse](references/getresponse/README.md) - Campaigns, contacts, newsletters, autoresponders, tags, segments335- [Grafana](references/grafana/README.md) - Dashboards, data sources, folders, annotations, alerts, teams336- [GitHub](references/github/README.md) - Repositories, issues, pull requests, commits337- [Gumroad](references/gumroad/README.md) - Products, sales, subscribers, licenses, webhooks338- [Granola MCP](references/granola-mcp/README.md) - MCP-based interface for meeting notes, transcripts, queries339- [Google Ads](references/google-ads/README.md) - Campaigns, ad groups, GAQL queries340- [Google Analytics Admin](references/google-analytics-admin/README.md) - Reports, dimensions, metrics341- [Google Analytics Data](references/google-analytics-data/README.md) - Reports, dimensions, metrics342- [Google BigQuery](references/google-bigquery/README.md) - Datasets, tables, jobs, SQL queries343- [Google Calendar](references/google-calendar/README.md) - Events, calendars, free/busy344- [Google Classroom](references/google-classroom/README.md) - Courses, coursework, students, teachers, announcements345- [Google Contacts](references/google-contacts/README.md) - Contacts, contact groups, people search346- [Google Docs](references/google-docs/README.md) - Document creation, batch updates347- [Google Drive](references/google-drive/README.md) - Files, folders, permissions348- [Google Forms](references/google-forms/README.md) - Forms, questions, responses349- [Gmail](references/google-mail/README.md) - Messages, threads, labels350- [Google Meet](references/google-meet/README.md) - Spaces, conference records, participants351- [Google Merchant](references/google-merchant/README.md) - Products, inventories, promotions, reports352- [Google Play](references/google-play/README.md) - In-app products, subscriptions, reviews353- [Google Search Console](references/google-search-console/README.md) - Search analytics, sitemaps354- [Google Sheets](references/google-sheets/README.md) - Values, ranges, formatting355- [Google Slides](references/google-slides/README.md) - Presentations, slides, formatting356- [Google Tasks](references/google-tasks/README.md) - Task lists, tasks, subtasks357- [Google Workspace Admin](references/google-workspace-admin/README.md) - Users, groups, org units, domains, roles358- [HubSpot](references/hubspot/README.md) - Contacts, companies, deals359- [Instantly](references/instantly/README.md) - Campaigns, leads, accounts, email outreach360- [Jira](references/jira/README.md) - Issues, projects, JQL queries361- [Jobber](references/jobber/README.md) - Clients, jobs, invoices, quotes (GraphQL)362- [JotForm](references/jotform/README.md) - Forms, submissions, webhooks363- [Kaggle](references/kaggle/README.md) - Datasets, models, competitions, kernels364- [Keap](references/keap/README.md) - Contacts, companies, tags, tasks, opportunities, campaigns365- [Kibana](references/kibana/README.md) - Saved objects, dashboards, data views, spaces, alerts, fleet366- [Kit](references/kit/README.md) - Subscribers, tags, forms, sequences, broadcasts367- [Klaviyo](references/klaviyo/README.md) - Profiles, lists, campaigns, flows, events368- [Lemlist](references/lemlist/README.md) - Campaigns, leads, activities, schedules, unsubscribes369- [Linear](references/linear/README.md) - Issues, projects, teams, cycles (GraphQL)370- [LinkedIn](references/linkedin/README.md) - Profile, posts, shares, media uploads371- [Mailchimp](references/mailchimp/README.md) - Audiences, campaigns, templates, automations372- [MailerLite](references/mailerlite/README.md) - Subscribers, groups, campaigns, automations, forms373- [Mailgun](references/mailgun/README.md) - Email sending, domains, routes, templates, mailing lists, suppressions374- [ManyChat](references/manychat/README.md) - Subscribers, tags, flows, messaging375- [Manus](references/manus/README.md) - AI agent tasks, projects, files, webhooks376- [Microsoft Excel](references/microsoft-excel/README.md) - Workbooks, worksheets, ranges, tables, charts377- [Microsoft Teams](references/microsoft-teams/README.md) - Teams, channels, messages, members, chats378- [Microsoft To Do](references/microsoft-to-do/README.md) - Task lists, tasks, checklist items, linked resources379- [Monday.com](references/monday/README.md) - Boards, items, columns, groups (GraphQL)380- [Motion](references/motion/README.md) - Tasks, projects, workspaces, schedules381- [Netlify](references/netlify/README.md) - Sites, deploys, builds, DNS, environment variables382- [Notion](references/notion/README.md) - Pages, databases, blocks383- [Notion MCP](references/notion-mcp/README.md) - MCP-based interface for pages, databases, comments, teams, users384- [OneDrive](references/one-drive/README.md) - Files, folders, drives, sharing385- [Outlook](references/outlook/README.md) - Mail, calendar, contacts386- [PDF.co](references/pdf-co/README.md) - PDF conversion, merge, split, edit, text extraction, barcodes387- [Pipedrive](references/pipedrive/README.md) - Deals, persons, organizations, activities388- [Podio](references/podio/README.md) - Organizations, workspaces, apps, items, tasks, comments389- [PostHog](references/posthog/README.md) - Product analytics, feature flags, session recordings, experiments, HogQL queries390- [QuickBooks](references/quickbooks/README.md) - Customers, invoices, reports391- [Quo](references/quo/README.md) - Calls, messages, contacts, conversations, webhooks392- [Reducto](references/reducto/README.md) - Document parsing, extraction, splitting, editing393- [Salesforce](references/salesforce/README.md) - SOQL, sObjects, CRUD394- [SignNow](references/signnow/README.md) - Documents, templates, invites, e-signatures395- [SendGrid](references/sendgrid/README.md) - Email sending, contacts, templates, suppressions, statistics396- [Sentry](references/sentry/README.md) - Issues, events, projects, teams, releases397- [SharePoint](references/sharepoint/README.md) - Sites, lists, document libraries, files, folders, versions398- [Slack](references/slack/README.md) - Messages, channels, users399- [Snapchat](references/snapchat/README.md) - Ad accounts, campaigns, ad squads, ads, creatives, audiences400- [Square](references/squareup/README.md) - Payments, customers, orders, catalog, inventory, invoices401- [Squarespace](references/squarespace/README.md) - Products, inventory, orders, profiles, transactions402- [Sunsama MCP](references/sunsama-mcp/README.md) - MCP-based interface for tasks, calendar, backlog, objectives, time tracking403- [Stripe](references/stripe/README.md) - Customers, subscriptions, payments404- [Systeme.io](references/systeme/README.md) - Contacts, tags, courses, communities, webhooks405- [Tally](references/tally/README.md) - Forms, submissions, workspaces, webhooks406- [Tavily](references/tavily/README.md) - AI web search, content extraction, crawling, research tasks407- [Telegram](references/telegram/README.md) - Messages, chats, bots, updates, polls408- [TickTick](references/ticktick/README.md) - Tasks, projects, task lists409- [Todoist](references/todoist/README.md) - Tasks, projects, sections, labels, comments410- [Toggl Track](references/toggl-track/README.md) - Time entries, projects, clients, tags, workspaces411- [Trello](references/trello/README.md) - Boards, lists, cards, checklists412- [Twilio](references/twilio/README.md) - SMS, voice calls, phone numbers, messaging413- [Typeform](references/typeform/README.md) - Forms, responses, insights414- [Unbounce](references/unbounce/README.md) - Landing pages, leads, accounts, sub-accounts, domains415- [Vimeo](references/vimeo/README.md) - Videos, folders, albums, comments, likes416- [WhatsApp Business](references/whatsapp-business/README.md) - Messages, templates, media417- [WooCommerce](references/woocommerce/README.md) - Products, orders, customers, coupons418- [WordPress.com](references/wordpress/README.md) - Posts, pages, sites, users, settings419- [Xero](references/xero/README.md) - Contacts, invoices, reports420- [YouTube](references/youtube/README.md) - Videos, playlists, channels, subscriptions421- [Zoho Bigin](references/zoho-bigin/README.md) - Contacts, companies, pipelines, products422- [Zoho Bookings](references/zoho-bookings/README.md) - Appointments, services, staff, workspaces423- [Zoho Books](references/zoho-books/README.md) - Invoices, contacts, bills, expenses424- [Zoho Calendar](references/zoho-calendar/README.md) - Calendars, events, attendees, reminders425- [Zoho CRM](references/zoho-crm/README.md) - Leads, contacts, accounts, deals, search426- [Zoho Inventory](references/zoho-inventory/README.md) - Items, sales orders, invoices, purchase orders, bills427- [Zoho Mail](references/zoho-mail/README.md) - Messages, folders, labels, attachments428- [Zoho People](references/zoho-people/README.md) - Employees, departments, designations, attendance, leave429- [Zoho Projects](references/zoho-projects/README.md) - Projects, tasks, milestones, tasklists, comments430- [Zoho Recruit](references/zoho-recruit/README.md) - Candidates, job openings, interviews, applications431432## Examples433434### Slack - Post Message (Native API)435436```bash437# Native Slack API: POST https://slack.com/api/chat.postMessage438python <<'EOF'439import urllib.request, os, json440data = json.dumps({'channel': 'C0123456', 'text': 'Hello!'}).encode()441req = urllib.request.Request('https://gateway.maton.ai/slack/api/chat.postMessage', data=data, method='POST')442req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')443req.add_header('Content-Type', 'application/json; charset=utf-8')444print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))445EOF446```447448### HubSpot - Create Contact (Native API)449450```bash451# Native HubSpot API: POST https://api.hubapi.com/crm/v3/objects/contacts452python <<'EOF'453import urllib.request, os, json454data = json.dumps({'properties': {'email': 'john@example.com', 'firstname': 'John', 'lastname': 'Doe'}}).encode()455req = urllib.request.Request('https://gateway.maton.ai/hubspot/crm/v3/objects/contacts', data=data, method='POST')456req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')457req.add_header('Content-Type', 'application/json')458print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))459EOF460```461462### Google Sheets - Get Spreadsheet Values (Native API)463464```bash465# Native Sheets API: GET https://sheets.googleapis.com/v4/spreadsheets/{id}/values/{range}466python <<'EOF'467import urllib.request, os, json468req = urllib.request.Request('https://gateway.maton.ai/google-sheets/v4/spreadsheets/122BS1sFN2RKL8AOUQjkLdubzOwgqzPT64KfZ2rvYI4M/values/Sheet1!A1:B2')469req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')470print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))471EOF472```473474### Salesforce - SOQL Query (Native API)475476```bash477# Native Salesforce API: GET https://{instance}.salesforce.com/services/data/v64.0/query?q=...478python <<'EOF'479import urllib.request, os, json480req = urllib.request.Request('https://gateway.maton.ai/salesforce/services/data/v64.0/query?q=SELECT+Id,Name+FROM+Contact+LIMIT+10')481req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')482print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))483EOF484```485486### Airtable - List Tables (Native API)487488```bash489# Native Airtable API: GET https://api.airtable.com/v0/meta/bases/{id}/tables490python <<'EOF'491import urllib.request, os, json492req = urllib.request.Request('https://gateway.maton.ai/airtable/v0/meta/bases/appgqan2NzWGP5sBK/tables')493req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')494print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))495EOF496```497498### Notion - Query Database (Native API)499500```bash501# Native Notion API: POST https://api.notion.com/v1/data_sources/{id}/query502python <<'EOF'503import urllib.request, os, json504data = json.dumps({}).encode()505req = urllib.request.Request('https://gateway.maton.ai/notion/v1/data_sources/23702dc5-9a3b-8001-9e1c-000b5af0a980/query', data=data, method='POST')506req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')507req.add_header('Content-Type', 'application/json')508req.add_header('Notion-Version', '2025-09-03')509print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))510EOF511```512513### Stripe - List Customers (Native API)514515```bash516# Native Stripe API: GET https://api.stripe.com/v1/customers517python <<'EOF'518import urllib.request, os, json519req = urllib.request.Request('https://gateway.maton.ai/stripe/v1/customers?limit=10')520req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')521print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))522EOF523```524525## Code Examples526527### JavaScript (Node.js)528529```javascript530const response = await fetch('https://gateway.maton.ai/slack/api/chat.postMessage', {531 method: 'POST',532 headers: {533 'Content-Type': 'application/json',534 'Authorization': `Bearer ${process.env.MATON_API_KEY}`535 },536 body: JSON.stringify({ channel: 'C0123456', text: 'Hello!' })537});538```539540### Python541542```python543import os544import requests545546response = requests.post(547 'https://gateway.maton.ai/slack/api/chat.postMessage',548 headers={'Authorization': f'Bearer {os.environ["MATON_API_KEY"]}'},549 json={'channel': 'C0123456', 'text': 'Hello!'}550)551```552553## Error Handling554555| Status | Meaning |556|--------|---------|557| 400 | Missing connection for the requested app |558| 401 | Invalid or missing Maton API key |559| 429 | Rate limited (10 requests/second per account) |560| 500 | Internal Server Error |561| 4xx/5xx | Passthrough error from the target API |562563Errors from the target API are passed through with their original status codes and response bodies.564565### Troubleshooting: API Key Issues5665671. Check that the `MATON_API_KEY` environment variable is set:568569```bash570echo $MATON_API_KEY571```5725732. Verify the API key is valid by listing connections:574575```bash576python <<'EOF'577import urllib.request, os, json578req = urllib.request.Request('https://ctrl.maton.ai/connections')579req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')580print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))581EOF582```583584### Troubleshooting: Invalid App Name5855861. Verify your URL path starts with the correct app name. The path must begin with `/google-mail/`. For example:587588- Correct: `https://gateway.maton.ai/google-mail/gmail/v1/users/me/messages`589- Incorrect: `https://gateway.maton.ai/gmail/v1/users/me/messages`5905912. Ensure you have an active connection for the app. List your connections to verify:592593```bash594python <<'EOF'595import urllib.request, os, json596req = urllib.request.Request('https://ctrl.maton.ai/connections?app=google-mail&status=ACTIVE')597req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')598print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))599EOF600```601602### Troubleshooting: Server Error603604A 500 error may indicate an expired OAuth token. Try creating a new connection via the Connection Management section above and completing OAuth authorization. If the new connection is "ACTIVE", delete the old connection to ensure the gateway uses the new one.605606## Rate Limits607608- 10 requests per second per account609- Target API rate limits also apply610611## Notes612613- When using curl with URLs containing brackets (`fields[]`, `sort[]`, `records[]`), use the `-g` flag to disable glob parsing614- When piping curl output to `jq`, environment variables may not expand correctly in some shells, which can cause "Invalid API key" errors615616## Tips6176181. **Use native API docs**: Refer to each service's official API documentation for endpoint paths and parameters.6196202. **Headers are forwarded**: Custom headers (except `Host` and `Authorization`) are forwarded to the target API.6216223. **Query params work**: URL query parameters are passed through to the target API.6236244. **All HTTP methods supported**: GET, POST, PUT, PATCH, DELETE are all supported.6256265. **QuickBooks special case**: Use `:realmId` in the path and it will be replaced with the connected realm ID.627628## Optional629630- [Github](https://github.com/maton-ai/api-gateway-skill)631- [API Reference](https://www.maton.ai/docs/api-reference)632- [Maton Community](https://discord.com/invite/dBfFAcefs2)633- [Maton Support](mailto:support@maton.ai)