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 Type | Format | Example | Notes |
|---|
| Idaho Entity Number | Variable-length numeric string | 3960192 | Primary 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
| Identifier | Format | Example | Found In |
|---|
id | Idaho Entity Number (as registered) | 3960192 | All entities |
Search Capabilities
| Search Type | Pattern | Example | Match Type | Expected Results |
|---|
| By Name | 2–250 chars | "East Idaho Power Washing" | Contains | Multiple results |
| By Entity Number | Numeric | 3960192 | Exact | Single 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
| Quirk | Details |
|---|
| No officers or legal representatives | Idaho does not expose officers, directors, managers, or members through the public register. |
| No shareholders | Shareholder lists and LLC member names are not collected by the Idaho Secretary of State. |
| No activity codes | Industry classification codes (NAICS / NACE / ISIC) are not collected at the state level. |
| Mailing address may begin with a name | The 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 fields | Assumed Business Names often have no registered agent and no principal address. |
| Inactive entities are fully retrievable | Dissolved, 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 Value | Active |
|---|
| Active-Good Standing | true |
| Active-Existing | true |
| Active-Current | true |
| Inactive-Administratively Dissolved | false |
| Inactive-Cancelled | false |
| Inactive-Dissolved (Admin) | false |
| Inactive-Expired | false |
| Inactive-Forfeited | false |
| Inactive-Withdrawn | false |
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 Type | Standardized | ISO 20275 |
|---|
| Domestic Business Corporation (GBC) | Corporation | C3JQ |
| Domestic Professional Service Corporation (PSC) | Corporation | C3JQ |
| Domestic Benefit Corporation | Corporation | C3JQ |
| Foreign Business Corporation | Corporation | — |
| Domestic Limited Liability Company (LLC) | Limited Liability Company | JY0X |
| Domestic Professional LLC (PLLC) | Limited Liability Company | JY0X |
| Foreign Limited Liability Company | Limited Liability Company | — |
| Domestic Limited Partnership (LP) | Partnership | T91T |
| Foreign Limited Partnership | Partnership | — |
| Domestic General Partnership | Partnership | — |
| Domestic Limited Liability Partnership | Partnership | — |
| Domestic Nonprofit Corporation | Non-Profit Organization | 4RCO |
| Foreign Nonprofit Corporation | Non-Profit Organization | — |
| Domestic Unincorporated Nonprofit Association (UNA) | Non-Profit Organization | — |
| Domestic Cooperative Association | Cooperative | — |
| Assumed Business Name (ABN) | Other | — |
| Foreign Name Registration | Other | — |
| Reservation of Legal Entity Name | Other | — |
Data Availability
| Datapoint | Available | Notes |
|---|
| Legal name | Yes | |
| Entity type / legal form | Yes | Deterministically mapped |
| Status | Yes | Active/inactive derived from prefix |
| Registration date | Yes | When available in the register |
| Principal address | Yes | When available in the register |
| Mailing address | Yes | When available; may include a name on the first line |
| Registered agent | No | Not exposed through the public API |
| Legal representatives / officers | No | Not collected by Idaho Secretary of State |
| Shareholders | No | Not collected by Idaho Secretary of State |
| UBO | No | No state-level register; federal BOI records are not public |
| Activity codes | No | Not collected at state level |
Documents
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.
| Property | Value |
|---|
| Format | PDF |
| Source | Idaho Secretary of State — SOSBiz portal |
| TTL | 1 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"
}
}
}