Search global vendors
curl --request GET \
--url https://api.trycomp.ai/v1/vendors/global/search \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/vendors/global/search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/vendors/global/search"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)Vendors
Search global vendors | Comp AI API
Search global vendor records to prefill vendor profiles and speed up third-party risk assessment workflows.
GET
/
v1
/
vendors
/
global
/
search
Search global vendors
curl --request GET \
--url https://api.trycomp.ai/v1/vendors/global/search \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/vendors/global/search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/vendors/global/search"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)Authorizations
API key for authentication
Query Parameters
Vendor name, or part of one, to search for
Return only the fields a suggestion list renders, omitting the risk assessment payload
When nothing matches, resolve the name and return the vendor the caller probably meant. Off by default: it can reach a paid provider, so set it once a name has been committed rather than on every keystroke.
Response
200 - undefined
Was this page helpful?

