---
title: Documentation
description: Set up Trigv on iOS, connect your tools, and get alerts on your phone - step-by-step guides for Zapier, GitHub Actions, scripts, and more.
---
# Documentation

Send alerts from code, no-code automations, webhooks, scripts, cron jobs, and AI agents to the Trigv mobile apps.

[API reference](/docs/api) · [SDKs](/docs/sdks) · [Integrations](/integrations/) · [llms.txt](/llms.txt)

## Quick start

[Create an account](https://app.trigv.com), install Trigv, create an [API key](/docs/learn/api-keys), then run one command:

```bash
curl -X POST https://api.trigv.com/api/v1/events \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Authorization: Bearer $TRIGV_API_KEY" \
  -d '{"channel":"general","title":"Deploy finished","level":"success"}'
```

Accepted events return HTTP `202`. See [the event API reference](/docs/events) for the response and all fields. [SDK examples](/docs/sdks) are also available for JavaScript, Python, Go, PHP, Ruby, and CLI.

## Integrations

- [cURL](/docs/learn/curl) - Send an alert from your terminal.
- [SDKs](/docs/sdks) - Official packages for Node, Python, PHP, Go, Ruby, and CLI.
- [Laravel](/docs/learn/laravel) - Jobs, commands, listeners, and webhooks.
- [Zapier](/integrations/zapier/) - Send Trigv alerts from no-code workflows.
- [OttoKit](/integrations/ottokit/) - Send Trigv alerts from OttoKit automations.
- [GitHub Actions](/integrations/github-actions/) - Get CI and deploy alerts on your phone.
- [AI agents](/docs/learn/ai-agents) - Notify when your coding agent finishes.

## Product guides

- [Send test](/docs/learn/send-test) - Fire a test alert from the dashboard before wiring production scripts.
- [API keys](/docs/learn/api-keys) - Create, rotate, and revoke workspace keys.
- [Channels](/docs/learn/channels) - Route alerts by slug and subscribe devices.
- [Image attachments](/docs/learn/images) - Attach optional screenshots, charts, or snapshots.
- [How Trigv works](/docs/introduction) - What we deliver, what we store, and what stays on your device.
- [API security](/docs/security) - Key handling, logging policy, and workspace protection.

## API reference

- [API overview](/docs/api) - Base URL, authentication, connection test, and OpenAPI.
- [POST /api/v1/events](/docs/events) - Request body, examples, and response behavior.
- [Errors & rate limits](/docs/errors) - Status codes, limits, and idempotency.
- [OpenAPI spec](https://api.trigv.com/openapi.yaml) - Machine-readable API contract.
