Recent Terminated Filings
GET /filings/recently-terminated
Returns a list of UCC filings that have been recently been terminated via an amendment.
Query Parameters
Parameter
Type
Required
Description
state
integer
Yes
The state where UCC was terminated.
page
integer
No
The page number for pagination. Defaults to 1.
Example Request
Bash
curl --location 'https://api.springstreet.io/filings/recently-terminated?state=CT' \
--header 'x-api-key: YOUR_API_KEY'Example Response
JSON
{
"terminated_filings": [
{
"initial_financing_number": "2020011554321",
"initial_financing_date": "2020-01-15T09:00:00Z",
"termination_date": "2025-08-20T14:00:00Z",
"debtor": {
"name": "Old Business Inc.",
"address": {
"street1": "123 Main St",
"city": "Anytown",
"state": "CT",
"zip_code": "06101"
}
},
"secured_party": {
"name": "Regional Bank",
"address": {
"street1": "456 Financial Dr",
"city": "Anytown",
"state": "CT",
"zip_code": "06101"
}
}
}
],
"pagination": {
"current_page": 1,
"total_pages": 15,
"page_size": 5
},
"response_metadata": {
"timestamp": "2025-09-02T22:51:51Z",
"request_id": "f5a6b7c8-d9e0-1234-5678-efabcd456789"
}
}Last updated