Skip to main content

Query Parameters

location
string
required
Free-text location: a city (“Houston, TX”), a ZIP code (“77002”), a state code (“TX”), or usa for the whole country.
market
string
default:"us"
Which market to search: us (loopnet.com, USD), ca (loopnet.ca, CAD), uk (loopnet.co.uk, GBP), fr (loopnet.fr, EUR), or es (loopnet.es, EUR).
listing_type
string
default:"for-lease"
Listing type filter.
ValueDescription
for-leaseSpace for lease (default)
for-saleProperties for sale
auctionsAuction listings
property_type
string
Property-type slug, e.g. office, retail, industrial, apartment-buildings, land. Defaults to all commercial real estate. Use the /v1/loopnet/property-types endpoint for the full list.
page
integer
default:1
Page number for paginated results. Range: 1 - 20 (LoopNet caps results at roughly 500 per query, ~25 per page).
min_price
number
Minimum price in the market’s local currency.
max_price
number
Maximum price in the market’s local currency.
price_type
string
How min_price / max_price are interpreted: unit (total price), sf (per square foot), or acre (per acre).
min_size
integer
Minimum size in square feet.
max_size
integer
Maximum size in square feet.

Response

market
string
The market that was searched (us, ca, uk, fr, or es).
country
string
ISO 3166-1 alpha-2 country code for the market.
currency
string
ISO 4217 currency code for the market.
listing_type
string
The listing type that was searched (for-lease, for-sale, or auctions).
property_type
string
The property-type slug that was searched (nullable).
location
string
The location that was searched (nullable).
results
array
Array of matching listing cards.
pagination
object
Pagination info.
scraped_utc
number
Scrape time as a Unix timestamp (nullable).
scraped_at
string
Scrape time as an ISO-8601 string (nullable).

Example Response

{
  "market": "us",
  "country": "US",
  "currency": "USD",
  "listing_type": "for-sale",
  "property_type": "office",
  "location": "Houston, TX",
  "results": [
    {
      "position": 1,
      "listing_id": "12345678",
      "property_id": "87654321",
      "url": "https://www.loopnet.com/Listing/1000-Main-St-Houston-TX/12345678/",
      "listing_type": "for-sale",
      "property_type": "Office",
      "space_use": "Office",
      "status": "Active",
      "exposure_level": "Diamond",
      "is_auction": false,
      "title": "1000 Main Street",
      "subtitle": "Class A Office Tower",
      "description": "Trophy office tower in Houston's CBD with panoramic skyline views.",
      "building_rating": 4.5,
      "year_built": 2003,
      "price_text": "$45,000,000",
      "price": 45000000,
      "price_currency": "USD",
      "price_period": null,
      "size_text": "836,000 SF",
      "size_min_sqft": 836000,
      "size_max_sqft": 836000,
      "address": "1000 Main St",
      "city": "Houston",
      "state": "TX",
      "zip": "77002",
      "county": "Harris",
      "country": "US",
      "latitude": 29.7539,
      "longitude": -95.3631,
      "thumbnail": "https://images1.loopnet.com/i2/abc/110/photo.jpg",
      "has_virtual_tour": true,
      "brokers": [
        { "name": "John Smith", "company": "CBRE", "phone": "713-555-0100", "broker_id": "w7x2k9d" }
      ]
    }
  ],
  "pagination": {
    "current_page": 1,
    "per_page": 25,
    "total_pages": 12,
    "total_results": 288
  },
  "scraped_at": "2026-07-07T12:00:00Z"
}
Each search request costs 10 credits. Failed requests are not charged.