Skip to content

Instantly share code, notes, and snippets.

View davebonds's full-sized avatar

Dave Bonds davebonds

View GitHub Profile
@patpohler
patpohler / Big List of Real Estate APIs.md
Last active April 26, 2025 01:02
Evolving list of Real Estate APIs by Category

Big List of Real Estate APIs

Listings / Property Data

####Rets Rabbit http://www.retsrabbit.com

Rets Rabbit removes the nightmare of importing thousands of real estate listings and photos from RETS or ListHub and gives you an easy to use import and Web API server so you can focus on building your listing search powered website or app.

@amcn84
amcn84 / addAgentIDallForms
Created August 11, 2017 01:20
addAgentID all forms
<script type="text/javascript">
document.addEventListener("DOMContentLoaded", function(){
function addAgentID(id,formName,ord) {
var IDlocation = parseInt(ord);
var input = document.createElement("input");
input.setAttribute("type", "hidden");
input.setAttribute("name", "agentHeaderID");
input.setAttribute("value", id);
document.getElementsByClassName(formName)[IDlocation].appendChild(input);
}