Bridge · Capability

Bridge RESO Web API — Office

Query the RESO Office (brokerage) resource via Bridge's OData endpoint.

Bridge RESO Web API — Office 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: Search brokerages via Bridge RESO Web API. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Bridge, RESO, Office, Brokerage, and MLS.

Run with Naftiko BridgeRESOOfficeBrokerageMLSOData

MCP Tools

bridge-list-offices

Search brokerages via Bridge RESO Web API.

read-only idempotent

Capability Spec

reso-web-api-office.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Bridge RESO Web API — Office
  description: Query the RESO Office (brokerage) resource via Bridge's OData endpoint.
  tags: [Bridge, RESO, Office, Brokerage, MLS, 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-office
    baseUri: https://api.bridgedataoutput.com/api/v2/OData
    resources:
    - name: office
      path: /{dataset}/Office
      operations:
      - name: listOffices
        method: GET
        description: Query Office records.
        outputRawFormat: json
        inputParameters:
        - { name: dataset, in: path, type: string, required: true }
        - { name: $filter, 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-office-mcp
    port: 9090
    transport: http
    tools:
    - name: bridge-list-offices
      description: Search brokerages via Bridge RESO Web API.
      hints: { readOnly: true, destructive: false, idempotent: true }
      call: bridge-office.listOffices
      with: { dataset: tools.dataset, $filter: tools.filter, $top: tools.top }
      outputParameters:
      - { type: object, mapping: $. }