Bridge · Capability

Bridge ZG Data — Parcels

Access Zillow Group Data (parcels, assessments, economic feeds) delivered through Bridge's OData surface.

Bridge ZG Data — Parcels is a Naftiko capability published by Bridge, one of 9 capabilities the APIs.io network indexes for this provider. It bundles 1 operation.

The capability includes 1 read-only operation. Lead operation: Query ZG Data parcels via Bridge. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Bridge, Zillow, Parcels, Public Records, and OData.

Run with Naftiko BridgeZillowParcelsPublic RecordsOData

MCP Tools

bridge-list-parcels

Query ZG Data parcels via Bridge.

read-only idempotent

Capability Spec

zg-data-parcels.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Bridge ZG Data — Parcels
  description: Access Zillow Group Data (parcels, assessments, economic feeds) delivered through Bridge's OData surface.
  tags: [Bridge, Zillow, Parcels, Public Records, OData]
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys: { BRIDGE_ACCESS_TOKEN: BRIDGE_ACCESS_TOKEN }
capability:
  consumes:
  - type: http
    namespace: bridge-zg-parcels
    baseUri: https://api.bridgedataoutput.com/api/v2/OData
    resources:
    - name: parcels
      path: /{dataset}/Parcel
      operations:
      - name: listParcels
        method: GET
        description: Query parcel records (dataset must be a licensed ZG Data parcel feed).
        outputRawFormat: json
        inputParameters:
        - { name: dataset, in: path, type: string, required: true }
        - { name: $filter, in: query, type: string }
        - { name: $select, in: query, type: string }
        - { name: $top, in: query, type: integer }
        outputParameters:
        - { name: result, type: object, value: $. }
    authentication:
      type: apikey
      key: access_token
      value: '{{env.BRIDGE_ACCESS_TOKEN}}'
      placement: query
  exposes:
  - type: mcp
    namespace: bridge-zg-parcels-mcp
    port: 9090
    transport: http
    tools:
    - name: bridge-list-parcels
      description: Query ZG Data parcels via Bridge.
      hints: { readOnly: true, destructive: false, idempotent: true }
      call: bridge-zg-parcels.listParcels
      with: { dataset: tools.dataset, $filter: tools.filter, $top: tools.top }
      outputParameters:
      - { type: object, mapping: $. }