Crexi

Property Search API

GET https://api.dataextractorpro.com/search ⚡ 1 Credit

The Property Search endpoint allows you to find commercial property listings using filters such as location, price range, property type, and investment criteria.

Overview

This API endpoint allows programmatically extracting clean, structured data for Crexi.

Authentication

Include your API key in the request header:

x-api-key: YOUR_API_KEY
Request Parameters
Parameter Type Required Description & Allowed Values Try Parameter
city
city
text Optional
City name used for location filtering
code
code
text Optional
State code (example: NY, CA, OH). It can also be obtained from suggestions endpoint.
lat
lat
text Optional
Latitude coordinate which can be obtained from suggestions endpoint.
lng
lng
text Optional
Longitude coordinate which can be obtained from suggestions endpoint.
page
page
text Optional
page
sort
sort
select Optional
Parameter sort can accept the following values : recommended newlistings recentlyupdated sqft(hightolow) sqft(lowtohigh) noi(hightolow) noi(lowtohigh) units(hightolow) units(lowtohigh)
Allowed Values: recommended newlistings recentlyupdated sqft(hightolow) sqft(lowtohigh) noi(hightolow) noi(lowtohigh) units(hightolow) +1 more
Code Examples

                                
                                
                                
                            
Error Responses
400 Invalid Parameters
One or more required parameters are missing or invalid.
{
    "status": "error",
    "message": "Parameter 'q' is required"
}
401 Unauthorized
Invalid or missing API key in x-api-key header.
{
    "status": "error",
    "message": "Invalid API key"
}
429 Rate Limit / Quota Exceeded
API key usage quota has been exhausted.
{
    "status": "error",
    "message": "Usage limit reached"
}
500 Internal Server Error
An unexpected server error occurred during extraction.
{
    "status": "error",
    "message": "Internal extraction error"
}