Professional
State Business Entity Lookup
Search Secretary of State business filings across all 50 states. Entity status, formation date, registered agent, entity type (LLC, Corp, LP), and principal address.
GET /api/v1/pro/entities Requires API key Parameters
| name | Entity name (partial match) |
| number | State filing number |
| state | Two-letter state code |
| type | LLC, CORPORATION, LP, LLP, etc. |
| status | ACTIVE, DISSOLVED, SUSPENDED, etc. |
curl -H "Authorization: Bearer pro_YOUR_KEY" \
"https://api.verilexdata.com/api/v1/pro/entities?name=Acme&state=CA" Response
{
"dataset": "entities",
"count": 2,
"data": [
{
"jurisdiction": "US_CA",
"entity_name": "ACME CORPORATION",
"entity_number": "C1234567",
"entity_type": "CORPORATION",
"status": "ACTIVE",
"formation_date": "2015-03-12",
"dissolution_date": null,
"registered_agent": "CT CORPORATION SYSTEM",
"principal_address": "123 MAIN ST, LOS ANGELES CA 90012",
"state": "CA"
}
]
} Use cases
Vendor and partner due diligence
Good standing verification for lending
Registered agent lookups for legal service
CPA annual report compliance checks