Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.topograph.co/llms.txt

Use this file to discover all available pages before exploring further.

Table of Contents

Data Sources

All entity data comes from the Indiana Secretary of State, Business Services Division via the INBiz portal (bsd.sos.in.gov). This is the official state register for all business entities formed or qualified to do business in Indiana, including domestic and foreign corporations, LLCs, limited partnerships, nonprofits, and other entity types. Every request hits the live register. There is no bulk data export or REST API. The response is always authoritative and up to date.
Indiana is a single-source country. Company profile, registered agent, governing persons, and search all come from the live Indiana SoS portal. The Trade Register Extract and Secretary-of-State-signed Certified Copies are included in the document catalogue.

Company Identifiers

Query Identifiers

Identifier TypeFormatExampleNotes
Indiana Business IDMultiple format eras (see below)183025-143Primary identifier assigned by the Indiana Secretary of State at registration
Indiana Business IDs span several format eras depending on when the entity was formed:
EraFormatExample
Modern (2000s–present)13–16 digit sequential2001111900027
Legacy numeric (1990s–2000s)8–12 digit numeric1997051343
Hyphenated legacy (pre-2000)NNNNNN-NNN183025-143
Limited partnershipsLPNNNNNNNNLP93120064
The Indiana Business ID is the only identifier supported for company retrieval. To find an ID from a name, use the search endpoint first. All four format eras are accepted for search and lookup.

Identifiers in API Response

IdentifierFormatExampleFound In
idIndiana Business ID (as registered)183025-143All entities

Search Capabilities

Search TypePatternExampleMatch TypeExpected Results
By Name2–250 chars"Eli Lilly and Company"ContainsMultiple results
By Business IDID format183025-143ExactSingle company
Name search supports contains-matching across all registered entity names. Business ID search locates a single entity by its exact identifier and is the recommended path when the ID is known.

Quirks & Gotchas

QuirkDetails
No bulk dataIndiana does not offer bulk corporate data exports. Every lookup is resolved live against the register portal.
No shareholdersIndiana does not publish shareholder or ownership information at the state level.
No activity codesIndustry classification codes (NAICS / NACE) are not collected at the state level.
Governing persons paginatedThe portal renders governing persons across multiple pages. All pages are retrieved and returned.
Registered agent as OtherKeyPersonThe registered agent is returned under otherKeyPersons with role Registered Agent.
No formation jurisdiction for foreign entitiesThe jurisdiction of formation is not consistently shown for foreign entities on the public portal.

Mappings

Company Status

Status is read from the entity status field on the detail page.
Source ValueActive
Activetrue
Admin Dissolvedfalse
Cancelledfalse
Expiredfalse
Inactivefalse
Judicially Dissolvedfalse
Mergedfalse
Revokedfalse
Voluntarily Dissolvedfalse
Withdrawnfalse
Indiana entity types are published in plain English on the portal. The 35 distinct values cover domestic and foreign formations across all major entity classes. Domestic entities:
Indiana TypeStandardized
Domestic For-Profit CorporationCorporation
Domestic Benefit CorporationCorporation
Domestic Professional CorporationCorporation
Domestic Nonprofit CorporationNon-Profit
Domestic Limited Liability CompanyLimited Liability Company
Domestic Master LLCLimited Liability Company
Domestic Limited PartnershipLimited Partnership
Domestic Limited Liability PartnershipLimited Liability Partnership
Domestic Business TrustTrust
Domestic Agricultural CoopCooperative
Foreign entities follow the same pattern with a “Foreign” prefix.

Other Key Persons

The registered agent is always returned as an OtherKeyPerson. Indiana identifies whether the agent is an individual or a corporate registered agent.
RoleStandardizedNotes
Registered AgentRegisteredAgentAlways present when declared on the portal

Data Availability

DatapointAvailableNotes
Legal nameYes
Entity type / legal formYesAI-standardized
StatusYesAI-enriched with statusDetails
Formation dateYes
Principal addressYesGeocoded with fallback to structured address
Governing personsYesAll pages fetched
Registered agentYesIndividual or corporate
ShareholdersNoNot published by Indiana SoS
UBONoNo state-level register; federal BOI records are not public
Activity codesNoNot collected at state level

Documents

Trade Register Extract

A server-generated PDF of the entity’s detail page. Includes the entity’s legal name, entity number, type, status, formation date, principal address, registered agent, and governing persons.
PropertyValue
FormatPDF
SourceIndiana Secretary of State portal
TTL1 day

Certified Copy

A Secretary-of-State-signed PDF containing the full filing history for the entity, with a certification date, entity name, and a validation URL. Valid for 30 days from issue. Certified copies are offered in filing-type-scoped variants. Only variants for which the entity has filings with content are advertised.
Filing Type VariantAvailable When
Certified Copy — Articles of IncorporationEntity has filings of this type
Certified Copy — Business Entity ReportEntity has filings of this type
Certified Copy — Articles of AmendmentEntity has filings of this type
PropertyValue
FormatPDF
SourceIndiana Secretary of State portal
TTL25 days

Example API Responses

Company Profile: Domestic For-Profit Corporation

{
  "company": {
    "id": "183025-143",
    "countryCode": "US-IN",
    "legalName": "ELI LILLY AND COMPANY",
    "registrationDate": "1901-01-17",
    "status": {
      "localName": "Active",
      "active": true,
      "statusDetails": { "status": "ACTIVE" }
    },
    "legalForm": {
      "localName": "Domestic For-Profit Corporation",
      "englishTranslation": "Domestic For-Profit Corporation",
      "standardized": "Corporation"
    },
    "legalAddress": {
      "addressLine1": "LILLY CORPORATE CENTER",
      "city": "Indianapolis",
      "region": "IN",
      "postalCode": "46285",
      "countryCode": "US",
      "latitude": 39.757,
      "longitude": -86.152
    }
  }
}
{
  "entityId": "person_001",
  "type": "individual",
  "role": {
    "localName": "Chair, President, and Chief Executive Officer",
    "englishTranslation": "Chair, President, and Chief Executive Officer",
    "standardized": "Chairman of the Board"
  },
  "individual": {
    "name": { "fullName": "David Ricks" }
  }
}

Other Key Person: Registered Agent (Corporate)

{
  "type": "company",
  "role": {
    "localName": "Registered Agent",
    "standardized": "Registered Agent"
  },
  "company": {
    "legalName": "NATIONAL REGISTERED AGENTS, INC.",
    "legalAddress": {
      "addressLine1": "334 North Senate Avenue",
      "city": "Indianapolis",
      "region": "IN",
      "postalCode": "46204",
      "countryCode": "US"
    }
  }
}