---
title: Zapier Integration with Langfuse
sidebarTitle: Zapier
logo: /images/integrations/zapier_icon.png
description: "Automate your LLM engineering workflows by integrating Langfuse with Zapier. Use the Langfuse Public API to administer projects and fetch prompts."
---

# Integration: Zapier

> [Zapier](https://zapier.com/) is a workflow automation platform that connects your apps and services together.

Integrate Langfuse with Zapier to automate your LLM engineering workflows. You can use the Langfuse Public API via Zapier to administer projects, fetch prompts, and trigger actions based on events in your Langfuse account.

## Prerequisites

- An active Langfuse account (available on the free Hobby plan or any paid plan)
- A Zapier account

## Scope of Integration

By leveraging the [Langfuse Public API](/docs/api-and-data-platform/features/public-api) through Zapier, you can:

- Administer projects
- Fetch prompts
- Make custom API requests to interact with traces, evaluations, and other Langfuse features

For more details on available API endpoints, refer to the [Public API documentation](/docs/api-and-data-platform/features/public-api).

## Get Started

<Steps>

### Step 1: Connect Langfuse to Zapier

1. Navigate to the [Apps page](https://zapier.com/app/connections) on Zapier
2. Click on "+ Add connection"
3. In the dialog box, search for and select "Langfuse"
4. Click "Add connection"
5. A new browser tab or window will open. Enter your Langfuse Public Key and Secret Key, and select your data region
6. Click "Yes, Continue to Langfuse"

Your Langfuse account is now successfully connected to Zapier.

### Step 2: Create a Zap

Once connected, you can create Zaps using Langfuse triggers and actions:

**Available Triggers:**

- **New Project**: Triggers when a new project is created in your Langfuse account

**Available Actions:**

- **API Request (Beta)**: Make raw HTTP requests to the Langfuse API, enabling you to create or update records, fetch data, and more

</Steps>

## Example Use Cases

- **Prompt Management Automation**: Automatically sync prompt updates to your documentation or notify your team via Slack when new prompt versions are created
- **Project Setup**: Trigger onboarding workflows when new Langfuse projects are created
- **Custom Integrations**: Use the API Request action to build custom workflows that interact with traces, scores, and other Langfuse data

## Learn More

- [Langfuse Public API Documentation](/docs/api-and-data-platform/features/public-api)
- [Zapier Help Center: How to get started with Langfuse on Zapier](https://help.zapier.com/hc/en-us/articles/39458665773581-How-to-get-started-with-Langfuse-on-Zapier)

<!-- agent-instructions -->

---

## Agent Instructions

This page is part of the [Langfuse](https://langfuse.com) documentation, published as plain Markdown for AI agents. Every page is available as Markdown by appending `.md` to its URL, or by sending an `Accept: text/markdown` header. This page: `https://langfuse.com/integrations/other/zapier.md`.

### Querying these docs

If the answer is not on this page, query the documentation instead of guessing:

- **Semantic search** across all Langfuse docs, returning an answer with the relevant pages and excerpts. Ask a specific, self-contained question:

  ```bash
  curl -sG "https://langfuse.com/api/search-docs" --data-urlencode "query=How do I trace a LangGraph agent?"
  ```

- **Index of every page**: <https://langfuse.com/llms.txt>, with per-section indexes [llms-docs.txt](https://langfuse.com/llms-docs.txt), [llms-integrations.txt](https://langfuse.com/llms-integrations.txt), and [llms-self-hosting.txt](https://langfuse.com/llms-self-hosting.txt).

### Before writing Langfuse code

- **Install the [Langfuse Agent Skill](https://langfuse.com/docs/api-and-data-platform/features/agent-skill).** It encodes Langfuse's own best practices for instrumentation, prompt management, and evaluation, and materially improves results.
- **Read [What does a good trace look like?](https://langfuse.com/docs/observability/best-practices.md)** before instrumenting an application.
- **Verify endpoints, parameters, and response fields** against the [API reference](https://api.reference.langfuse.com) instead of inferring them from code examples.
- **Use the [Langfuse CLI](https://langfuse.com/docs/api-and-data-platform/features/cli)** (`npx langfuse-cli api <resource> <action>`) to read or write traces, prompts, datasets, and scores from the terminal.

Found an error in these docs? Please open an issue at <https://github.com/langfuse/langfuse-docs/issues>.
