Skip to main content

Start here

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

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

Data Sources

South Dakota uses a single live integration against the South Dakota Secretary of State SoS Enterprise portal (sosenterprise.sd.gov). Every request hits the register in real time. There is no open-data feed or bulk extract available for free: the register only offers a paid paper subscription for bulk database downloads, so Topograph sources data directly from the live portal. The register covers every domestic and foreign for-profit and nonprofit corporation, LLC, limited partnership, registered limited liability partnership, financial institution (bank, trust company), and trade name filed in South Dakota.
Single mode only. Because no free bulk-data feed exists, South Dakota has one mode: live, authoritative, direct from the register. There is no fast/onboarding path based on a snapshot. All requests are verified against the live portal.

Company Identifiers

Query Identifiers

Identifier TypeFormatExampleNotes
Business IDTwo-letter prefix + six zero-padded digits (8 characters total)FB033693Assigned by the South Dakota Secretary of State. The prefix encodes the filing class (see table below).
Common Business ID prefixes:
PrefixFiling Class
DMDomestic corporation
DCDomestic corporation (alternate)
DLDomestic LLC
FLForeign LLC
FBForeign for-profit corporation
NPNonprofit corporation
BKBank / financial institution
TNTrade name
The Business ID is exactly 8 characters. The two-letter prefix is always uppercase and the six-digit suffix is zero-padded. Both the prefix and the padding are significant. Do not strip or alter them when passing the ID to the API.

Identifiers in API Response

IdentifierFormatExampleFound In
businessIdTwo-letter prefix + six zero-padded digitsFB033693All entities

Search Capabilities

Search TypePatternExampleMatch TypeExpected Results
By Name2–100 chars"Acme"Starts-with (case-insensitive)Multiple results
By Business ID8 charactersFB033693ExactExact match returned first (matchType: id); other results may follow
Starts-with search. Name search anchors on the beginning of the legal name (case-insensitive). Use more specific queries to narrow the result set, which is capped at 50 matches.

Quirks & Gotchas

QuirkDetails
Prefix is not optionalThe two-letter prefix is part of the Business ID. Passing only the numeric portion (e.g. 033693) is not a valid identifier and will return no results.
No officers or directorsThe South Dakota register does not publish officers, directors, members, or organizers on any entity detail page. The only party disclosed publicly is the registered agent, which is returned under otherKeyPersons.
Registered agent is not a legal representativeThe registered agent receives service of process but has no statutory authority to bind the entity. It appears under otherKeyPersons, not legalRepresentatives.
No shareholder listSouth Dakota does not publish individual shareholders or owner lists for any entity type. For-profit corporations show an authorized capital figure (share count and par value) as part of the company profile, but no shareholder register exists.
No activity codesNAICS, NACE, and ISIC codes are not collected by the South Dakota business register.
Addresses are concatenatedThe portal returns the principal office address as a single concatenated string (e.g. 200 Commerce St.Smithfield, VA 23430 USA) without a consistent separator between street and city. Topograph parses the address into structured fields where possible.
Foreign name fieldForeign entities registered in South Dakota may carry a separate foreign-registered name alongside the legal name in company.alternateName.
Term of durationMost entities are “Perpetual” but some carry a fixed expiration date. When present, the expiration date is included in the company profile.
No open-data snapshotUnlike many US states, South Dakota does not publish a free bulk dataset. Every request goes to the live register portal.

Mappings

Company Status

Status is read directly from the register and mapped to a Topograph standardized value.
Register StatusStandardizedNotes
Good StandingActiveAll annual reports current
ActiveActiveUsed on financial-institution filings
Revoked (Administrative)ClosedAnnual-report lapse; administrative dissolution
DissolvedClosedVoluntary dissolution
WithdrawnClosedForeign entity withdrew South Dakota registration
MergedClosedEntity merged into another
ExpiredClosedTerm of duration expired
Status values not in the table above are surfaced as-is from the register under company.status.localName and may be enriched by AI where the raw label maps to a known standardized category.

Data Availability

Data PointAvailableNotes
Company nameYesCurrent legal name
Foreign registered nameYesFor foreign entities, when the entity uses a separate name in South Dakota
Company statusYesSourced live from the register
Registration dateYesInitial filing date with the Secretary of State
Legal addressYesPrincipal office address (parsed where possible)
Mailing addressYesSeparate mailing address when provided
Legal formYesBusiness type as recorded by the register (e.g. Foreign Business Corporation, Domestic LLC)
Jurisdiction of formationYesState or country where the entity was originally formed
Term of durationYes”Perpetual” or an expiration date
Annual report due dateYesNext annual report due date
Registered agentYesName and physical/mailing address, returned as otherKeyPersons
Legal representativesNoOfficers, directors, and members are not published by the South Dakota register
Activity codesNoNot collected by the register
ShareholdersNoNot published for any entity type
UBOsNoNo state beneficial-ownership register; the federal database is restricted
Trade Register ExtractYesPrinted PDF of the live entity detail page, included at no extra charge with the company data
Annual report PDFsRoadmapReferenced in the entity filing history but not yet available as downloadable documents
Articles of IncorporationRoadmapPer-filing PDFs are deferred
Financial dataNoNot collected by the South Dakota register

Example API Responses

Search by Name

curl -X POST "https://api.topograph.co/v2/search?country=US-SD&query=Acme" \
  -H "x-api-key: YOUR_API_KEY"
[
  {
    "id": "DL012345",
    "legalName": "ACME SOLUTIONS LLC",
    "countryCode": "US-SD",
    "matchReason": {
      "matchType": "default"
    },
    "address": {
      "region": "SD",
      "countryCode": "US"
    }
  }
]

Search by Business ID

curl -X POST "https://api.topograph.co/v2/search?country=US-SD&query=FB033693" \
  -H "x-api-key: YOUR_API_KEY"
[
  {
    "id": "FB033693",
    "legalName": "ACME PACKAGED GOODS CORP.",
    "countryCode": "US-SD",
    "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-SD", "id": "FB033693", "dataPoints": ["company", "otherKeyPersons"]}'
{
  "company": {
    "id": "FB033693",
    "countryCode": "US-SD",
    "identifiers": { "businessId": "FB033693" },
    "legalName": "ACME PACKAGED GOODS CORP.",
    "registrationDate": "2009-03-25",
    "legalForm": {
      "localName": "Foreign Business Corporation",
      "standardized": "Corporation"
    },
    "status": {
      "localName": "Good Standing",
      "active": true
    },
    "legalAddress": {
      "street": "200 Commerce St.",
      "city": "Sioux Falls",
      "region": "SD",
      "postalCode": "57104",
      "countryCode": "US"
    }
  },
  "otherKeyPersons": [
    {
      "name": "SAMPLE REGISTERED AGENT INC.",
      "role": {
        "localName": "Registered Agent",
        "standardized": "RegisteredAgent"
      }
    }
  ]
}