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

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
query
string
required

Company name to search for

Minimum string length: 1
Examples:

"reliance"

"tata motors"

"infosys"

count
integer
required

Max number of results

Required range: 1 <= x <= 500
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

cin
string
required
@type
string
default:@zauba_company_search_item
name
string | null
address
string | null