Recent Filings by Postal Code
Get Recent Filings by Postal Code
GET /filings/recent-by-postal-code
Returns a list of UCC filings from the last 90 days where the debtor is located in a specific postal code.
Query Parameters
Parameter
Type
Required
Description
postal_code
string
Yes
The debtor's postal code to search within.
industry
string
No
A comma-separated list of debtor industries to filter by.
page
integer
No
The page number for pagination. Defaults to 1
.
Example Request
Bash
curl --location 'https://api.springstreet.io/filings/recent-by-postal-code?postal_code=78701' \
--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": "Downtown Austin Business",
"debtor_industry": "Retail",
"address": {
"street1": "100 Congress Ave",
"city": "Austin",
"state": "TX",
"zip_code": "78701"
}
}
],
"secured_parties": [
{
"name": "Austin Lenders",
"address": {
"street1": "200 Colorado St",
"city": "Austin",
"state": "TX",
"zip_code": "78701"
}
}
]
}
}
],
"pagination": {
"current_page": 1,
"total_pages": 42,
"page_size": 5
},
"response_metadata": {
"timestamp": "2025-09-02T22:51:51Z",
"request_id": "e4f5a6b7-c8d9-0123-4567-defabc345678"
}
}
Last updated