# Recent Filings by State and Industry

`GET /filings/recent-by-state`

Returns a list of UCC filings for a specific state and a specific industry.&#x20;

**Query Parameters**

| Parameter  | Type    | Required | Description                                                          |
| ---------- | ------- | -------- | -------------------------------------------------------------------- |
| `state`    | string  | Yes      | The two-letter state code for the filing's origin (e.g., `TX`).      |
| `industry` | string  | Yes      | A comma-separated list of debtor industries (e.g., `Manufacturing`). |
| `page`     | integer | No       | The page number for pagination. Defaults to `1`.                     |

**Industry Codes/Parameters**

The following table is a list of industries that can be passed as parameters during the API call.

| Construction & Trades       |
| --------------------------- |
| Retail & E-commerce         |
| Real Estate                 |
| Equipment                   |
| Finance & Investments       |
| Food & Beverage             |
| Professional Services       |
| Health & Wellness           |
| Education & Training        |
| Transportation & Logistics  |
| Manufacturing               |
| Arts & Entertainment        |
| Automotive Services & Sales |
| Energy & Utilities          |
| Agriculture & Farming       |

**Example Request**

Bash

```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

```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"
  }
}
```
