Quick check + DeepUS statejurisdiction: us-wi

Verify Wisconsin businesses

Wisconsin separates registered from in good standing — a delinquent entity is still active. BizVerify returns status and good_standing so you read both. Source: the Wisconsin Department of Financial Institutions (DFI).

one call · $0.08/check

Wisconsin in one POST.

Request
curl -X POST https://api.bizverify.co/v1/verify \
  -H "X-API-Key: bv_live_xxxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{
    "entity_name": "Acme Holdings, Inc.",
    "jurisdiction": "us-wi"
  }'
Response
{
  "job_id": "vrf_01HZ0K9R3X",
  "jurisdiction": "us-wi",
  "entity_name": "Acme Holdings, Inc.",
  "entity_type": "Corporation (Stock)",
  "jurisdiction_id": "0123456",
  "status": "active",
  "verified_at": "2026-05-12T14:08:31Z",
  "tier": "deep"
}

Quick check returns

  • · entity_name
  • · entity_type
  • · jurisdiction_id
  • · status

Deep verification adds

  • · registered_agent
  • · principal_address
  • · formation_date

How Wisconsin's business registry works

In Wisconsin, being registered and being in good standing are two different states, and a KYB check that treats them as one will approve delinquent companies. The record lives at the Department of Financial Institutions — Wisconsin files businesses through a financial regulator, not a Secretary of State — and its Corporate Registration Information System (CRIS) reports a status descriptor separate from whether the entity has kept up its filings. An entity shows as Incorporated/Qualified/Registered when it's registered and current. Miss an annual report and it goes Delinquent, or in bad standing: the company still legally exists, but it's no longer in good standing. File the overdue report and back fees and it becomes Restored to Good Standing.

BizVerify maps that to two fields you read together. status is the lifecycle — active, dissolved, withdrawn, revoked, or merged. good_standing is the compliance flag. A delinquent Wisconsin entity comes back as status: active with good_standing: false — it exists, but it owes reports. Reading only status would wave it through.

CRIS is free and public, searchable by entity name or entity ID, and covers business corporations, LLCs, limited partnerships, limited liability partnerships, nonstock (nonprofit) corporations, and cooperatives. Each record carries the entity's DFI ID, its statutory entity description, its registered agent, principal office, and date of registration. Wisconsin doesn't publish officer or director rosters through CRIS — the registered agent and principal office are the contactable records on file. BizVerify returns the DFI entity ID as jurisdiction_id.

What Wisconsin specifically charges and requires

Formation

A Wisconsin LLC files Articles of Organization with the DFI for $130 online or $170 on paper — Wisconsin adds a $15 paper surcharge to most filings, so online is the cheaper path. A business corporation files Articles of Incorporation for $100.

Annual report and good standing

Wisconsin's annual report deadline isn't a single statewide date — it's keyed to when the entity registered. A domestic entity's report is due by the end of the calendar quarter in which its registration anniversary falls: March 31, June 30, September 30, or December 31. The LLC and domestic-corporation annual report is $25 online ($40 on paper); a foreign corporation pays $65 online ($80 on paper). Miss it and the entity goes delinquent — still registered, but not in good standing — and a domestic entity that stays delinquent can be administratively dissolved. A foreign entity that doesn't file within four months of its March 31 due date can have its Certificate of Authority revoked.

FilingOnlinePaper
LLC Articles of Organization$130$170
Corporation Articles of Incorporation$100
LLC / domestic corporation annual report$25$40
Foreign corporation annual report$65$80

Registered agent

Every Wisconsin entity must keep a registered agent with a Wisconsin address on file with the DFI. Deep verification returns the registered agent, the principal office address, and the date of registration.

Common ways developers use Wisconsin verification

Verify-before-provision in an AI agent

An onboarding agent verifies a customer's Wisconsin LLC with verify_business({ entity_name, jurisdiction: "us-wi" }) through the BizVerify MCP server before provisioning. The agent reads both fields: status: active confirms the entity exists, and good_standing: false flags a delinquent company that's registered but behind on annual reports — a reason to route to review, not auto-approve. The same call runs from Claude Code or a CrewAI crew.

Catching delinquent-but-registered entities

The Wisconsin-specific trap is treating "registered" as "in good standing." A company that missed its quarter-end annual report still appears in CRIS as a live entity — but it's delinquent. KYB tooling that only checks existence passes it. A quick check for us-wi returns good_standing: false next to status: active, so a delinquent counterparty is visible on the first call instead of surfacing later in diligence.

Marketplace seller onboarding

Wisconsin has a broad base of LLCs — trades, farms and co-ops, small manufacturers. A marketplace verifying a new seller's Wisconsin entity confirms good_standing: true, not just that the name exists, before enabling payouts, since a delinquent entity can eventually be administratively dissolved. A quick check is one credit and fast enough for an inline signup flow — wire it through Zapier or n8n once.

Compliance monitoring and renewals

Because Wisconsin annual reports are due by the quarter of each entity's registration anniversary, a portfolio's deadlines scatter across the year. A monitoring job re-checks each Wisconsin entity on a schedule and watches good_standing flip to false when a report lapses — an early signal a counterparty is drifting toward administrative dissolution. The KYB pipeline guide covers wiring recurring checks.

Frequently asked questions

What's the difference between status and good_standing for a Wisconsin entity?

status is the entity's lifecycle state — active, dissolved, withdrawn, revoked, or merged. good_standing is whether it's current on annual reports. Wisconsin separates the two: a delinquent entity is still active but good_standing: false. For a KYB decision, read both — an active-but-delinquent counterparty exists legally but has a compliance gap that can end in administrative dissolution.

What does "delinquent" mean in Wisconsin?

A Wisconsin entity goes delinquent when it fails to file its annual report. In CRIS the entity moves out of Incorporated/Qualified/Registered into a delinquent, in-bad-standing state; it still exists, but it's not in good standing. Filing the overdue report and paying back fees restores it to good standing. BizVerify reports this as status: active with good_standing: false, so the compliance gap is explicit.

Why is Wisconsin's registry at the Department of Financial Institutions?

Wisconsin administers business-entity filings through the DFI's Division of Corporate & Consumer Services rather than a Secretary of State. For a developer it changes nothing about the API — you still call jurisdiction: "us-wi" — but the source of record is DFI's CRIS, and the jurisdiction_id BizVerify returns is the DFI entity ID, not a Secretary of State file number.

Which identifier do you return for a Wisconsin entity?

The jurisdiction_id is the entity's DFI ID from CRIS. You can also search CRIS by entity name. BizVerify returns the DFI ID as the stable key; store it to re-check the same entity later without a name match, which matters when common LLC names collide.

Do you return officers or directors for Wisconsin?

No — Wisconsin's CRIS doesn't publish officer or director rosters, so deep verification for us-wi returns the registered agent, the principal office address, and the date of registration rather than an officer list. If you need people data, the registered agent is the contactable record on file. States that do publish officers return them in the same officers field.

How current is Wisconsin entity data?

Status and good-standing reflect the DFI record at the time the check runs — no cached snapshot. When an entity files a late annual report and is restored to good standing, or lapses into delinquency, the next check shows it. Deep verification returns the registered agent, principal office, and date of registration from that same live record.

What does deep verification add over a quick check for Wisconsin?

A quick check returns the entity name, type, DFI ID, status, and good_standing — enough to confirm the entity exists and is in good standing. Deep verification adds the registered agent's name and address, the principal office address, and the date of registration. Use quick on the hot path; use deep when you need the structured record.

Start verifying Wisconsin businesses.

Free during beta. 50 credits/month. No card.

Get a free API key