IDX Broker

IDXBroker empowers real estate agents with lead management solutions, customizable home search, and fully hosted websites.

Go to site
Explore
/
Apps
/
IDX Broker

IDX Broker API Integrations

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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    idx_broker: {
      type: "app",
      app: "idx_broker",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.idxbroker.com/leads/lead`,
      headers: {
        "Content-Type": `application/x-www-form-urlencoded`,
        "accesskey": `${this.idx_broker.$auth.access_key}`,
      },
    })
  },
})

Authentication

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

Sign in and copy your Access Key from the IDX Control Panel.