Recent Filings by Area and Industry

Get Recent Filings by Postal Code

GET /filings/recent-by-postal-code

Returns a list of recent UCC filings where the Borrower 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": "OH123123123",
            "initial_financing_date": "2025-12-21 00:00:00",
            "estimated_lien_lapse_date": "2030-12-21",
            "estimated_lien_status": "Active",
            "jurisdiction_state": "OH",
            "search_url": "https://ucc.ohiosos.gov/dashboard",
            "involved_parties": {
                "debtor_parties": [
                    {
                        "name": "JOHN DOE",
                        "type": "Individual",
                        "category": "Other",
                        "address": {
                            "street1": "123 MAIN RD",
                            "city": "SPRINGFIELD",
                            "state": "OH",
                            "zip_code": "45505-1001",
                            "country": null,
                            "maps_url": "https://www.google.com/maps/search/123Main"
                        }
                    },
                    {
                        "name": "JOHN DOE FARMS",
                        "type": "Organization",
                        "category": "Agriculture & Farming",
                        "address": {
                            "street1": "123 MAIN RD",
                            "city": "SPRINGFIELD",
                            "state": "OH",
                            "zip_code": "45505-1001",
                            "country": null,
                            "maps_url": "https://www.google.com/maps/search/123Main"
                        }
                    }
                ],
                "secured_parties": [
                    {
                        "name": "LENDER",
                        "type": "Secured Party",
                        "category": "Other",
                        "address": {
                            "street1": "123RD STREET",
                            "city": "NEW YORK",
                            "state": "NY",
                            "zip_code": "00000-0000",
                            "country": null,
                            "maps_url": "https://www.google.com/maps/search/123rd"
                        }
                    }
    ],
    "response_metadata": {
        "page": 1,
        "page_size": 10,
        "next_page": false,
        "timestamp": "2026-02-24T03:06:42.986821Z",
        "request_id": "9aba7902-65e9-4fe5-a09d-2abaa93d7f78",
        "data_source_last_updated": "2026-01-05 17:37:02.399471",
        "api_version": "1.2.0"
    }
}

Last updated