Verified Workflows on Zapier

Connect Verified Workflows to 5,000+ apps via Zapier. Submit tasks from any trigger, receive results as actions.

5,000+ appstrigger
Submit TaskZapier action
Certified reviewerhuman review
Review CompletedZapier trigger
Any appnext step

Install the app

Open Zapier, search for Verified Workflows, and install the public app. Authenticate with your API key and you're ready to build Zaps.

terminal
# Optional: install the Zapier CLI to develop locally
npm install -g zapier-platform
zapier login
zapier-app.json
{
  "name": "verified-workflows",
  "version": "1.0.0",
  "platformVersion": "15.0.0"
}

Submit a task from a Zap

Add the Submit Task action after any trigger. The action accepts plain text, a content type (text, audio, image, code, translation), and an optional webhook URL.

submit_task.sh
# Underlying API call the Zapier action makes
curl -X POST https://api.verifiedworkflows.com/v1/tasks \
  -H "Authorization: Bearer vw_live_xxx" \
  -H "Content-Type: application/json" \
  -d '{
    "content": "{{step1.output}}",
    "content_type": "text",
    "callback_url": "https://hooks.zapier.com/vw-callback"
  }'
review.py
from verifiedworkflows import VerifiedWorkflows

client = VerifiedWorkflows(api_key="vw_live_xxx")

task = client.tasks.create(
    content="Body of the new Stripe dispute email",
    content_type="text",
    callback_url="https://hooks.zapier.com/vw-callback",
)

print(task["id"])
review.js
import { VerifiedWorkflows } from "verifiedworkflows";

const client = new VerifiedWorkflows({ apiKey: "vw_live_xxx" });

const task = await client.tasks.create({
  content: "Body of the new Stripe dispute email",
  contentType: "text",
  callbackUrl: "https://hooks.zapier.com/vw-callback",
});

console.log(task.id);

Triggers & actions

Sample Zaps

Is this the official Zapier app?
Yes. It is published under the Verified Workflows vendor account and is supported alongside the REST API.
Can I use it on a free Zapier plan?
Yes. The app works on any plan that allows premium actions. Webhook triggers use Zapier's built-in webhook URL.
How are webhooks signed?
Every callback carries an X-VW-Signature HMAC-SHA256 header. Verify it in a Code by Zapier step before trusting the payload.