Enigma

Enigma provides fresh, accurate data about the identity and financial health of every small business.

Go to site
Explore
/
Apps
/
Enigma

Enigma API Integrations

Build and run workflows using the Enigma 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

The Enigma API enables developers to access data and content from a variety of sources, including news, weather, and social media. With the Enigma API, you can build applications that display real-time data, offer insights and analysis, and provide a variety of other features and services.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    enigma: {
      type: "app",
      app: "enigma",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.enigma.com/businesses/{your_enigma_id}`,
      headers: {
        "x-api-key": `${this.enigma.$auth.api_key}`,
        "accept": `application/json`,
      },
      params: {
        lookback_months: `1`,
      },
    })
  },
})

Authentication

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

Sign in and copy your API key from your Enigma dashboard.