realtor · Capability

Realtor.com Property Data API — Agents

Realtor.com Property Data API — Agents. 1 operations. Lead operation: List agents. Self-contained Naftiko capability covering one Realtor business surface.

Run with Naftiko RealtorAgents

What You Can Do

GET
Listagents — List agents
/v1/agents/list

MCP Tools

list-agents

List agents

read-only idempotent

Capability Spec

property-data-agents.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Realtor.com Property Data API — Agents
  description: 'Realtor.com Property Data API — Agents. 1 operations. Lead operation: List agents. Self-contained Naftiko
    capability covering one Realtor business surface.'
  tags:
  - Realtor
  - Agents
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    REALTOR_API_KEY: REALTOR_API_KEY
capability:
  consumes:
  - type: http
    namespace: property-data-agents
    baseUri: https://realtor.p.rapidapi.com
    description: Realtor.com Property Data API — Agents business capability. Self-contained, no shared references.
    resources:
    - name: agents-list
      path: /agents/list
      operations:
      - name: listagents
        method: GET
        description: List agents
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: postal_code
          in: query
          type: string
          description: Postal code to search for agents in a specific area.
        - name: name
          in: query
          type: string
          description: Agent name to search for.
        - name: offset
          in: query
          type: integer
          description: Number of results to skip for pagination.
        - name: limit
          in: query
          type: integer
          description: Maximum number of results to return.
    authentication:
      type: apikey
      key: X-RapidAPI-Key
      value: '{{env.REALTOR_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: property-data-agents-rest
    port: 8080
    description: REST adapter for Realtor.com Property Data API — Agents. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/agents/list
      name: agents-list
      description: REST surface for agents-list.
      operations:
      - method: GET
        name: listagents
        description: List agents
        call: property-data-agents.listagents
        with:
          postal_code: rest.postal_code
          name: rest.name
          offset: rest.offset
          limit: rest.limit
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: property-data-agents-mcp
    port: 9090
    transport: http
    description: MCP adapter for Realtor.com Property Data API — Agents. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-agents
      description: List agents
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: property-data-agents.listagents
      with:
        postal_code: tools.postal_code
        name: tools.name
        offset: tools.offset
        limit: tools.limit
      outputParameters:
      - type: object
        mapping: $.