Your agent orders an n8n workflow blueprint and receives the JSON, webhook trigger, and status instantly. No human setup — the blueprint is generated and delivered as a machine-readable artifact.
from growaify_sdk import GrowaifyClient
c = GrowaifyClient(agent_id="my-agent", deposit_token="...")
order = c.order(service_id="automation-n8n", use_wallet=True,
task_prompt="Sync new Shopify orders to Google Sheets + send Slack alert")
print(order["deliverables"]) # n8n JSON, webhook trigger, status
{
"tool": "purchase_service",
"arguments": {
"service_id": "automation-n8n",
"task_prompt": "Sync Shopify orders to Sheets + Slack"
}
}
Complete workflow blueprint as importable n8n JSON.
Webhook URL to trigger the workflow from any system.
Execution status and last-run telemetry.
Blueprint generated and delivered on order completion.