> ## 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.

# New Hampshire

> Country-specific identifiers, data sources, and integration details

## Start here

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

<Card title="New Hampshire coverage, pricing, and sources" icon="arrow-up-right-from-square" href="https://topograph.co/pricing/us-nh">
  Open the current catalog for supported datapoints, documents, sources, identifiers, and availability.
</Card>

<Warning>
  This jurisdiction may be in preview or limited availability. Check the live pricing page or contact support before relying on it in production.
</Warning>

<Note>
  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.
</Note>

## Table of Contents

* [Data Sources](#data-sources)
* [Company Identifiers](#company-identifiers)
* [Search Capabilities](#search-capabilities)
* [Quirks & Gotchas](#quirks--gotchas)
* [Mappings](#mappings)
  * [Legal Forms](#legal-forms)
  * [Officer Roles](#officer-roles)
  * [Company Statuses](#company-statuses)
* [Data Availability](#data-availability)

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

## Data Sources

New Hampshire uses a single live integration against the **New Hampshire Department of State, QuickStart Business Register** (`quickstart.sos.nh.gov`). The register is the official record for every domestic and foreign for-profit and nonprofit corporation, limited liability company, limited partnership, limited liability partnership, professional limited liability company, professional association, trade name, and trademark filed in New Hampshire.

<Note>
  **Live-only.** The New Hampshire Department of State does not publish a free open-data feed or bulk CSV export. Per-snapshot XML extracts are available only via a paid authenticated subscription. Every lookup resolves live against the QuickStart register. There is no non-authoritative fast path.
</Note>

Each entity record published by the register includes: legal name, NH Business ID, business type, current status, management style (LLC), citizenship of formation, business creation date, home-jurisdiction formation date, principal and mailing addresses, annual-report years, NAICS principal-purpose rows, the full list of officers and directors with titles and business addresses, and the registered agent with office and mailing addresses.

## Company Identifiers

### Query Identifiers

| Identifier Type    | Format                                        | Example  | Notes                                                                                                                                                                                   |
| ------------------ | --------------------------------------------- | -------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **NH Business ID** | Variable-length decimal number, 1 to 9 digits | `848218` | Assigned by the Department of State at filing time. Unique across all entity types: corporations, LLCs, limited partnerships, trade names, and trademarks share the same numeric space. |

<Tip>
  The NH Business ID has no fixed length and no leading zeros. Observed values as of May 2026 range from roughly 100000 to 999000, but the register does not impose a minimum digit count. Pass the number as-is.
</Tip>

### Identifiers in API Response

| Identifier | Format                  | Example  | Found In         |
| ---------- | ----------------------- | -------- | ---------------- |
| `entityId` | Variable-length decimal | `848218` | All entity types |

## Search Capabilities

| Search Type       | Pattern     | Example           | Match Type                     | Expected Results               |
| ----------------- | ----------- | ----------------- | ------------------------------ | ------------------------------ |
| By Name           | 2–100 chars | `"Granite State"` | Starts-with (case-insensitive) | Multiple results; capped at 50 |
| By NH Business ID | Numeric     | `848218`          | Exact                          | One result; `matchType: id`    |

<Note>
  Name search anchors on the beginning of the legal name (case-insensitive). To narrow results, use a more specific prefix. The result set is capped at 50 matches.
</Note>

## Quirks & Gotchas

| Quirk                                              | Details                                                                                                                                                                                |
| -------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **No open-data snapshot**                          | Every request resolves live against the QuickStart register. There is no non-authoritative fast mode, and there is no open-data baseline for onboarding checks.                        |
| **Business ID is variable length**                 | NH Business IDs have no fixed digit count and no leading zeros. Do not zero-pad or truncate. Pass the value exactly as returned by search.                                             |
| **Multiple register presentation formats**         | The QuickStart register may present entity records in different formats depending on the entity type. The API normalizes all formats into the same response shape.                     |
| **No shareholders or UBOs**                        | New Hampshire does not publicly disclose individual shareholders or ownership percentages. No state beneficial-ownership register exists.                                              |
| **No FEIN**                                        | The federal employer identification number is not disclosed through the public QuickStart register.                                                                                    |
| **Trade Names have no Principals grid**            | Trade Name entities do not list officers. The registering owner is returned as an `otherKeyPersons` entry with role "Owner".                                                           |
| **NAICS rows may be free-text**                    | The Principal Purpose grid on the detail page may contain free-text descriptions instead of numeric NAICS codes. Both forms are returned as-is from the register.                      |
| **Annual report years, not full dates**            | The register publishes the last and next annual report year as integers, not full dates.                                                                                               |
| **Certificate of Good Standing is a paid upgrade** | The official New Hampshire Certificate of Good Standing carries a register fee and is ordered and delivered separately from company data. See [Data Availability](#data-availability). |

## Mappings

### Legal Forms

Legal form is sourced from the "Business Type" field on the QuickStart Business Information detail page. The vocabulary is an empirical set observed from the live register (verified May 2026).

<AccordionGroup>
  <Accordion title="New Hampshire entity types">
    | Business Type (QuickStart)                      | Standardized            | ISO 20275 |
    | ----------------------------------------------- | ----------------------- | --------- |
    | Domestic Profit Corporation                     | Corporation             | `C3JQ`    |
    | Foreign Profit Corporation                      | Corporation             | `C3JQ`    |
    | Domestic Nonprofit Corporation                  | NonprofitOrganization   | `4RCO`    |
    | Foreign Nonprofit Corporation                   | NonprofitOrganization   | `4RCO`    |
    | Domestic Limited Liability Company              | LimitedLiabilityCompany | `JY0X`    |
    | Foreign Limited Liability Company               | LimitedLiabilityCompany | `JY0X`    |
    | Domestic Limited Partnership                    | Partnership             | `XJHM`    |
    | Foreign Limited Partnership                     | Partnership             | `XJHM`    |
    | Domestic Limited Liability Partnership          | Partnership             | `B5UR`    |
    | Foreign Limited Liability Partnership           | Partnership             | `B5UR`    |
    | Domestic Professional Limited Liability Company | LimitedLiabilityCompany | `JY0X`    |
    | Foreign Professional Limited Liability Company  | LimitedLiabilityCompany | `JY0X`    |
    | Domestic Professional Association               | Other                   |           |
    | Trade Name                                      | Other                   |           |
    | Trademark                                       | Other                   |           |
  </Accordion>
</AccordionGroup>

### Officer Roles

NH QuickStart publishes officer, director, manager, member, and partner titles verbatim on the detail page. Common titles are mapped to a standardized role label; novel or unusual titles are normalized through AI enrichment.

| Raw Title (QuickStart)        | Standardized   | Notes                        |
| ----------------------------- | -------------- | ---------------------------- |
| President                     | President      |                              |
| Vice President                | VicePresident  |                              |
| Secretary                     | Secretary      |                              |
| Treasurer                     | Treasurer      |                              |
| Director                      | Director       |                              |
| Incorporator                  | Director       |                              |
| Manager                       | Manager        | LLC manager-managed entities |
| Member                        | Owner          | LLC member-managed entities  |
| Organizer                     | Owner          |                              |
| Partner                       | Partner        | General partnerships         |
| General Partner               | GeneralPartner | Limited partnerships         |
| Limited Partner               | LimitedPartner | Limited partnerships         |
| Chief Executive Officer / CEO | CEO            |                              |
| Chairman                      | Chairman       |                              |
| Principal                     | CEO            |                              |

<Note>
  The registered agent is not returned as a Legal Representative. It is returned in `otherKeyPersons`. The agent receives service of process but has no statutory authority to bind the entity.
</Note>

### Company Statuses

| Status (QuickStart)        | Active |
| -------------------------- | ------ |
| Active                     | Yes    |
| Good Standing              | Yes    |
| Dissolved                  | No     |
| Administratively Dissolved | No     |
| Admin Dissolution          | No     |
| Administratively Suspended | No     |
| Expired                    | No     |
| Merged                     | No     |
| Non-Qualified              | No     |

## Data Availability

For the full and current list of available datapoints, documents, and their sources, see the [pricing page](https://topograph.co/pricing/us-nh).

| Data Point                                  | Available  | Notes                                                                                                                                                                                                          |
| ------------------------------------------- | ---------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Company name                                | Yes        | Current legal name as filed                                                                                                                                                                                    |
| Company status                              | Yes        | From the live QuickStart register                                                                                                                                                                              |
| Registration date                           | Yes        | Business creation date recorded by the Department of State                                                                                                                                                     |
| Legal address                               | Yes        | Principal office and mailing addresses                                                                                                                                                                         |
| Legal form                                  | Yes        | Business type with standardized category and ISO 20275 mapping where available                                                                                                                                 |
| Legal representatives                       | Yes        | Officers, directors, managers, members, and partners with titles and business addresses                                                                                                                        |
| Registered agent                            | Yes        | Name, registered office address, and mailing address                                                                                                                                                           |
| NAICS codes                                 | Yes        | Principal-purpose rows from the detail page; may be free-text descriptions for some entities                                                                                                                   |
| Activity codes (NACE / ISIC)                | No         | Not collected by the Department of State                                                                                                                                                                       |
| Shareholders                                | No         | Not publicly disclosed                                                                                                                                                                                         |
| UBOs                                        | No         | No state register; federal database is restricted                                                                                                                                                              |
| Trade Register Extract                      | Yes        | Printable PDF of the QuickStart business record, included at no extra charge with every company data call                                                                                                      |
| Certificate of Good Standing                | Yes (paid) | Official New Hampshire Certificate of Good Standing, ordered through the Department of State and delivered within minutes. Carries a register fee. See the [pricing page](https://topograph.co/pricing/us-nh). |
| Articles of Incorporation / filed documents | No         | Available behind the authenticated NH-Login portal; not yet integrated                                                                                                                                         |
| Financial data                              | No         | Not collected                                                                                                                                                                                                  |
| Fictitious names (DBAs)                     | Partial    | Trade names registered under the same entity are surfaced in the company record. Standalone trade-name entities are separately searchable by name or NH Business ID.                                           |

## Example API Responses

### Search by Name

```bash theme={null}
curl -X POST "https://api.topograph.co/v2/search?country=US-NH&query=Granite" \
  -H "x-api-key: YOUR_API_KEY"
```

```json theme={null}
[
  {
    "id": "848218",
    "legalName": "GRANITE STATE HOLDINGS, INC.",
    "countryCode": "US-NH",
    "matchReason": {
      "matchType": "default"
    },
    "address": {
      "region": "NH",
      "countryCode": "US"
    }
  }
]
```

### Search by NH Business ID

```bash theme={null}
curl -X POST "https://api.topograph.co/v2/search?country=US-NH&query=848218" \
  -H "x-api-key: YOUR_API_KEY"
```

```json theme={null}
[
  {
    "id": "848218",
    "legalName": "GRANITE STATE HOLDINGS, INC.",
    "countryCode": "US-NH",
    "matchReason": {
      "matchType": "id"
    }
  }
]
```

### Company Profile

```bash theme={null}
curl -X POST "https://api.topograph.co/v2/company" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"countryCode": "US-NH", "id": "848218", "dataPoints": ["company", "legalRepresentatives"], "mode": "verification"}'
```

```json theme={null}
{
  "company": {
    "id": "848218",
    "countryCode": "US-NH",
    "identifiers": { "entityId": "848218" },
    "legalName": "GRANITE STATE HOLDINGS, INC.",
    "status": {
      "localName": "Active",
      "active": true
    },
    "registrationDate": "2010-03-15",
    "legalForm": {
      "localName": "Domestic Profit Corporation",
      "englishTranslation": "General Business Corporation",
      "standardized": "Corporation"
    },
    "legalAddress": {
      "street": "123 Main Street",
      "city": "Concord",
      "region": "NH",
      "postalCode": "03301",
      "countryCode": "US"
    }
  },
  "legalRepresentatives": [
    {
      "name": "Jane A. Doe",
      "role": {
        "localName": "President",
        "standardized": "President"
      }
    }
  ]
}
```
