Count
By setting num_records
to 0 when running a property search, you can find the number of matching results for a query without using any record credits. This is a zero-cost way to test the API for available data.
Example input:
{
"query": "country:US",
"num_records":0
}
Example response:
{
"num_found": 228865703
}
From this result we can tell that we have a total of 228,865,703 records matching the search parameters. This knowledge is great for testing your query syntax, seeing expected results before pulling real data, or sanity checking results from previous searches.
Count Feature
Please note that this is feature is only for paid accounts. So please check your account plan or contact [email protected].
Use cases
Check out some of our use cases that use the Count feature:
Updated 16 days ago