What do you want to automate

with Google Address Validation and Logo.dev?

Prompt, edit and deploy AI agents that connect to Google Address Validation, 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 Google Address Validation API with the Logo.dev API
Setup the Google Address Validation API trigger to run a workflow which integrates with the Logo.dev API. Pipedream's integration platform allows you to integrate Google Address Validation and Logo.dev remarkably fast. Free for developers.

Connect Google Address Validation

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
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    google_address_validation: {
      type: "app",
      app: "google_address_validation",
    }
  },
  async run({steps, $}) {
    const data = {
      "address": {
        "regionCode": "US",
        "addressLines": ["1600 Amphitheatre Parkway", "Mountain View, CA"]
      },
      "previousResponseId": "",
      "enableUspsCass": true
    }
    return await axios($, {
      method: "post",
      url: `https://addressvalidation.googleapis.com/v1:validateAddress`,
      params: {
        key: `${this.google_address_validation.$auth.api_key}`,
      },
      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