The Company website (company_website
) filter enables you to run targeted searches against company websites in the Veridion database.
This filter is useful when you already have the website of a company and you want to pull additional company information.
Website Domain vs. URL
Please ensure that you only input the domain of the website you are searching for, not subdomains / the full URL address.
A domain typically consists of two main parts: the domain name and the domain extension. On the other hand, a URL is the complete web address used to access a specific page or resource on a website, which includes various components like the protocol (e.g., "
http://
" or "https://
"), path or directories, and specific page or resource identifiers.For example, you should search for veridion.com, and not https://veridion.com/our-data/ or www.veridion.com .
Search modes
Exact match
This mode is helpful when you are searching for a specific company and have its website address. To run an exact match search, use equals
in the relation
parameter. This filter will search our entire database and retrieve a single record that matches the website provided as input.
Below is an example that demonstrates how to search for the company "Boston Consulting Group" using its website.
{
"attribute": "company_website",
"relation": "equals",
"value": "bcg.com"
}
Multiple exact match
To perform an exact match search for multiple companies simultaneously, input their websites as an array and set the relation
to in
. The API will return results where any of these websites exactly match a company website in our database.
The following example performs a multiple exact match search for "Boston Consulting Group" and "Accenture".
{
"attribute": "company_website",
"relation": "in",
"value": ["bcg.com", "accenture.com"]
}
Reference
To view all available filter relations and accepted types, please check the Filter Relations section.