Skip to main content

Search Filings

GET /v1/filings/search

Performs a full-text search across filing records. The search term is matched against owner names, property addresses, case numbers, and county names.

Query Parameters

ParameterTypeDefaultDescription
qstringrequiredSearch term. Searches across owner, property address, case number, and county.
min_amountnumberMinimum filing amount in dollars.
max_amountnumberMaximum filing amount in dollars.
property_typestringFilter by property type (e.g., residential, commercial).
date_rangeintegerOnly return filings recorded within the last N days.
citystringFilter by city name.
sort_bystringrecord_dateField to sort results by. One of: record_date, filing_amount, current_amount, property_owner, created_at.
sort_orderstringDESCSort direction. One of: ASC, DESC.
limitinteger20Number of results per page. Max 100.
offsetinteger0Number of results to skip for pagination.

Example Request

curl -X GET "https://api.acqatlas.com/v1/filings/search?q=Smith&min_amount=1000&sort_by=filing_amount&sort_order=DESC&limit=5" \
-H "Authorization: Bearer YOUR_API_KEY"

Example Response

{
"success": true,
"data": [
{
"id": 67890,
"county": "Franklin, OH",
"caseNumber": "2025-TX-008732",
"owner": "Smith Family Trust",
"propertyAddress": "5678 Oak Ave, Columbus, OH 43201",
"filingType": "Tax Lien",
"filingAmount": 28750.00,
"currentAmount": 29100.00,
"filingDate": "2025-05-10",
"filingHolder": "Franklin County Treasurer",
"categories": ["residential"]
},
{
"id": 67891,
"county": "Hamilton, OH",
"caseNumber": "2025-ML-001234",
"owner": "Robert J. Smith",
"propertyAddress": "910 Elm St, Cincinnati, OH 45202",
"filingType": "Municipal Lien",
"filingAmount": 8200.00,
"currentAmount": 8200.00,
"filingDate": "2025-04-22",
"filingHolder": "City of Cincinnati",
"categories": ["commercial"]
}
],
"pagination": {
"total": 47,
"limit": 5,
"offset": 0,
"has_more": true
},
"meta": {
"request_id": "req_abc123",
"tier": "free",
"rate_limit_remaining": 93
}
}

Sort Options

sort_by ValueDescription
record_dateDate the filing was recorded (default).
filing_amountOriginal filing amount.
current_amountCurrent outstanding amount.
property_ownerAlphabetical by owner name.
created_atDate the record was added to Acquisition Atlas.
tip

Use the q parameter for broad searches. For example, searching "123 Main" will match any filing with that substring in the owner name, address, case number, or county. Combine with filters like min_amount or city to narrow results.

Response Fields by Tier

Search results return the same tier-based fields as the List Filings endpoint:

  • Free -- ~16 core fields
  • Pro -- Core fields plus enriched property data
  • Enterprise -- All fields plus skip trace contacts