Check companies exist
curl --request POST \
--url https://product-api.thedatacity.com/api/v2/companies/check \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"companyNumbers": [
"10958787"
]
}
'[
{
"CompanyNumber": "<string>",
"InDatabase": true
}
]companies
Check companies exist
POST
/
v2
/
companies
/
check
Check companies exist
curl --request POST \
--url https://product-api.thedatacity.com/api/v2/companies/check \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"companyNumbers": [
"10958787"
]
}
'[
{
"CompanyNumber": "<string>",
"InDatabase": true
}
]Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
Full shape is under Schema; example is minimal.
JSON body for POST companies check.
Last modified on June 23, 2026
โI