# New Listing Created — Bridge Interactive Platform

> Emit new event when a new listing is created. See the documentation

- Key: `bridge_interactive_platform-new-listing-created`
- Type: Trigger (Polling)
- Version: 0.0.1
- App: Bridge Interactive Platform (`bridge_interactive_platform`) — https://pipedream.com/apps/bridge-interactive-platform.md
- This page (HTML): https://pipedream.com/apps/bridge-interactive-platform/triggers/new-listing-created
- Source: https://github.com/PipedreamHQ/pipedream/blob/master/components/bridge_interactive_platform/sources/new-listing-created/new-listing-created.mjs

## Description

Emit new event when a new listing is created. [See the documentation](https://bridgedataoutput.com/docs/explorer/mls-data)

## Props

| Prop | Type | Required | Description |
|---|---|---|---|
| `timer` | `$.interface.timer` | Yes | Timer |
| `dataset` | `string` | Yes | The dataset to use for the query |
| `near` | `string` | No | Coord or location eg. near=-73.98,40.73 or near=San Diego |
| `radius` | `string` | No | Search Radius in miles, km, or degrees (no units)s |
| `box` | `string` | No | Coordinates representing a box eg. box=-112.5,33.75,-123,39 |
| `poly` | `string` | No | Minimum 3 pairs of coordinates representing a polygon eg. poly=-112.5,33.75,-123,39,-120,38 |
| `geohash` | `string` | No | Alphanumeric geohash eg. geohash=ezs42 |

## Returns

Events emitted by Bridge Interactive Platform.

## Run it

**TypeScript**

```ts
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const deployed = await pd.triggers.deploy({
  id: "bridge_interactive_platform-new-listing-created",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    bridge_interactive_platform: { authProvisionId: "apn_xxxxxxx" },
    timer: { "intervalSeconds": 900 },
    dataset: "Dataset",
  },
  webhookUrl: "https://example.com/webhooks/bridge-interactive-platform",
})

console.log(deployed.id)
```

**cURL**

```bash
curl -X POST https://api.pipedream.com/v1/connect/{project_id}/triggers/deploy \
  -H "Content-Type: application/json" \
  -H "X-PD-Environment: production" \
  -H "Authorization: Bearer {access_token}" \
  -d '{
    "external_user_id": "{external_user_id}",
    "id": "bridge_interactive_platform-new-listing-created",
    "webhook_url": "https://example.com/webhooks/bridge-interactive-platform",
    "configured_props": {
      "bridge_interactive_platform": { "authProvisionId": "apn_xxxxxxx" },
      "timer": { "intervalSeconds": 900 },
      "dataset": "Dataset"
    }
  }'
```

**MCP**

MCP servers expose Bridge Interactive Platform actions as on-demand tools.

New Listing Created is an event source, so your application deploys it with the Connect SDK or API and then either receives each event at a webhook URL or retrieves events on demand with the trigger events API.

## Event delivery

Every event is sent to the HTTP endpoint you choose when you deploy the source. Or: no webhook required — your app or agent can fetch recent events from the [trigger events API](https://pipedream.com/docs/connect/api-reference/list-trigger-events.md) instead.

---

- App: https://pipedream.com/apps/bridge-interactive-platform.md · All apps: https://pipedream.com/apps
