Discover/Crexi API
live

Crexi APIcrexi.com

Search and retrieve commercial real estate listings from Crexi.com. Get property details, cap rates, NOI, pricing, broker info, and more via 3 endpoints.

Endpoint health
verified 7d ago
get_property_detail
get_all_listings
search_properties
3/3 passing latest checkself-healing
Endpoints
3
Updated
21d ago

What is the Crexi API?

The Crexi API gives developers structured access to commercial real estate listings across 3 endpoints, covering asking price, cap rate, NOI, broker contact details, and full property descriptions. Use search_properties to query listings by type and price range with paginated results, get_property_detail to pull full investment and occupancy data for a single property, or get_all_listings to collect every matching listing without managing pagination yourself.

Try it
Page number (1-based)
Maximum asking price filter in USD
Minimum asking price filter in USD
Results per page (max 60)
Sort field
Property type to filter by
Sort direction
api.parse.bot/scraper/ac745241-4ec0-46fa-8f98-e9ede92c503a/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/ac745241-4ec0-46fa-8f98-e9ede92c503a/search_properties?page=1&max_price=5000000&min_price=100000&page_size=5&sort_order=rank&property_type=mobile_home_park&sort_direction=Ascending' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace crexi-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Crexi SDK — search CRE listings, drill into details, bulk collect."""
from parse_apis.crexi_commercial_real_estate_listings_api import (
    Crexi, PropertyType, Sort, SortDirection, PropertyNotFound
)

client = Crexi()

# Search for multifamily properties sorted by price, capped at 5 results.
for listing in client.propertysummaries.search(
    property_type=PropertyType.MULTIFAMILY,
    sort_order=Sort.PRICE,
    sort_direction=SortDirection.ASCENDING,
    max_price=5000000,
    limit=5,
):
    print(listing.name, listing.asking_price, listing.state)

# Drill into the first result's full details (separate fetch).
summary = client.propertysummaries.search(
    property_type=PropertyType.RETAIL, limit=1
).first()
if summary:
    detail = summary.details()
    print(detail.name, detail.occupancy, detail.marketing_description)
    for broker in detail.brokers:
        print(broker.first_name, broker.last_name, broker.brokerage_name)

# Typed error handling for a missing property.
try:
    bad_summary = client.propertysummaries.search(
        property_type=PropertyType.OFFICE, limit=1
    ).first()
    if bad_summary:
        bad_summary.details()
except PropertyNotFound as exc:
    print(f"Property gone: {exc.property_id}")

# Bulk collect mobile home parks (limited to 3 items).
for park in client.propertysummaries.collect(
    property_type=PropertyType.MOBILE_HOME_PARK,
    max_results=3,
    limit=3,
):
    print(park.name, park.cap_rate, park.brokerage_name)

print("exercised: propertysummaries.search / .collect / summary.details / PropertyNotFound")
All endpoints · 3 totalmissing one? ·

Search for commercial real estate properties by type with pagination. Returns listing summaries including price, cap rate, NOI, location, and broker info. Supports sorting by relevance, price, cap rate, or listing date. Server-side filtering is limited to property type and price range; finer filters require client-side post-processing. Each PropertySummary exposes a .details() navigation to the full Property.

Input
ParamTypeDescription
pageintegerPage number (1-based)
max_pricenumberMaximum asking price filter in USD
min_pricenumberMinimum asking price filter in USD
page_sizeintegerResults per page (max 60)
sort_orderstringSort field
property_typestringProperty type to filter by
sort_directionstringSort direction
Response
{
  "type": "object",
  "fields": {
    "page": "integer, current page number",
    "listings": "array of listing summary objects with id, name, address, city, state, zip, asking_price, cap_rate, noi, property_types, brokerage_name, and more",
    "page_size": "integer, results per page",
    "total_count": "integer, total number of matching listings",
    "total_pages": "integer, total number of pages"
  },
  "sample": {
    "data": {
      "page": 1,
      "listings": [
        {
          "id": 2492681,
          "noi": null,
          "url": "https://www.crexi.com/properties/2492681",
          "zip": "60615",
          "city": "Chicago",
          "name": "8-Unit Apartment Building",
          "state": "IL",
          "county": "Cook County",
          "has_om": true,
          "status": "Auction",
          "address": "211-213 E 48th St, Chicago, Cook County, IL 60615",
          "cap_rate": null,
          "latitude": 41.8073302,
          "has_flyer": false,
          "has_video": true,
          "longitude": -87.6205852,
          "occupancy": null,
          "is_auction": true,
          "state_name": "Illinois",
          "updated_on": "2026-06-10T20:22:45Z",
          "year_built": null,
          "broker_name": null,
          "building_sf": 9900,
          "description": "VALUE-ADD MULTIFAMILY OPPORTUNITY",
          "activated_on": "2026-05-22T18:45:17Z",
          "asking_price": 100000,
          "price_per_sf": 10.1,
          "offers_due_on": "2026-07-15T16:00:00Z",
          "thumbnail_url": "https://images.crexi.com/assets/2492681/773961044ffe4075b2b7b322361ae6af_716x444.jpg",
          "brokerage_name": "Colliers - Chicago Downtown, Illinois",
          "lot_size_acres": 0.12,
          "price_per_acre": "$833,333.33/Acre",
          "price_per_unit": null,
          "property_types": [
            "Multifamily"
          ],
          "number_of_units": 8,
          "is_in_opportunity_zone": true
        }
      ],
      "page_size": 5,
      "total_count": 29144,
      "total_pages": 5829
    },
    "status": "success"
  }
}

About the Crexi API

What the API Returns

The search_properties endpoint returns paginated listing summaries filtered by property_type and price range (min_price / max_price). Each result includes id, name, address, city, state, zip, asking_price, cap_rate, noi, property_types, and brokerage_name. You can sort results by relevance, price, cap rate, or listing date using sort_order and sort_direction, and control page size up to 60 results per request. Note that server-side filtering is limited to property type and price — additional filtering must be applied client-side.

Property Detail

get_property_detail accepts a numeric property_id from search results and returns a single property record. Beyond the summary fields, the response includes status, a brokers array with each broker's name and brokerage, a details object containing human-readable key-value pairs covering occupancy, investment type, and loan information, plus a full marketing description. This endpoint is the right tool when you need the full picture for a specific listing rather than a summary across many.

Bulk Retrieval

get_all_listings handles automatic pagination internally, iterating through pages until either max_results is reached or the full result set is collected. It returns the same listing shape as search_properties plus a complete boolean indicating whether all matching listings were fetched, a fetched_count, and a total_count. An optional delay parameter controls the interval between page requests. Use this endpoint when you need to build a local dataset without writing pagination loops.

Reliability & maintenanceVerified

The Crexi API is a managed, monitored endpoint for crexi.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when crexi.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official crexi.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
7d ago
Latest check
3/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Screen commercial investment properties by cap rate and NOI across a specific property type
  • Build a market survey of asking prices for retail or industrial properties in a target region
  • Aggregate broker contact data from listings to identify active CRE brokerages in a market
  • Monitor new listings by sorting on listing date and comparing total_count over time
  • Pull full property details including occupancy and loan terms for underwriting workflows
  • Compile a bulk dataset of all listings matching a price range for comparative market analysis
  • Enrich an internal CRE database with standardized address and property type fields from Crexi
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Crexi have an official developer API?+
Crexi does not publish a public developer API or documentation for third-party data access. This Parse API provides structured access to Crexi listing data.
What filtering options does search_properties support server-side?+
Server-side filtering is limited to property_type and price range via min_price and max_price. Fields like city, state, occupancy, or investment type are returned in the response but are not available as query filters — you would need to apply those filters on the results after retrieval.
Does get_property_detail return the broker's phone number or email address?+
The brokers array in get_property_detail returns id, first_name, last_name, and brokerage_name. Direct contact fields such as phone numbers or email addresses are not currently included in the response. The API covers listing-level broker identity data. You can fork it on Parse and revise to add those fields if they become accessible.
Is there a way to filter listings by geographic area such as city or state?+
Geographic filtering by city, state, or zip code is not currently supported as a query parameter. The search_properties and get_all_listings endpoints accept property_type and price range filters only. City, state, and zip are returned on each listing object, so geo-filtering can be applied client-side after fetching. You can fork the API on Parse and revise it to add a location-based filter endpoint.
How does get_all_listings differ from calling search_properties repeatedly?+
get_all_listings handles pagination internally and returns a single consolidated array of listing objects along with a complete boolean, fetched_count, and total_count. It also accepts a delay parameter to space out requests. search_properties returns one page at a time and requires you to manage page incrementing and termination logic yourself.
Page content last updated . Spec covers 3 endpoints from crexi.com.
Related APIs in Real EstateSee all →
cbre.com API
Search CBRE's commercial real estate listings by location, property type, and transaction (lease or sale) to find available properties and spaces that match your criteria. Access detailed property information including pricing, agent contacts, and specific space details to evaluate investment or leasing opportunities.
realcommercial.com.au API
Search commercial property listings across Australia, view detailed property information, and stay updated with the latest real estate market news all from one platform. Find investment opportunities, compare properties, and read industry insights to make informed decisions in the commercial property market.
loopnet.com API
Access LoopNet's commercial real estate data programmatically. Search listings by location, property type, and transaction type; retrieve full listing details including pricing and property facts; and find and profile commercial real estate brokers.
realtor.com API
Search millions of real estate listings on Realtor.com, view detailed property information, find qualified agents in your area, and access market analytics to understand pricing trends. Get location suggestions and property insights all in one place to help you make informed decisions about buying, selling, or investing in real estate.
exprealty.com API
Search eXp Realty property listings by location with pagination, and access detailed information like images, agent contacts, and property history for any listing. Discover new locations and browse available homes all in one integrated experience.
rent.com API
Browse and extract rental property data from Rent.com. Search listings by location and filter by beds, baths, price, and pet policy. Retrieve full property details, floor plans, unit availability, amenities, nearby schools, points of interest, and active specials.
propiedades.com API
Search and browse real estate listings from Mexico's Propiedades.com, view detailed property information including images and descriptions, and use location autocomplete to find homes in your desired area. Access comprehensive listing data to compare properties and make informed real estate decisions.
properati.com.ar API
Search and browse real estate listings in Argentina with detailed property information, including descriptions, prices, and similar properties. Filter listings by property type and operation type (buy, rent, etc.) to find exactly what you're looking for.