Recent Filings by State
GET /filings/recent-by-state
Returns a list of UCC filings from the last 90 days for a specific state. You can optionally filter the results by debtor industry.
Query Parameters
Parameter
Type
Required
Description
state
string
Yes
The two-letter state code for the filing's origin (e.g., TX
).
industry
string
No
A comma-separated list of debtor industries (e.g., Manufacturing
).
page
integer
No
The page number for pagination. Defaults to 1
.
Example Request
Bash
curl --location 'https://api.springstreet.io/filings/recent-by-state?state=TX&industry=Construction' \
--header 'x-api-key: YOUR_API_KEY'
Example Response
JSON
{
"ucc_liens": [
{
"initial_financing_number": "2025081512345",
"initial_financing_date": "2025-08-15T10:30:00Z",
"jurisdiction_state": "TX",
"involved_parties": {
"debtor_parties": [
{
"name": "Texas Construction Co.",
"debtor_industry": "Construction & Trades",
"address": {
"street1": "789 Lone Star Blvd",
"city": "Austin",
"state": "TX",
"zip_code": "78701"
}
}
],
"secured_parties": [
{
"name": "Capital Bank",
"address": {
"street1": "101 Congress Ave",
"city": "Austin",
"state": "TX",
"zip_code": "78701"
}
}
]
}
}
],
"pagination": {
"current_page": 1,
"total_pages": 120,
"page_size": 5
},
"response_metadata": {
"timestamp": "2025-09-02T22:51:51Z",
"request_id": "d3e4f5a6-b7c8-9012-3456-cdefab234567"
}
}
Last updated