What do you want to automate

with iHomefinder and Pushinator?

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

Connect iHomefinder

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: {
    ihomefinder: {
      type: "app",
      app: "ihomefinder",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.idxhome.com/api/v1/client.json`,
      headers: {
        "accept": `application/json`,
      },
      auth: {
        username: `${this.ihomefinder.$auth.email}`,
        password: `${this.ihomefinder.$auth.password}`,
      },
    })
  },
})

Connect Pushinator

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    pushinator: {
      type: "app",
      app: "pushinator",
    }
  },
  async run({steps, $}) {
    const data = {
      "channel_id": `${this.pushinator.$auth.channel_id}`,
      "content": `Test notification content`,
    }
    return await axios($, {
      method: "post",
      url: `https://api.pushinator.com/api/v2/notifications/send`,
      headers: {
        Authorization: `Bearer ${this.pushinator.$auth.api_token}`,
      },
      data,
    })
  },
})

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