Search Via Street Address
Introduction
Datafiniti's business data can be used to enrich, search, or verify almost any business you want. In this example we will show you how to use Datafiniti business search API to query for specific addresses.
Search Using Street Address
Since street addresses can be broken down into many parts, we will query based on each individual part. You can determine your fields to search via our Business Data Schema. We will query based on each part at the following address:
- 700 E 6th St, Austin, TX 78701
{
"query": "address:"700 East 6th St" AND city:Austin AND province:TX",
"num_records":1
}
Exact Matches
Notice that in the address field, we use " " to search for the exact address string. This will ensure that we are not fuzzy-matching and are only looking for the specific address string.
Street Name Abbreviations
Datafiniti normalizes street designations to standardized abbreviations, and you should use normalized forms when you need an exact match against Datafiniti property data. You can find out more about this process, Normalized Property Addresses.
Search For Unit
Sometimes your business can be a unit, suite, etc that is designated by an unit/suite number. In this example we will show how to query for the following address:
- 4613 S Congress Avenue, Austin, TX 78722, unit k
{
"query": "address:"4613 S Congress Ave unit k" AND city:Austin AND province:TX",
"num_records":1
}
Notice that we are using the exact match to how the source of the address displays the unit name.
Search For Suite Address
Sometimes your business can be a unit, suite, etc that is designated by an unit/suite number. In this example we will show how to query for the following address:
- 8701 W Parmer Ln, Austin, TX 78745, Suite 2128
{
"query": "address:"8701 W Parmer Ln Suite 2128" AND city:Austin AND province:TX",
"num_records":1
}
Matching Suite/Unit Addresses
Please note that we do normalize partially the suite/unit of the address depending on the source of the data. Since this address is separated from the suite number, we stitch the two string together to form the address in the record.
You can always add any field search from our business schema.
Example Files
Here are example bulk download files of our previous query:
Last updated 6 days ago
Built with Documentation.AI