Skip to main content
POST
/
api
/
texas
/
companies
/
search
/texas/companies/search
curl --request POST \
  --url https://api.anysite.io/api/texas/companies/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "name": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "taxpayer_id": "<string>",
    "name": "<string>",
    "@type": "@texas_company_search_item",
    "mailing_address_zip": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
name
string
required

Entity name to search by (matches from the start of the name)

Required string length: 2 - 50
Examples:

"WALMART"

"WHATABURGER"

"DELL COMPUTER"

count
integer
required

Max number of results to return

Required range: x >= 1
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_search_item
mailing_address_zip
string | null