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 Idaho Secretary of State via the SOSBiz portal (sosbiz.idaho.gov). This is the official state register for all business entities formed or qualified to do business in Idaho, including domestic and foreign corporations, LLCs, limited partnerships, nonprofits, cooperatives, and Assumed Business Names. Every request hits the live register. There is no bulk data export or open-data feed. The response is always authoritative and up to date.
Idaho is a single-source jurisdiction. Company profile and search both come from the live SOSBiz portal. A Trade Register Extract is included in the document catalogue.

Company Identifiers

Query Identifiers

Identifier TypeFormatExampleNotes
Idaho Entity NumberVariable-length numeric string3960192Primary identifier assigned by the Idaho Secretary of State. Also accepted zero-padded to 10 digits (0003960192).
The Entity Number is the only identifier supported for company retrieval. To find an ID from a name, use the search endpoint first. Both the bare form and the zero-padded 10-digit form are accepted.

Identifiers in API Response

IdentifierFormatExampleFound In
idIdaho Entity Number (as registered)3960192All entities

Search Capabilities

Search TypePatternExampleMatch TypeExpected Results
By Name2–250 chars"East Idaho Power Washing"ContainsMultiple results
By Entity NumberNumeric3960192ExactSingle company
Name search supports contains-matching across all registered entity names. Entity Number search locates a single entity by its exact identifier and is the recommended path when the ID is known.

Quirks & Gotchas

QuirkDetails
No officers or legal representativesIdaho does not expose officers, directors, managers, or members through the public register.
No shareholdersShareholder lists and LLC member names are not collected by the Idaho Secretary of State.
No activity codesIndustry classification codes (NAICS / NACE / ISIC) are not collected at the state level.
Mailing address may begin with a nameThe Mailing Address field occasionally starts with a person’s name on the first line (e.g. JOHN SMITH / PO BOX 70 / TREMONTON, UT). The street address begins on the second line.
ABN entries have fewer fieldsAssumed Business Names often have no registered agent and no principal address.
Inactive entities are fully retrievableDissolved, forfeited, withdrawn, and cancelled entities remain searchable and return a complete profile.

Mappings

Company Status

Status is prefixed by the Idaho SoS: Active-* values are active; Inactive-* values are not.
Source ValueActive
Active-Good Standingtrue
Active-Existingtrue
Active-Currenttrue
Inactive-Administratively Dissolvedfalse
Inactive-Cancelledfalse
Inactive-Dissolved (Admin)false
Inactive-Expiredfalse
Inactive-Forfeitedfalse
Inactive-Withdrawnfalse
Any value beginning with Active- maps to active: true; any value beginning with Inactive- maps to active: false. Idaho entity types come from the filing type field. Domestic entities may carry an ISO 20275 ELF code; foreign entities do not (they are formed in another jurisdiction).
Idaho Filing TypeStandardizedISO 20275
Domestic Business Corporation (GBC)CorporationC3JQ
Domestic Professional Service Corporation (PSC)CorporationC3JQ
Domestic Benefit CorporationCorporationC3JQ
Foreign Business CorporationCorporation
Domestic Limited Liability Company (LLC)Limited Liability CompanyJY0X
Domestic Professional LLC (PLLC)Limited Liability CompanyJY0X
Foreign Limited Liability CompanyLimited Liability Company
Domestic Limited Partnership (LP)PartnershipT91T
Foreign Limited PartnershipPartnership
Domestic General PartnershipPartnership
Domestic Limited Liability PartnershipPartnership
Domestic Nonprofit CorporationNon-Profit Organization4RCO
Foreign Nonprofit CorporationNon-Profit Organization
Domestic Unincorporated Nonprofit Association (UNA)Non-Profit Organization
Domestic Cooperative AssociationCooperative
Assumed Business Name (ABN)Other
Foreign Name RegistrationOther
Reservation of Legal Entity NameOther

Data Availability

DatapointAvailableNotes
Legal nameYes
Entity type / legal formYesDeterministically mapped
StatusYesActive/inactive derived from prefix
Registration dateYesWhen available in the register
Principal addressYesWhen available in the register
Mailing addressYesWhen available; may include a name on the first line
Registered agentNoNot exposed through the public API
Legal representatives / officersNoNot collected by Idaho Secretary of State
ShareholdersNoNot collected by Idaho Secretary of State
UBONoNo state-level register; federal BOI records are not public
Activity codesNoNot collected at state level

Documents

Trade Register Extract

A PDF of the entity’s detail record from the SOSBiz register, including legal name, entity number, type, status, formation date, and all field-value pairs published by the register. Includes a capture timestamp.
PropertyValue
FormatPDF
SourceIdaho Secretary of State — SOSBiz portal
TTL1 day

Certificate of Existence / Filing

The Idaho Secretary of State offers paid certificates for registered entities (Certificate of Existence/Filing for corporations, LLCs, and other entity types; Certificate of Filing ABN for Assumed Business Names). These are not yet available through Topograph.

Example API Responses

Company Profile: Foreign Business Corporation

{
  "company": {
    "id": "3960192",
    "countryCode": "US-ID",
    "legalName": "AMAZON DATA SERVICES, INC.",
    "status": {
      "localName": "Active-Good Standing",
      "active": true
    },
    "legalForm": {
      "localName": "Foreign Business Corporation",
      "englishTranslation": "Corporation",
      "standardized": "Corporation"
    },
    "legalAddress": {
      "addressLine1": "160 Greentree Drive Suite 101",
      "city": "Dover",
      "region": "DE",
      "postalCode": "19904",
      "countryCode": "US"
    }
  }
}

Company Profile: Domestic LLC

{
  "company": {
    "id": "4318071",
    "countryCode": "US-ID",
    "legalName": "EAST IDAHO POWER WASHING LLC",
    "status": {
      "localName": "Active-Existing",
      "active": true
    },
    "legalForm": {
      "localName": "Limited Liability Company (D)",
      "englishTranslation": "Limited Liability Company",
      "standardized": "Limited Liability Company",
      "iso20275Code": "JY0X"
    },
    "legalAddress": {
      "addressLine1": "123 Main St",
      "city": "Idaho Falls",
      "region": "ID",
      "postalCode": "83401",
      "countryCode": "US"
    }
  }
}

Company Profile: Inactive Entity

{
  "company": {
    "id": "1405",
    "countryCode": "US-ID",
    "legalName": "BANK OF IDAHO FALLS",
    "status": {
      "localName": "Inactive-Forfeited",
      "active": false
    },
    "legalForm": {
      "localName": "General Business Corporation (D)",
      "englishTranslation": "Corporation",
      "standardized": "Corporation",
      "iso20275Code": "C3JQ"
    }
  }
}