mlsgrid · Capability

Office Replication

Office Replication is a Naftiko capability published by mlsgrid, one of 6 capabilities the APIs.io network indexes for this provider.

Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Run with Naftiko

Capability Spec

office-replication.yaml Raw ↑
apiVersion: naftiko.dev/v1
kind: Capability
metadata:
  name: mlsgrid-office-replication
  title: Replicate MLS Grid Office records
  description: Incrementally replicate Office (brokerage) records from one or more MLS Grid originating systems.
  provider: mlsgrid
  api: mlsgrid-reso-web-api
spec:
  binding:
    method: GET
    url: https://api.mlsgrid.com/v2/Office
    auth: bearer
  inputs:
  - name: originatingSystemName
    type: string
    required: true
  - name: modifiedSince
    type: string
    format: date-time
    required: true
  query:
    $filter: OriginatingSystemName eq '{originatingSystemName}' and ModificationTimestamp gt {modifiedSince}
  pagination:
    type: odata-next-link
    nextField: '@odata.nextLink'
  rateLimits:
    rps: 2
    perHour: 7200
    perDay: 40000