Skip to main content
POST
/
api
/
iowa
/
companies
/iowa/companies
curl --request POST \
  --url https://api.anysite.io/api/iowa/companies \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "business_number": "<string>",
  "timeout": 300
}
'
[
  {
    "business_number": "<string>",
    "legal_name": "<string>",
    "@type": "@iowa_company",
    "status": "<string>",
    "legal_form": "<string>",
    "state_of_inc": "<string>",
    "chapter": "<string>",
    "is_modified": true,
    "expiration_date": "<string>",
    "effective_date": "<string>",
    "filing_date": "<string>",
    "registered_agent": {
      "@type": "@iowa_company_address",
      "address_type": "<string>",
      "name": "<string>",
      "address1": "<string>",
      "address2": "<string>",
      "city": "<string>",
      "state": "<string>",
      "zip": "<string>"
    },
    "principal_office": {
      "@type": "@iowa_company_address",
      "address_type": "<string>",
      "name": "<string>",
      "address1": "<string>",
      "address2": "<string>",
      "city": "<string>",
      "state": "<string>",
      "zip": "<string>"
    },
    "names": [
      {
        "@type": "@iowa_company_name",
        "cert_no": "<string>",
        "type": "<string>",
        "status": "<string>",
        "name": "<string>",
        "is_modified": true
      }
    ],
    "officers": [
      {
        "@type": "@iowa_company_officer",
        "name": "<string>",
        "address1": "<string>",
        "address2": "<string>",
        "city": "<string>",
        "state": "<string>",
        "zip": "<string>",
        "type": "<string>",
        "is_director": true
      }
    ],
    "filings": [
      {
        "@type": "@iowa_company_filing",
        "cert_no": "<string>",
        "document_url": "<string>",
        "page_count": 123,
        "filing_date": "<string>",
        "effective_date": "<string>",
        "description": "<string>"
      }
    ],
    "stock": [
      {
        "@type": "@iowa_company_stock",
        "type": "<string>",
        "stock_class": "<string>",
        "series": "<string>",
        "authorized_shares": "<string>"
      }
    ]
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
business_number
string
required

Iowa business entity number

Minimum string length: 1
Examples:

"96828"

"315700"

"51094"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

business_number
string
required
@type
string
default:@iowa_company
status
string | null
state_of_inc
string | null
chapter
string | null
is_modified
boolean | null
expiration_date
string | null
effective_date
string | null
filing_date
string | null
registered_agent
IowaCompanyAddress · object
principal_office
IowaCompanyAddress · object
names
IowaCompanyName · object[]
officers
IowaCompanyOfficer · object[]
filings
IowaCompanyFiling · object[]
stock
IowaCompanyStock · object[]