Skip to main content
POST
/
api
/
texas
/
companies
/texas/companies
curl --request POST \
  --url https://api.anysite.io/api/texas/companies \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "taxpayer_id": "<string>",
  "timeout": 300
}
'
[
  {
    "taxpayer_id": "<string>",
    "name": "<string>",
    "@type": "@texas_company",
    "fei_number": "<string>",
    "dba_name": "<string>",
    "right_to_transact": "<string>",
    "state_of_formation": "<string>",
    "sos_registration_status": "<string>",
    "effective_sos_registration_date": "<string>",
    "sos_file_number": "<string>",
    "registered_agent_name": "<string>",
    "mailing_address": {
      "@type": "@texas_address",
      "street": "<string>",
      "city": "<string>",
      "state": "<string>",
      "postal_code": "<string>",
      "postal_code_ext": "<string>"
    },
    "registered_office_address": {
      "@type": "@texas_address",
      "street": "<string>",
      "city": "<string>",
      "state": "<string>",
      "postal_code": "<string>",
      "postal_code_ext": "<string>"
    },
    "report_year": "<string>",
    "officers": [
      {
        "@type": "@texas_officer",
        "name": "<string>",
        "title": "<string>",
        "active_year": "<string>",
        "street": "<string>",
        "city": "<string>",
        "state": "<string>",
        "postal_code": "<string>",
        "source": "<string>"
      }
    ]
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
taxpayer_id
string
required

Texas Comptroller Taxpayer Number (11 digits)

Minimum string length: 1
Examples:

"32029266908"

"17423222086"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

taxpayer_id
string
required
name
string
required
@type
string
default:@texas_company
fei_number
string | null
dba_name
string | null
right_to_transact
string | null
state_of_formation
string | null
sos_registration_status
string | null
effective_sos_registration_date
string | null
sos_file_number
string | null
registered_agent_name
string | null
mailing_address
TexasAddress · object
registered_office_address
TexasAddress · object
report_year
string | null
officers
TexasOfficer · object[]