Skip to main content

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.

Table of Contents

Data Sources

All entity data comes from the Wyoming Secretary of State via the WyoBiz portal (wyobiz.wyo.gov). WyoBiz is the official online filing and search system for ~200,000+ business entities registered in Wyoming. Every request hits the live register — there is no cached or batch-synced alternative. The response is always authoritative and up to date.
Wyoming is a single-source country. All data — company profile, officers, registered agent, documents, and search — comes from WyoBiz.

Company Identifiers

Query Identifiers

Identifier TypeFormatExampleNotes
Filing IDYYYY-NNNNNNNNN2004-000464709Wyoming SOS primary identifier (year + 9-digit seq)
The Filing ID is the only identifier supported for company retrieval. To find a Filing ID from a name, use the search endpoint first.

Identifiers in API Response

IdentifierFormatExampleFound In
filingIdYYYY-NNNNNNNNN2004-000464709All entities

Search Capabilities

Search TypePatternExampleMatch TypeExpected Results
By Name2-200 chars"Wyoming Energy Corp"Starts withMultiple results
By Filing IDYYYY-NNNNNNNNN2004-000464709ExactSingle company
Name search matches from the beginning of the entity name (starts-with). For broader matches, use shorter prefixes.

Quirks & Gotchas

QuirkDetails
Wyoming is a privacy stateWyoming does not require LLCs to disclose members or managers in public filings. Only the organizer who filed the articles appears on the entity record.
No shareholder or UBO registerWyoming does not publish shareholders or beneficial owners for any entity type. The federal CTA/FinCEN is a separate system.
No activity codesWyoming SOS does not collect NAICS or industry classification codes.
Registered agent standingWyoming tracks three separate standings: Tax, Registered Agent (RA), and Other. All three must be “Good” for a Certificate of Good Standing to be issued.
F5 WAF protectionThe WyoBiz portal is protected by an F5 BIG-IP Web Application Firewall with visual CAPTCHA challenges. Occasional retries may be needed during peak periods.
Dual role labelsCorporate officers may hold combined roles (e.g. “President / Director”). These are mapped to the primary role.
Trade names and trademarksTrade Name and Trademark registrations appear in WyoBiz as entity types but are not legal entities. They are mapped with standardized form Other.

Mappings

Company Status

Status comes from the WyoBiz entity status field. “Active” is the only in-good-standing state. All other statuses begin with “Inactive -” followed by a specific reason. The response includes statusDetails with structured fields: status, closureReason, closureDate, and additionalInfo.
Source ValueActiveclosureReason
Activetrue
Inactive - DissolvedfalseVOLUNTARY_DISSOLUTION
Inactive - Administratively Dissolved (Tax)falseSTRUCK_OFF
Inactive - Administratively Dissolved or Revoked (Tax)falseSTRUCK_OFF
Inactive - Administratively Dissolved or Revoked (No Agent)falseSTRUCK_OFF
Inactive - Administratively Dissolved or Revoked (Other)falseSTRUCK_OFF
Inactive - Revoked (Tax)falseSTRUCK_OFF
Inactive - CancelledfalseOTHER
Inactive - ExpiredfalseOTHER
Inactive - Withdraw/Dissolve/CancelfalseOTHER
Inactive - MergedfalseMERGER
Inactive - WithdrawalfalseOTHER
The Sub Status field (“Current” or “Archived”) from WyoBiz further qualifies inactive entities. “Current” means the entity has a 2-year reinstatement window; “Archived” means it can no longer reinstate. Legal form is derived from the WyoBiz Filing Details Type field. Wyoming distinguishes between domestic and foreign variants of each entity structure.
Wyoming discloses named officers and parties on the Filing Details page. The available roles depend on entity type.
RoleEntity TypesStandardized
DirectorCorporationsDirector
PresidentCorporationsPresident
President / DirectorCorporationsPresident
Vice PresidentCorporationsVice President
SecretaryCorporationsSecretary
Secretary / DirectorCorporationsSecretary
TreasurerCorporationsTreasurer
Treasurer / DirectorCorporationsTreasurer
IncorporatorCorporationsOther
OrganizerLLCsOther
ManagerManager-managed LLCsManager
General PartnerLimited PartnershipsGeneral Partner
Limited PartnerLimited PartnershipsLimited Partner
PartnerRegistered LLPsPartner
TrusteeStatutory TrustsOther
Wyoming LLCs do not disclose members in public filings. Only the organizer (who filed the articles of organization) and managers (if manager-managed) appear on the public record.

Other Key Persons

RoleStandardizedNotes
Registered AgentRegistered AgentStatutory service-of-process contact, required for all entities

Data Availability

Data PointAvailableNotes
Company nameYesCurrent legal name from the Filing Details page
Fictitious nameYesIf registered alongside the entity
Company statusYesActive or Inactive with specific reason
Registration dateYesInitial filing date
Legal addressYesPrincipal office address
Mailing addressYesSeparate mailing address if different from principal office
Legal formYesFull type with domestic/foreign distinction
StandingsYesTax, Registered Agent, and Other standings
Legal representativesYes*Depends on entity type — corporations have officers; LLCs may only show organizer
Registered agentYesName and address returned as Other Key Person
Share capitalYes*Common and preferred shares with par value (corporations only)
Filing historyYesHistorical events from the Filing Details page
Formation jurisdictionYesState or country of formation for foreign entities
Activity codesNoNot collected by Wyoming SOS
ShareholdersNoNot published
UBOsNoNot published
Financial dataNoNot collected

Documents

Available Documents

DocumentAvailabilityFormat
Trade Register ExtractAlways availablePDF
Certificate of Good StandingConditional — entity must be Active with all standings “Good”PDF
The Certificate of Good Standing is a separate billable item (2 credits) issued electronically by the Wyoming Secretary of State. It confirms the entity is in compliance with all state requirements (tax, registered agent, other). The Trade Register Extract is included with the company data block.

Example API Responses

Search by Name

curl -X POST "https://api.topograph.co/v2/search?country=US-WY&query=ACME+ENERGY+CORP" \
  -H "x-api-key: YOUR_API_KEY"
[
  {
    "id": "2004-000464709",
    "legalName": "Wyoming Energy Corporation",
    "countryCode": "US-WY",
    "matchReason": {
      "matchType": "default"
    }
  }
]

Search by Filing ID

curl -X POST "https://api.topograph.co/v2/search?country=US-WY&query=2004-000464709" \
  -H "x-api-key: YOUR_API_KEY"
[
  {
    "id": "2004-000464709",
    "legalName": "Wyoming Energy Corporation",
    "countryCode": "US-WY",
    "matchReason": {
      "matchType": "id",
      "identifier": { "filingId": "2004-000464709" }
    }
  }
]

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-WY", "id": "2004-000464709", "dataPoints": ["company", "legalRepresentatives", "otherKeyPersons"]}'
{
  "company": {
    "id": "2004-000464709",
    "countryCode": "US-WY",
    "identifiers": { "filingId": "2004-000464709" },
    "legalName": "Wyoming Energy Corporation",
    "registrationDate": "2004-04-12",
    "status": {
      "localName": "Active",
      "active": true,
      "statusDetails": { "status": "ACTIVE" }
    },
    "legalForm": {
      "localName": "Profit Corporation (Domestic)",
      "englishTranslation": "Profit Corporation",
      "standardized": "Corporation"
    },
    "legalAddress": {
      "addressLine1": "Northwest 69th Street",
      "city": "Boca Raton",
      "postalCode": "33487",
      "region": "Palm Beach County",
      "countryCode": "US",
      "state": "Florida",
      "latitude": 26.410211,
      "longitude": -80.085999
    }
  },
  "legalRepresentatives": [
    {
      "type": "individual",
      "role": {
        "localName": "President / Director",
        "standardized": "President"
      },
      "individual": {
        "name": { "fullName": "Blair Merriam" },
        "residenceAddress": {
          "addressLine1": "Northwest 69th Street",
          "city": "Boca Raton",
          "postalCode": "33487",
          "region": "Palm Beach County",
          "countryCode": "US",
          "state": "Florida"
        }
      }
    }
  ],
  "otherKeyPersons": [
    {
      "type": "company",
      "role": {
        "localName": "Registered Agent",
        "standardized": "Registered Agent"
      },
      "company": {
        "countryCode": "US",
        "legalName": "InCorp Services, Inc.",
        "legalAddress": {
          "addressLine1": "Thomes Avenue",
          "city": "Cheyenne",
          "postalCode": "82002",
          "region": "Laramie County",
          "countryCode": "US",
          "state": "Wyoming"
        }
      }
    }
  ],
  "shareholders": [],
  "ultimateBeneficialOwners": []
}
{
  "company": {
    "id": "2018-000796445",
    "countryCode": "US-WY",
    "identifiers": { "filingId": "2018-000796445" },
    "legalName": "ESOTERIC CONSULTING LLC",
    "registrationDate": "2018-04-11",
    "status": {
      "localName": "Active",
      "active": true,
      "statusDetails": { "status": "ACTIVE" }
    },
    "legalForm": {
      "localName": "Limited Liability Company (Domestic)",
      "englishTranslation": "Limited Liability Company",
      "standardized": "LimitedLiabilityCompany"
    },
    "legalAddress": {
      "addressLine1": "North Gould Street",
      "city": "Sheridan",
      "postalCode": "82801",
      "region": "Sheridan County",
      "countryCode": "US",
      "state": "Wyoming"
    }
  },
  "legalRepresentatives": [
    {
      "type": "individual",
      "role": { "localName": "Organizer", "standardized": "Other" },
      "individual": {
        "name": { "fullName": "Registered Agents Inc." }
      }
    }
  ],
  "otherKeyPersons": [
    {
      "type": "company",
      "role": {
        "localName": "Registered Agent",
        "standardized": "Registered Agent"
      },
      "company": {
        "countryCode": "US",
        "legalName": "Registered Agents Inc",
        "legalAddress": {
          "addressLine1": "North Gould Street",
          "city": "Sheridan",
          "postalCode": "82801",
          "region": "Sheridan County",
          "countryCode": "US",
          "state": "Wyoming"
        }
      }
    }
  ],
  "shareholders": [],
  "ultimateBeneficialOwners": []
}
{
  "company": {
    "id": "2021-001030665",
    "countryCode": "US-WY",
    "identifiers": { "filingId": "2021-001030665" },
    "legalName": "The Wyoming Bitcoin Security Plan",
    "registrationDate": "2021-08-25",
    "status": {
      "localName": "Inactive - Cancelled",
      "active": false,
      "statusDetails": {
        "status": "CLOSED",
        "closureReason": "OTHER",
        "closureDate": "2021-12-08",
        "additionalInfo": "Entity is archived and can no longer reinstate."
      }
    },
    "legalForm": {
      "localName": "Statutory Trust (Domestic)",
      "englishTranslation": "Statutory Trust",
      "standardized": "Trust"
    },
    "legalAddress": {
      "addressLine1": "North Gould Street",
      "city": "Sheridan",
      "postalCode": "82801",
      "region": "Sheridan County",
      "countryCode": "US",
      "state": "Wyoming"
    }
  },
  "legalRepresentatives": [
    {
      "type": "individual",
      "role": { "localName": "Trustee", "standardized": "Other" },
      "individual": {
        "name": { "fullName": "Josheph Kelly" }
      }
    }
  ],
  "otherKeyPersons": [
    {
      "type": "company",
      "role": {
        "localName": "Registered Agent",
        "standardized": "Registered Agent"
      },
      "company": {
        "countryCode": "US",
        "legalName": "Registered Agents Inc",
        "legalAddress": {
          "addressLine1": "North Gould Street",
          "city": "Sheridan",
          "postalCode": "82801",
          "region": "Sheridan County",
          "countryCode": "US",
          "state": "Wyoming"
        }
      }
    }
  ],
  "shareholders": [],
  "ultimateBeneficialOwners": []
}

Available Documents

curl -X POST "https://api.topograph.co/v2/company" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"countryCode": "US-WY", "id": "2004-000464709", "dataPoints": ["availableDocuments"]}'
{
  "documents": {
    "tradeRegisterExtract": {
      "id": "doc_tre_123",
      "name": "Trade Register Extract",
      "format": "pdf"
    },
    "certificateOfGoodStanding": {
      "id": "doc_cogs_456",
      "name": "Certificate of Good Standing",
      "format": "pdf"
    }
  }
}