# Delaware Corporation Search — Entity Lookup by Name

**Use case:** 

Search the Delaware Division of Corporations' public entity index by name and get every matching corporation, LLC and LP with its legal name and state file number. Delaware's free index publishes nothing more — status, formation date and agent sit behind the state's paid lookup — and each record says so plainly. Useful to confirm a counterparty's exact Delaware legal name and file number for KYB.

## Input

```json
{
  "companyName": "Airbnb",
  "companyNames": [],
  "states": [
    "DE"
  ],
  "includeLiens": false,
  "matchMode": "contains",
  "maxRecordsPerCompany": 25
}
```

## Output

```json
{
  "query": {
    "label": "Query",
    "format": "string"
  },
  "input_index": {
    "label": "Input index",
    "format": "integer"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "legal_name": {
    "label": "Legal name",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "entity_status": {
    "label": "Entity status",
    "format": "string"
  },
  "lien_coverage": {
    "label": "Lien coverage",
    "format": "string"
  },
  "ucc_summary": {
    "label": "UCC summary",
    "format": "object"
  }
}
```

## About this Actor

This example demonstrates how to use [Secretary of State Business Entity Search + UCC Liens — KYB](https://apify.com/shelvick/business-entity-lien-search.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/shelvick/business-entity-lien-search.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/shelvick/business-entity-lien-search.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
