Zapier integration
Trigger AI Detector API from any Zapier event. New form submission, new email, new CRM row.
~10 minute setup · 6 steps · Webhooks supported
Zapier lets non-developers connect AI Detector API to thousands of apps without writing code. A typical setup: a new form submission, support ticket, or CRM row triggers a Zap; the Zap calls AI Detector API; the score is written back to the source record or branched on downstream.
You don't need a custom Zapier app to use AI Detector API. The standard "Webhooks by Zapier" action talks to our REST endpoint directly.
When to use this
Use Zapier when you want detection inside Google Forms, Typeform, HubSpot, Notion, Airtable, or any of Zapier's 6,000+ apps without standing up a server.
Steps
- 1
Create a new Zap
Pick whichever app should trigger the flow. Examples: New submission in Google Forms, New ticket in Zendesk, New row in Airtable.
- 2
Add a Webhooks by Zapier action
Choose POST as the action event. Use
https://api.aidetectorapi.com/v1/detect/as the URL. - 3
Configure the request
Method:
POST. Data type:JSON. Body:{"text": "{{trigger.field}}"}mapping{{trigger.field}}to whatever field carries the text. Add a headerAuthorization: Bearer YOUR_API_KEY. - 4
Test the step
Zapier will fire a sample request. You should see a response with
score,confidence, and asentencesarray. - 5
Branch on the score
Add a Filter by Zapier step:
score > 0.85→ route to a review queue.score <= 0.85→ continue the normal flow. - 6
Write the result back
Final step: write
scoreandconfidenceto a column in your source app (Airtable, Notion, HubSpot) so reviewers can see the signal in context.
Example use case
New Google Form submission → AI Detector API → flag if score > 0.85 in Airtable.
Rate-limit tip
Zapier respects HTTP 429 with Retry-After. For Free-tier limits, batch your Zaps with a delay step if you expect bursts.
Other integrations
Get your API key. Free
1,000 requests/month, no credit card. Drop straight into your Zapier workflow.
Get my free API key