Getting Started
Get up and running with the Trigglio API in under 5 minutes.
Step 1: Generate an API Key
Go to Settings → API Keys in your Trigglio dashboard and create a new API key.
Copy your API key immediately — you won’t be able to see it again after leaving the page.
Your API key will look like this:
tr_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxStep 2: Make Your First Request
Test your API key by verifying the connection:
cURL
curl -X GET "https://trigglio.com/api/integrations/webhooks/auth/verify" \
-H "Authorization: Bearer tr_live_your_api_key"A successful response looks like:
{
"status": "success",
"workspace": {
"id": "ws_abc123",
"name": "my-workspace"
},
"permissions": ["forms:read", "responses:read", "webhooks:manage"]
}Step 3: Subscribe to Form Submissions
Register a webhook URL to receive notifications when forms are submitted:
cURL
curl -X POST "https://trigglio.com/api/integrations/webhooks/triggers/subscribe" \
-H "Authorization: Bearer tr_live_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"hookUrl": "https://your-app.com/webhook",
"formId": "frm_abc123"
}'Next Steps
Last updated on