appypieautomate.ai · Docs · PyPI · Get Started Free
Official Python SDK for Appy Pie Automate — the no-code workflow automation platform connecting 1,000+ apps. Trigger workflows, manage connects, and integrate any app programmatically.
pip install appypie-automatefrom appypie_automate import AppyPieAutomate
client = AppyPieAutomate(api_key="your-api-key")
# Trigger a workflow
result = client.trigger("your-workflow-id", {
"email": "user@example.com",
"name": "John Doe"
})
print(result["execution_id"])import asyncio
from appypie_automate import AsyncAppyPieAutomate
async def main():
client = AsyncAppyPieAutomate(api_key="your-api-key")
result = await client.trigger("wf_abc123", {"email": "user@example.com"})
print(result)
asyncio.run(main())| Parameter | Type | Required | Description |
|---|---|---|---|
api_key |
str | ✅ | Your Appy Pie Automate API key |
base_url |
str | ❌ | Override API base URL |
timeout |
int | ❌ | Request timeout in seconds (default: 30) |
result = client.trigger("wf_abc123", {
"subject": "New signup",
"email": "newuser@example.com"
})connects = client.connects.list()
for c in connects:
print(c["name"], c["status"])| Scenario | Example |
|---|---|
| CRM sync | Trigger HubSpot contact creation on form submit |
| E-commerce | Fire Slack alert on new Shopify order |
| Data pipelines | Push event data into Google Sheets automatically |
| Support | Create Zendesk ticket from webhook payload |
export APPYPIE_API_KEY="your-api-key-here"MIT © Appy Pie LLP