Skip to main content
POST
/
api
/
massachusetts
/
companies
/massachusetts/companies
curl --request POST \
  --url https://api.anysite.io/api/massachusetts/companies \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "id_number": "<string>",
  "timeout": 300
}
'
[
  {
    "id_number": "<string>",
    "@type": "@massachusetts_company",
    "old_id_number": "<string>",
    "name": "<string>",
    "previous_name": "<string>",
    "previous_name_date": "<string>",
    "legal_form": "<string>",
    "organization_date": "<string>",
    "organization_date_label": "<string>",
    "revival_date": "<string>",
    "last_date_certain": "<string>",
    "jurisdiction_state": "<string>",
    "jurisdiction_country": "<string>",
    "jurisdiction_date": "<string>",
    "fiscal_month_current": "<string>",
    "fiscal_month_previous": "<string>",
    "principal_address": {
      "@type": "@massachusetts_address",
      "street": "<string>",
      "city": "<string>",
      "state": "<string>",
      "zip": "<string>",
      "country": "<string>"
    },
    "mailing_address": {
      "@type": "@massachusetts_address",
      "street": "<string>",
      "city": "<string>",
      "state": "<string>",
      "zip": "<string>",
      "country": "<string>"
    },
    "registered_agent": {
      "@type": "@massachusetts_agent",
      "name": "<string>",
      "street": "<string>",
      "city": "<string>",
      "state": "<string>",
      "zip": "<string>",
      "country": "<string>"
    },
    "officers": [],
    "stocks": [],
    "is_publicly_traded": true,
    "has_consent": true,
    "has_confidential_data": true,
    "is_merger_allowed": true,
    "is_manufacturing": true,
    "comments": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
id_number
string
required

Massachusetts business Identification Number (9 characters; usually 9 digits, sometimes a letter prefix, e.g. L86001411 for a limited partnership)

Examples:

"710415188"

"043200369"

"L86001411"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id_number
string
required
@type
string
default:@massachusetts_company
old_id_number
string | null
name
string | null
previous_name
string | null
previous_name_date
string | null
organization_date
string | null
organization_date_label
string | null
revival_date
string | null
last_date_certain
string | null
jurisdiction_state
string | null
jurisdiction_country
string | null
jurisdiction_date
string | null
fiscal_month_current
string | null
fiscal_month_previous
string | null
principal_address
MassachusettsAddress · object
mailing_address
MassachusettsAddress · object
registered_agent
MassachusettsAgent · object
officers
MassachusettsOfficer · object[]
stocks
MassachusettsStock · object[]
is_publicly_traded
boolean | null
has_confidential_data
boolean | null
is_merger_allowed
boolean | null
is_manufacturing
boolean | null
comments
string | null