Example JSON Response

JSON, or JavaScript Object Notation, is a simple machine-readable data-interchange format, which makes constructing API applications in JavaScript easy (though it can be used from other languages too!).

When an API request is successful, the following JSON response is returned:
{
link: "http://www.rentometer.com/compare/?address=123+Main+St&rent=2800&beds=2&citystatezip=94133&bt=1",
low_rent: "$2,800", 
generator: "http://www.rentometer.com",
median_rent: "$3,511", 
address: "123 Main St 94133", 
high_rent: "$4,550", 
rent: 2800, 
beds: 2, 
entered: "2007-03-08T11:21:12Z", 
zip: "94105", 

comps: [
    {distance: "0.22 (miles)", rent_amount: "$3,523", latitude: 37.78873, longitude: -122.39277}, 
    {distance: "0.28 (miles)", rent_amount: "$2,800", latitude: 37.787541, longitude: -122.395338},
    {distance: "0.29 (miles)", rent_amount: "$4,495", latitude: 37.78736, longitude: -122.39452}, 
    {distance: "0.29 (miles)", rent_amount: "$3,800", latitude: 37.78736, longitude: -122.39452}, 
    {distance: "0.33 (miles)", rent_amount: "$2,900", latitude: 37.78818, longitude: -122.39033}, 
    {distance: "0.33 (miles)", rent_amount: "$3,950", latitude: 37.786784, longitude: -122.39382}, 
    {distance: "0.34 (miles)", rent_amount: "$4,500", latitude: 37.78888, longitude: -122.38944},
    {distance: "0.34 (miles)", rent_amount: "$3,397", latitude: 37.78748, longitude: -122.39118}, 
    {distance: "0.41 (miles)", rent_amount: "$3,500", latitude: 37.78596, longitude: -122.39722}, 
    {distance: "0.44 (miles)", rent_amount: "$2,850", latitude: 37.786316, longitude: -122.399109}, 
    {distance: "0.46 (miles)", rent_amount: "$4,550", latitude: 37.78624, longitude: -122.38964}
    ], 
bt: "1"
}