Skip to main content

Start here

This guide contains public integration notes for Utah. Use it for identifier formats, search behavior, and country-specific caveats. The live source of truth for coverage, pricing, data sources, documents, legal forms, roles, and status values is the pricing page.

Utah coverage, pricing, and sources

Open the current catalog for supported datapoints, documents, sources, identifiers, and availability.
This jurisdiction may be in preview or limited availability. Check the live pricing page or contact support before relying on it in production.
Country details below are preserved as integration notes. If a table or example conflicts with the live pricing page, use the pricing page as the source of truth and contact support.

Table of Contents

API access: US-UT is not yet part of the public countryCode enum. Contact us to enable it on your workspace. Requests sent with countryCode: "US-UT" will otherwise return 400 until the enum is expanded.

Data Sources

Utah uses a single integration against the Utah Division of Corporations & Commercial Code (OneStop), operated within the Utah Department of Commerce. The register covers every domestic and foreign corporation, limited liability company, limited partnership, limited liability partnership, cooperative, statutory trust, and non-profit organization filed in Utah. The free OneStop online entity search at businessregistration.utah.gov returns the business name, Utah Entity Number, entity type, status, formation jurisdiction, registration and status dates, principal and mailing addresses, registered agent, and all listed principals.
Live source only. Utah does not publish a free machine-readable bulk export of its business register. Every search and company-data request is fulfilled live from the OneStop portal. There is no snapshot or cached open-data tier in front of it.
Assumed names (DBAs). Assumed name registrations are filed with the Division of Corporations but are surfaced through a separate search on the portal and are not yet linked to the primary entity record in Topograph.

Company Identifiers

Query Identifiers

Identifier TypeFormatExampleNotes
Utah Entity NumberXXXXXXX-NNNN (numeric prefix + 4-digit suffix)616169-0140Assigned by the Division of Corporations. The suffix encodes the filing type (see below).
Always use the full dashed form (e.g. 616169-0140). The four-digit suffix encodes the filing type: -0140 is Domestic Nonprofit Corporation, -0151 is Assumed Name / DBA, -0181 is Foreign Limited Partnership. Stripping the suffix changes the identifier and will not match the expected entity.

Identifiers in API Response

IdentifierFormatExampleFound In
entityNumberXXXXXXX-NNNN616169-0140All entities

Search Capabilities

Search TypePatternExampleMatch TypeExpected Results
By Name2-100 chars"Zions Bank"Starts-with (case-insensitive)Multiple results
By Utah Entity NumberFull dashed616169-0140Exact (matchType: id)Single result
Starts-with search. Name search anchors on the beginning of the legal name (case-insensitive). Use a fuller query string to narrow the result set, which is capped at 50 matches per call.
Latency. Each search and company-data request is fulfilled live from the OneStop portal. Expect approximately 30-50 seconds wall-clock time. Plan your timeout budgets accordingly.

Quirks & Gotchas

QuirkDetails
Entity Number suffix is load-bearingThe dashed suffix (e.g. -0140) is part of the canonical identifier. Always store and pass the full dashed form. Submitting the prefix alone (e.g. 616169) is not a valid API input. Topograph stores the full dashed form as the entity’s primary key.
Similar portal structure to NevadaUtah’s OneStop portal (businessregistration.utah.gov) follows the same search flow, result grid, and entity detail page layout as Nevada’s SilverFlume portal. Integration patterns are equivalent.
No free bulk exportThe Utah business register is not published as open data. There is no snapshot-backed onboarding mode: both onboarding and verification requests are served live from the OneStop portal.
Assumed names live separatelyAssumed names (“DBA”) are filed with the Division of Corporations but appear in a separate fictitious-name search track. They are not linked to the primary entity record in the current integration.
Officer titles are free-formThe OneStop detail page carries officer titles as free text. Topograph normalizes them against the standard role taxonomy through AI enrichment.
No shareholder or UBO registerUtah does not publish shareholder lists or beneficial ownership data for any entity type.
No activity codesIndustry classification codes (NAICS, NACE, ISIC) are not collected by the Utah business register.
Paid certificate requires portal loginThe Certificate of Existence / Good Standing is ordered through the OneStop portal with a Utah ID account and requires payment. It is not yet available through Topograph. The free Trade Register Extract (printed detail page) is bundled with the company data block.

Mappings

Utah entity type labels are read as free text from the OneStop detail page and standardized through AI enrichment. The register covers domestic and foreign variants of corporations (profit and non-profit), limited liability companies, limited partnerships, limited liability partnerships, cooperatives, statutory trusts, and assumed names (DBAs). The full closed vocabulary has not yet been fully enumerated from live data.
Legal form enum values are not yet published in the catalog. Each entity returns a legalForm.localName (the raw label from the register) and a legalForm.standardized value (AI-inferred Topograph category). The full enum will be added to the pricing page once a broad probe run has confirmed the complete vocabulary.
Register LabelStandardized
Domestic Nonprofit CorporationNonprofitOrganization
Foreign Limited PartnershipPartnership
Assumed Name (DBA)Other
The register publishes additional entity types (domestic and foreign variants of profit corporations, LLCs, LLPs, cooperatives, statutory trusts) that will be added to the manifest as they are observed from live data.

Officer Roles

Officer titles are free-form text on the OneStop detail page. Topograph normalizes each title through AI enrichment to produce a standardized role label.
Common TitleStandardizedNotes
PresidentPresidentStandard corporate officer
Vice PresidentVicePresident
SecretarySecretary
TreasurerTreasurer
ManagerDirectorLLC manager under Utah LLC Act
MemberMemberLLC member (member-managed LLCs)
Managing MemberMemberLLC managing-member variant
General PartnerGeneralPartnerLimited partnerships
Registered AgentRegisteredAgentReceives service of process; no authority to bind the entity
The full role vocabulary is open-ended. Any title observed on the register page is passed through AI enrichment. The examples above reflect the most commonly observed patterns.

Data Availability

Data PointAvailableNotes
Company nameYesCurrent legal name from the OneStop detail page
Company statusYesActive / Inactive as shown on the register
Registration dateYesFormation / registration date from the OneStop detail page
Legal addressYesPrincipal and mailing addresses
Legal formYesRaw label from the register, normalized by AI enrichment
Legal representativesYesOfficers and registered agent, with titles normalized by AI enrichment
Trade Register ExtractYesPrinted PDF of the OneStop entity detail page, included at no extra charge with the company data block
Activity codesNoNot collected by the Utah business register
ShareholdersNoNot published by the Utah register for any entity type
UBOsNoNo public beneficial ownership register at the Utah state level
Certificate of ExistenceRoadmapPaid document ordered through the OneStop portal; not yet available through Topograph
Assumed names (DBAs)RoadmapFiled with the Division of Corporations but not yet linked to the entity record on Topograph
Financial dataNoNot collected

Example API Responses

Search by Name

curl -X POST "https://api.topograph.co/v2/search?country=US-UT&query=Zions+Bank" \
  -H "x-api-key: YOUR_API_KEY"
[
  {
    "id": "123456-0100",
    "legalName": "ZIONS BANCORPORATION, N.A.",
    "countryCode": "US-UT",
    "matchReason": {
      "matchType": "default"
    },
    "address": {
      "region": "UT",
      "countryCode": "US"
    }
  }
]

Search by Entity Number

curl -X POST "https://api.topograph.co/v2/search?country=US-UT&query=616169-0140" \
  -H "x-api-key: YOUR_API_KEY"
[
  {
    "id": "616169-0140",
    "legalName": "EXAMPLE HEALTH CARE, INC.",
    "countryCode": "US-UT",
    "matchReason": {
      "matchType": "id"
    }
  }
]

Company Profile

curl -X POST "https://api.topograph.co/v2/company" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"countryCode": "US-UT", "id": "616169-0140", "dataPoints": ["company", "legalRepresentatives"]}'
{
  "company": {
    "id": "616169-0140",
    "countryCode": "US-UT",
    "identifiers": { "entityNumber": "616169-0140" },
    "legalName": "EXAMPLE HEALTH CARE, INC.",
    "registrationDate": "1970-01-01",
    "legalForm": {
      "localName": "Domestic Nonprofit Corporation",
      "standardized": "NonprofitOrganization"
    },
    "legalAddress": {
      "city": "Salt Lake City",
      "region": "UT",
      "postalCode": "84101",
      "countryCode": "US"
    }
  },
  "legalRepresentatives": [
    {
      "name": "Jane A. Smith",
      "role": {
        "localName": "President",
        "standardized": "President"
      }
    }
  ]
}
All names, identifiers, and addresses in the examples above are fictional placeholders. Do not use them in production requests.

Data Availability

For the complete list of supported datapoints, documents, pricing, and current availability status, see the live pricing page.

Utah coverage, pricing, and sources

Open the current catalog for supported datapoints, documents, sources, identifiers, and availability.