LaunchDarkly

Fast and reliable feature management for the modern enterprise.

Go to site
Explore
/
Apps
/
LaunchDarkly

LaunchDarkly API Integrations

Build and run workflows using the LaunchDarkly API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

With the LaunchDarkly API, you can easily create custom user experiences for your application or website. You can use the API to segment your users based on criteria such as location, device, or even custom attributes, and then change the application experience for those segments in real-time.

Here are a few examples of what you can build with the LaunchDarkly API:

  • A/B testing of new features
  • Targeted content for specific user segments
  • Dynamic Experiences based on user interactions
  • Real-time analytics of user behavior
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    launchdarkly: {
      type: "app",
      app: "launchdarkly",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://app.launchdarkly.com/api/v2/projects`,
      headers: {
        "authorization": `${this.launchdarkly.$auth.access_token}`,
      },
    })
  },
})

Choose an API to Connect with LaunchDarkly API

1
-
12
of
1000+
apps by most popular

Authentication

LaunchDarkly uses API keys for authentication. When you connect your LaunchDarkly account, Pipedream securely stores the keys so you can easily authenticate to LaunchDarkly APIs in both code and no-code steps.

Create an access token for LaunchDarkly's REST API at https://app.launchdarkly.com/settings/authorization.