Skip to main content

Statistics

GET /v1/stats

Returns aggregate statistics across the entire filing database. Useful for building dashboards and summary views.

Parameters

This endpoint takes no parameters.

Example Request

curl -X GET "https://api.acqatlas.com/v1/stats" \
-H "Authorization: Bearer YOUR_API_KEY"

Example Response

{
"data": {
"totalFilings": 248531,
"uniqueOwners": 187204,
"avgAmount": 8432.50,
"minAmount": 52.00,
"maxAmount": 1250000.00,
"totalValue": 2095487632.00,
"newThisWeek": 1243,
"newThisMonth": 5872,
"trustCount": 18742,
"estateCount": 3291,
"combinedTrustEstate": 22033,
"trustPercentage": 7.54,
"combinedPercentage": 8.86
}
}

Response Fields

FieldTypeDescription
totalFilingsintegerTotal number of filings in the database.
uniqueOwnersintegerNumber of distinct property owners.
avgAmountnumberAverage filing amount in dollars.
minAmountnumberSmallest filing amount in the database.
maxAmountnumberLargest filing amount in the database.
totalValuenumberSum of all filing amounts.
newThisWeekintegerNumber of filings added in the last 7 days.
newThisMonthintegerNumber of filings added in the last 30 days.
trustCountintegerNumber of filings where the owner is a trust.
estateCountintegerNumber of filings where the owner is an estate.
combinedTrustEstateintegerTotal filings owned by trusts or estates.
trustPercentagenumberPercentage of all filings owned by trusts.
combinedPercentagenumberPercentage of all filings owned by trusts or estates.
note

Statistics are computed across all filings regardless of your subscription tier. The values reflect the full database, not just the fields your tier can access.