Realtor

v1.0.0

Realtor.com — search listings, agents, and property details via API

0· 278·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for aiwithabidi/realtor.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Realtor" (aiwithabidi/realtor) from ClawHub.
Skill page: https://clawhub.ai/aiwithabidi/realtor
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required env vars: REALTOR_API_KEY
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Canonical install target

openclaw skills install aiwithabidi/realtor

ClawHub CLI

Package manager switcher

npx clawhub@latest install realtor
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
Name/description, CLI commands, and the single required env var (REALTOR_API_KEY) align with the script's behavior: it calls Realtor endpoints via RapidAPI (realtor16.p.rapidapi.com) using X-RapidAPI-Key.
!
Instruction Scope
SKILL.md instructs running the included Python CLI and nothing else, which matches the script. However, the runtime script will attempt to read a .env file from $WORKSPACE or ~/.openclaw/workspace/.env as a fallback when REALTOR_API_KEY is not in the environment; this behavior is not declared in SKILL.md and expands the skill's file-access scope.
Install Mechanism
No install steps (instruction-only with an included script). Nothing is downloaded or written to disk by an installer, so install risk is low.
!
Credentials
The declared required credential (REALTOR_API_KEY) is appropriate. But the script also reads the WORKSPACE env var to locate a .env file if the key is not in the environment. WORKSPACE was not declared in requires.env and reading a .env introduces a small risk if that file contains other secrets or is in an unexpected location.
Persistence & Privilege
always is false and the skill does not persistently modify agent/system configuration. It only performs network requests at runtime and exits; no elevated privileges requested.
Assessment
This skill appears to do what it says: call Realtor endpoints via RapidAPI using your REALTOR_API_KEY. Before installing, note two things: (1) the script will fall back to reading a .env file from $WORKSPACE or ~/.openclaw/workspace/.env if the environment variable is not set — if you keep other secrets in that .env, consider moving them or ensuring the file is safe; (2) the API host used is a RapidAPI endpoint (realtor16.p.rapidapi.com), not realtor.com itself — confirm you are comfortable using a RapidAPI-backed integration. Recommended precautions: review the included script yourself, provide a scoped API key (rotate/revoke if unsure), avoid storing unrelated secrets in the workspace .env, and only enable the skill for agents you trust to call external APIs.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

🏡 Clawdis
EnvREALTOR_API_KEY
Primary envREALTOR_API_KEY
latestvk97c2pfnx4jpyny75ccvf0kmgd82cz34
278downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

🏡 Realtor.com

Realtor.com — search listings, agents, and property details via API

Requirements

VariableRequiredDescription
REALTOR_API_KEYRapidAPI key for Realtor API

Quick Start

# Search for-sale listings
python3 {{baseDir}}/scripts/realtor.py search-sale --city <value> --state_code <value> --postal_code <value> --price_min <value> --price_max <value>

# Search rentals
python3 {{baseDir}}/scripts/realtor.py search-rent --city <value> --state_code <value> --postal_code <value>

# Search recently sold
python3 {{baseDir}}/scripts/realtor.py search-sold --city <value> --state_code <value>

# Get property details
python3 {{baseDir}}/scripts/realtor.py property --property_id <value>

# Search agents
python3 {{baseDir}}/scripts/realtor.py agents --city <value> --state_code <value> --name <value>

# Get agent details
python3 {{baseDir}}/scripts/realtor.py agent-get --nrds_id <value>

# Location auto-complete
python3 {{baseDir}}/scripts/realtor.py auto-complete --input <value>

All Commands

CommandDescription
search-saleSearch for-sale listings
search-rentSearch rentals
search-soldSearch recently sold
propertyGet property details
agentsSearch agents
agent-getGet agent details
auto-completeLocation auto-complete

Output Format

All commands output JSON by default. Add --human for readable formatted output.

python3 {{baseDir}}/scripts/realtor.py <command> --human

Script Reference

ScriptDescription
{{baseDir}}/scripts/realtor.pyMain CLI — all commands in one tool

Credits

Built by M. Abidi | agxntsix.ai YouTube | GitHub Part of the AgxntSix Skill Suite for OpenClaw agents.

📅 Need help setting up OpenClaw for your business? Book a free consultation

Comments

Loading comments...