Data Sources

Business entities | Louisiana

Louisiana Secretary of State

Search Louisiana Secretary of State business records by company name, charter number, registered agent, or address, including entity status, filing details, registered office, officers, previous names, and source record links.

Louisiana Secretary of State

Available

Search Louisiana Secretary of State business records by company name, charter number, registered agent, or address, including entity status, filing details, registered office, officers, previous names, and source record links.

Get API key

Endpoint

GET /api/v1/sources/la-sos-business/search

Parameters

qBusiness name, charter, agent, or address
limitMaximum results to return
waitMsOptional wait for live source collection

Fields

ReturnsFields
Source search
namecharterNumberentityTypestatusregisteredAgentdomicileAddressmailingAddressannualReportStatusregistrationDatefileDatelastReportFiledpreviousNamesregisteredAgentsofficersaffiliationsamendmentsrecordTypesourceRecordUrlsource

Use the source endpoint when you want the fuller SOS source record.

Example request
curl --get "https://recordsdb.com/api/v1/sources/la-sos-business/search" \
  --data-urlencode "q=Example Holdings LLC" \
  --data-urlencode "limit=20" \
  --header "Authorization: Bearer $RECORDSDB_API_KEY"
Sample response
{
  "data": [
    {
      "name": "EXAMPLE HOLDINGS LLC",
      "charterNumber": "00000000K",
      "entityType": "Limited Liability Company",
      "status": "Active",
      "registeredAgent": "Example Registered Agent",
      "source": "Louisiana Secretary of State"
    }
  ]
}