Skip to main content

Start here

This guide contains public integration notes for North Dakota. 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.

North Dakota 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-ND is not yet part of the public countryCode enum. Contact us to enable it on your workspace. Requests sent with countryCode: "US-ND" will otherwise return 400 until the enum is expanded.

Data Sources

North Dakota uses a single live integration against the North Dakota Secretary of State FirstStop register at firststop.sos.nd.gov. The portal covers every domestic and foreign entity filed in North Dakota: for-profit and nonprofit corporations, limited liability companies, cooperative associations, insurance companies, trade names, fictitious partnership names, and reserved names. Every request resolves live against the FirstStop register. North Dakota does not publish a free open-data feed or bulk extract; the register’s Data List Requests are sold as paid subscriptions to authenticated users and are not exposed through Topograph. The register publishes: legal name, filing type and subtype, current status, three standing flags (Annual Report, Registered Agent, Other), jurisdiction of formation, term of duration, initial filing date, principal and mailing addresses, annual-report due date, and the registered agent.
Single authoritative mode. All requests (both mode: "onboarding" and mode: "verification") resolve against the live FirstStop register. There is no non-authoritative fast path because no free open-data snapshot is available for North Dakota.

Company Identifiers

Query Identifiers

Identifier TypeFormatExampleNotes
SOS Control ID#10 digits, zero-padded0000071213Primary identifier assigned by the North Dakota Secretary of State at filing time. Unique across all filing types.
The SOS Control ID# is zero-padded to exactly ten digits. Queries with the unpadded form (e.g. 71213 instead of 0000071213) are accepted. The API left-pads to 10 digits before forwarding to the register.

Identifiers in API Response

IdentifierFormatExampleNotes
entityId10 digits, zero-padded0000071213SOS Control ID#, the public register identifier.
ndInternalIdNumeric string71213Portal-internal identifier used by the FirstStop system. Returned for transparency; not a public register identifier.

Search Capabilities

Search TypePatternExampleMatch TypeExpected Results
By Name2-100 chars"Dakota Grain"Substring (case-insensitive)Multiple results, capped at 50
By SOS Control ID#10 digits (or un-padded form)0000071213ExactSingle match returned first (matchType: id)
Substring search. Name search matches anywhere in the legal name (case-insensitive). To narrow a large result set, use a longer or more specific query string. Results are capped at 50 matches.

Quirks & Gotchas

QuirkDetails
No officers or directors publishedThe North Dakota register does not publish officers, directors, members, organizers, or any other party list for any entity type. The only publicly disclosed contact is the registered agent (and for trade names, the registering owner). Both are returned as otherKeyPersons.
Registered agent may be a companyThe registered agent row can be either an individual or a company. Foreign entities often use a Commercial Registered Agent; the role label reflects this.
No open-data snapshotThere is no free bulk extract for North Dakota. Every lookup hits the live register, so latency reflects a real-time network call to the SoS portal.
Three standing flagsThe register tracks three separate standing values: Annual Report, Registered Agent, and Other. These appear in the Trade Register Extract but are not surfaced as separate Topograph datapoint fields.
Trade names and fictitious partnership names are indexedThe SOS Control ID# namespace is shared across business entities, trade names, fictitious partnership names, reserved names, and trademarks. A search by name or ID may return trade names alongside corporations and LLCs.
No shareholder or UBO registerNorth Dakota does not publish shareholders or beneficial owners for any entity type. The federal beneficial-ownership database is a separate restricted-access system.
No activity codesThe register does not collect NAICS, NACE, or ISIC codes.

Mappings

Legal form is sourced from the Filing Type field on the FirstStop entity detail page. The vocabulary consists of 18 observed values across all entity types.
FirstStop Filing TypeStandardizedISO 20275
Corporation - Business - DomesticCorporationC3JQ
Corporation - Business - ForeignCorporationC3JQ
Corporation - Nonprofit - DomesticNonprofitOrganization4RCO
Corporation - Nonprofit - ForeignNonprofitOrganization4RCO
Corporation - Professional - DomesticCorporationC3JQ
Corporation - Professional - ForeignCorporationC3JQ
Corporation - Farm/Ranch - In-StateCorporationC3JQ
Limited Liability Company - Business - DomesticLimitedLiabilityCompanyJY0X
Limited Liability Company - Business - ForeignLimitedLiabilityCompanyJY0X
Limited Liability Company - Farm/Ranch - In-StateLimitedLiabilityCompanyJY0X
Limited Liability Company - Professional - DomesticLimitedLiabilityCompanyJY0X
Cooperative Association - DomesticCooperative
Cooperative Association - ForeignCooperative
Cooperative - Mutual AidCooperative
Insurance CompanyOther
Trade NameOther
Fictitious Partnership NamePartnershipT91T
Reserved NameOther

Company Status

FirstStop StatusActive
ActiveYes
Inactive - VoluntaryNo
Inactive - InvoluntaryNo
Inactive - ExpiredNo
Inactive - MergedNo
Inactive - ConsolidatedNo
Inactive - Converted OutNo
For a complete, up-to-date list of standardized values, see the North Dakota pricing page.

Data Availability

Data PointAvailableNotes
Company nameYesCurrent legal name from the FirstStop register
Company statusYesActive or Inactive with reason (Voluntary, Involuntary, Expired, Merged, Consolidated, Converted Out)
Registration dateYesInitial filing date from the register
Legal addressYesPrincipal and mailing addresses (street, city, state, ZIP)
Legal formYesFirstStop filing type with ISO 20275 mapping where available
Registered agentYesReturned as otherKeyPersons; individual or company, with address
Trade name ownerYesReturned as otherKeyPersons for trade name filings only
Legal representativesNoOfficers, directors, and members are not published by the register
Activity codesNoNot collected by the register
ShareholdersNoNot published
UBOsNoNo state beneficial-ownership register; federal system is restricted
Trade Register ExtractYesIncluded at no extra charge with every company data request: a printed PDF of the structured FirstStop record
Financial dataNoNot collected

Example API Responses

Search by Name

curl -X POST "https://api.topograph.co/v2/search?country=US-ND&query=Dakota+Grain" \
  -H "x-api-key: YOUR_API_KEY"
[
  {
    "id": "0000071213",
    "legalName": "DAKOTA GRAIN COMPANY, INC.",
    "countryCode": "US-ND",
    "matchReason": {
      "matchType": "default"
    },
    "address": {
      "region": "ND",
      "countryCode": "US"
    }
  }
]

Search by SOS Control ID#

curl -X POST "https://api.topograph.co/v2/search?country=US-ND&query=0000071213" \
  -H "x-api-key: YOUR_API_KEY"
[
  {
    "id": "0000071213",
    "legalName": "DAKOTA GRAIN COMPANY, INC.",
    "countryCode": "US-ND",
    "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-ND", "id": "0000071213", "dataPoints": ["company", "otherKeyPersons"], "mode": "verification"}'
{
  "company": {
    "id": "0000071213",
    "countryCode": "US-ND",
    "identifiers": {
      "entityId": "0000071213",
      "ndInternalId": "71213"
    },
    "legalName": "DAKOTA GRAIN COMPANY, INC.",
    "registrationDate": "2006-01-11",
    "status": {
      "localName": "Active",
      "active": true
    },
    "legalForm": {
      "localName": "Corporation - Business - Domestic",
      "standardized": "Corporation"
    },
    "legalAddress": {
      "addressLine1": "100 N MAIN ST",
      "city": "BISMARCK",
      "region": "ND",
      "postalCode": "58501",
      "countryCode": "US"
    }
  },
  "otherKeyPersons": [
    {
      "type": "INDIVIDUAL",
      "role": {
        "localName": "Registered Agent",
        "standardized": "RegisteredAgent"
      },
      "individual": {
        "name": {
          "fullName": "JOHN A PLACEHOLDER"
        },
        "residenceAddress": {
          "addressLine1": "100 N MAIN ST",
          "city": "BISMARCK",
          "region": "ND",
          "postalCode": "58501",
          "countryCode": "US"
        }
      }
    }
  ]
}