What do you want to automate

with HumanLayer and Logo.dev?

Prompt, edit and deploy AI agents that connect to HumanLayer, Logo.dev and 2,500+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Integrate the HumanLayer API with the Logo.dev API
Setup the HumanLayer API trigger to run a workflow which integrates with the Logo.dev API. Pipedream's integration platform allows you to integrate HumanLayer and Logo.dev remarkably fast. Free for developers.

Connect HumanLayer

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    humanlayer: {
      type: "app",
      app: "humanlayer",
    }
  },
  async run({steps, $}) {
    const data = {
      "run_id": "run_120", //adjust your run and call ids
      "call_id": "call_640",
      "spec": {
        "msg": "Can someone approve this small typo fix PR? Just stumbled upon those while testing other stuff?",
        "subject": "Small PR fix",
        "channel": {
          "email": {
            "address": "superman@pd.com",
            "subject": "Small PR fix",
            "in_reply_to": "msg_790"
          }
        }
      }
    }
    return await axios($, {
      method: "post",
      url: `https://api.humanlayer.dev/humanlayer/v1/human_contacts`,
      headers: {
        Authorization: `Bearer ${this.humanlayer.$auth.api_key}`,
        "content-type": `application/json`,
      },
      data,
    })
  },
})

Connect Logo.dev

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    logo_dev: {
      type: "app",
      app: "logo_dev",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.logo.dev/search`,
      headers: {
        Authorization: `Bearer ${this.logo_dev.$auth.secret_key}`,
      },
      params: {
        "q": `Funko`,
      },
    })
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo