Skip to main content

Start here

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

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

Data Sources

Arkansas uses a single integration against the Arkansas Secretary of State, Business & Commercial Services portal (sos-corp-search.ark.org). The portal is publicly accessible and covers domestic and foreign entities filed with the SoS: corporations, limited liability companies, limited partnerships, general partnerships, and nonprofits. The portal exposes:
  • Legal name, filing number, entity type, and filing status
  • Principal address and registered agent with address
  • Filing date and, for foreign entities, state of origin
  • Officers (when filed with the SoS)
The printable entity detail page is delivered as the Trade Register Extract, included at no extra charge with every company data request.
Arkansas data is retrieved directly from the public SoS portal on each request. There is no snapshot or bulk extract available from this register. Frequently queried entities often respond quickly due to server-side caching on the portal.

Company Identifiers

Query Identifiers

Identifier TypeFormatExampleNotes
Arkansas Filing Number8-9 digits; legacy filings begin with 100 or 800, current with 811811388512Assigned by the Arkansas Secretary of State at time of registration
Arkansas filing numbers are 8-9 digit numerics with no separators or leading zeros. The prefix loosely tracks registration era: 100… and 800… are legacy filings, 811… is the current series for modern registrations.

Identifiers in API Response

IdentifierFormatExampleFound In
filingNumber8-9 digits, no prefix811388512All entities

Search Capabilities

Search TypePatternExampleMatch TypeExpected Results
By Name2-100 chars"Walmart"Starts-with (case-insensitive)Multiple results, up to 50 returned
By Filing Number8-9 digits811388512ExactExact match returned first (matchType: id)
Result cap. The SoS portal silently caps search results at 250 rows server-side. Topograph returns up to 50 results ranked alphabetically. For narrow queries this is invisible; for broad name queries (e.g. a single common word) expect truncation without a truncated flag in the response.

Quirks & Gotchas

QuirkDetails
No identifier prefix or paddingFiling numbers are plain 8-9 digit integers. Do not add leading zeros or prefixes. Pass the number exactly as returned by search.
Incorporator/Organizer is a single roleThe Arkansas SoS uses one label for both LLC organizers and corporation incorporators. The distinction is not recoverable from public data.
Legacy “SEE FILE” officersOlder filings (typically 100… series) often carry a SEE FILE placeholder in the officers block. This means the officer data exists on paper but is not digitized on the portal. The API returns an empty officers list for these entities.
Status field: PendingA Pending status means the filing has been submitted but not finalized. The active field in the response is undefined (neither true nor false) for pending entities.
No shareholders or UBOsArkansas does not publish shareholder lists or beneficial ownership data at the state level. Federal FinCEN BOI records are restricted.
No activity codesThe Arkansas SoS does not collect NAICS, NACE, or ISIC codes. Industry classification is not available.
Fictitious names live separatelyDBA-style fictitious name registrations are a separate track and are not included in the business entity search index.
Certificate of Good Standing is paidThe Certificate of Good Standing exists but requires a separate purchase through the Arkansas state payment flow. It is not yet available through Topograph.

Mappings

Legal form is sourced from the entity-type field published by the Arkansas Secretary of State. The raw string is passed through to legalForm.localName and also used as input for AI-inferred standardization. Common entity types observed:
AR SoS Entity TypeStandardized
For Profit CorporationCorporation
Foreign For Profit CorporationCorporation
Non-Profit CorporationNonprofitOrganization
Foreign Non-Profit CorporationNonprofitOrganization
Limited Liability CompanyLimitedLiabilityCompany
Foreign Limited Liability CompanyLimitedLiabilityCompany
Limited PartnershipPartnership
Foreign Limited PartnershipPartnership
General PartnershipPartnership
Limited Liability PartnershipPartnership
Professional AssociationCorporation
BankOther
Insurance CompanyOther
The full list of entity types and their standardized mappings is on the pricing page. The table above lists commonly observed types; the register may publish additional variants.

Officer Roles

Officer role labels on the Arkansas SoS portal are free-text. Topograph normalizes them through AI enrichment to produce a standardized role and English translation.
Raw AR Role LabelStandardized (AI-inferred)Notes
PresidentPresident
Vice PresidentVicePresidentAlso observed as Vice-President
SecretarySecretary
Assistant SecretarySecretaryAlso observed as Assistant Sec.
TreasurerTreasurer
DirectorDirector
ManagerManager
MemberMemberMember-managed LLCs
OwnerOwner
Incorporator/Organizer(AI-inferred)Single AR label covering both LLC organizers and incorporators
IncorporatorIncorporator
OrganizerOrganizer
Registered AgentRegisteredAgentKey person; no authority to bind the entity
Roles not listed above are still included in the response with their raw AR label as localName. Standardization is AI-inferred from the raw text.

Filing Status

AR SoS Statusactive fieldNotes
Good StandingtrueEntity is in good standing with the SoS
PendingundefinedFiling submitted but not yet finalized
Dissolvedfalse
Expiredfalse
Forfeited CharterfalseCharter revoked, typically for failure to file or pay fees
ConvertedfalseEntity converted to another form
MergedfalseEntity merged into another entity

Data Availability

Data PointAvailableNotes
Company nameYesCurrent legal name
Company statusYesactive: true/false/undefined plus the raw SoS status string
Registration dateYesSoS initial filing date
Legal addressYesPrincipal address as filed with the SoS
Legal formYesRaw entity type from the SoS, with AI-inferred standardization
Legal representativesYesOfficers as filed; normalized through AI role enrichment
Registered agentYesName and address from the SoS detail page
State of originYesTwo-letter US state code for foreign entities (e.g. DE)
Trade Register ExtractYesPrinted PDF of the SoS entity detail page; included at no extra charge
Activity codesNoNot collected by the Arkansas SoS
ShareholdersNoNot published by the Arkansas SoS
UBOsNoNo state-level beneficial ownership register; federal FinCEN BOI is restricted
Certificate of Good StandingRoadmapRequires a separate paid purchase through the Arkansas state portal; not yet integrated
Fictitious names (DBAs)NoRegistered under a separate track, not part of the business entity dataset
Financial dataNoNot collected

Example API Responses

Search by Name

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

Search by Filing Number

curl -X POST "https://api.topograph.co/v2/search?country=US-AR&query=811388512" \
  -H "x-api-key: YOUR_API_KEY"
[
  {
    "id": "811388512",
    "legalName": "ACME HOLDINGS, INC.",
    "countryCode": "US-AR",
    "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-AR", "id": "811388512", "dataPoints": ["company", "legalRepresentatives"]}'
{
  "company": {
    "id": "811388512",
    "countryCode": "US-AR",
    "identifiers": { "filingNumber": "811388512" },
    "legalName": "ACME HOLDINGS, INC.",
    "registrationDate": "2012-03-15",
    "status": {
      "localName": "Good Standing",
      "active": true
    },
    "legalForm": {
      "localName": "Foreign For Profit Corporation",
      "standardized": "Corporation"
    },
    "legalAddress": {
      "streetAddress": "123 Main Street",
      "city": "Little Rock",
      "region": "AR",
      "postalCode": "72201",
      "countryCode": "US"
    }
  },
  "legalRepresentatives": [
    {
      "fullName": "JANE A. EXAMPLE",
      "role": {
        "localName": "President",
        "englishTranslation": "President"
      }
    }
  ]
}