{"info":{"_postman_id":"58d2e00d-2fc0-4594-89e3-3c6d43bf293d","name":"Cognism API","description":"<html><head></head><body><p>The Cognism API is used to search, preview and enrich Contacts and Accounts. Cognism database provides extensive B2B contacts and sales intelligence data.</p>\n<p><strong>NOTE:</strong> API responses may differ from the results retrieved via Prospector search (Web Application). We strive to ensure that the API is updated regularly to align as closely as possible with Prospector search results. However, discrepancies can occur due to various factors, including data updates and system enhancements. We appreciate your understanding and are committed to improving the accuracy and reliability of our API services.</p>\n<h2 id=\"improvements\">Improvements</h2>\n<p>The new Cognism API reduces complexity when searching, and it simplifies data structure. Also, response time is greatly improved.</p>\n<p><strong>NOTE:</strong> Pagination of results is possible from first to last result, but you cannot hop between pages.</p>\n<p><strong>Benefits include:</strong></p>\n<ul>\n<li><p>Better accuracy on technology and event searches</p>\n</li>\n<li><p>Ability to create more complex queries</p>\n</li>\n<li><p>The new Cognism API also removes the limitation of 10,000 displayed results, making it now unlimited.</p>\n</li>\n<li><p>Visibility for all open positions for each contact - with different emails and company phones.</p>\n</li>\n<li><p>Ability to configure the response fields in line with the entitlements.</p>\n</li>\n</ul>\n<h3 id=\"credits\">Credits</h3>\n<p>Credit burn remain as was, currently only on contacts, but not on account. This might change in the future.</p>\n<hr>\n<h1 id=\"authentication\">Authentication</h1>\n<p>Cognism uses API keys to allow access to the APIs. The API Key is assigned to you by Cognism and it is used to authenticate and authorize each request.</p>\n<p><strong>Your API key should be kept private, and should never be displayed publicly.</strong></p>\n<p>API keys have a time-to-live [TTL] of 6 months.</p>\n<p>You can manually generate additional keys or remove existing ones using one of our tools:</p>\n<ul>\n<li><p>Cognism Prospector, or</p>\n</li>\n<li><p>Cognism Refresh.</p>\n</li>\n</ul>\n<p>You can authenticate HTTP requests in one of two ways:</p>\n<ol>\n<li><p>Using header field \"<strong>Authorization: Bearer {API KEY}</strong>\"</p>\n</li>\n<li><p>Using query string \"<strong>api_key={API KEY}</strong>\"</p>\n</li>\n</ol>\n<p>Keep in mind that we recommend the use of the HTTP header field rather than the api_key query parameter as it provides an added level of security. The documentation uses HTTP header field in all examples.</p>\n<hr>\n<h1 id=\"api-structure\">API structure</h1>\n<p>API contains a set of HTTPS endpoints providing all necessary details to preview and redeem contacts of your choice.</p>\n<p>The API is built using RESTful endpoints and standard HTTP verbs.</p>\n<hr>\n<h1 id=\"entitlements\">Entitlements</h1>\n<p>Entitlements are a defined set of Contact and Account data that is available for you. They are set by Cognism Support Team.</p>\n<p>Entitlement definition affects Search, Preview and Result. Entitlements are related to the API Key.</p>\n<p><strong>Cognism API cannot be used unless Entitlements are properly set up.</strong></p>\n<h2 id=\"basic-info\">Basic Info</h2>\n<p>No matter what entitlement you choose, basic info will always be present. This is minimum data defining Contact or Account entity.</p>\n<p>Entitlements are built on top of basic info.</p>\n<h4 id=\"basic-contact-info\">Basic Contact info</h4>\n<p>Basic info for Contact entity</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"id\": \"String (UUID)\",\n  \"fullName\": \"String\",\n  \"firstName\": \"String\",\n  \"lastName\": \"String\",\n  \"jobTitle\": \"String\",\n  \"account\": \n  {\n    \"id\": \"String\",\n    \"name\": \"String\"\n  }\n}\n\n</code></pre>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Contact Cognism Unique ID</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Contact Full Name</td>\n</tr>\n<tr>\n<td>first</td>\n<td>Contact First Name</td>\n</tr>\n<tr>\n<td>last</td>\n<td>Contact Last Name</td>\n</tr>\n<tr>\n<td>currentCompany.id</td>\n<td>Contact Current Company ID</td>\n</tr>\n<tr>\n<td>currentCompany.name</td>\n<td>Contact Current Company Name</td>\n</tr>\n<tr>\n<td>currentCompany.jobTitle</td>\n<td>Contact Job Title within Current Company</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"basic-account-info\">Basic Account info</h4>\n<p>Basic info for Account entity</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"id\": \"String\",\n  \"name\": \"String\"\n}\n\n</code></pre>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Account Cognism Unique ID</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Account Name</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"contact-entitlement\">Contact Entitlement</h2>\n<p>Use Predefined Contact Entitlements table to check full set of Contact supported fields. Entitlement affects Contact search and response data.</p>\n<h4 id=\"predefined-contact-entitlements\">Predefined Contact Entitlements</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Contact Fields</th>\n<th>Standard</th>\n<th>Advanced</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>jobTitle</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>lastConfirmed</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>managementLevel</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>jobFunction</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>seniority</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>positionStartDate</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>mobilePhoneNumbers</td>\n<td></td>\n<td>Y</td>\n</tr>\n<tr>\n<td>directPhoneNumbers</td>\n<td></td>\n<td>Y</td>\n</tr>\n<tr>\n<td>region</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>country</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>state</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>city</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>zip</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>street</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>education</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>skills</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>linkedinUrl</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>email</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>privacyNotificationSent</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>locationMoveEvent</td>\n<td></td>\n<td>Y</td>\n</tr>\n<tr>\n<td>jobJoinEvent</td>\n<td></td>\n<td>Y</td>\n</tr>\n<tr>\n<td>jobLeaveEvent</td>\n<td></td>\n<td>Y</td>\n</tr>\n<tr>\n<td>previousAccount</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>account.id</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>account.name</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>account.domain</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>account.industry</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>account.description</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>account.shortDescription</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>account.founded</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>account.website</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>account.linkedinUrl</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>account.revenue</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>account.sic</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>account.isic</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>account.naics</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>account.size</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>account.headcount</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>account.technology</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>account.type</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>account.officePhoneNumbers</td>\n<td></td>\n<td>Y</td>\n</tr>\n<tr>\n<td>account.hqPhoneNumbers</td>\n<td></td>\n<td>Y</td>\n</tr>\n<tr>\n<td>account.location</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>account.hiringEvent</td>\n<td></td>\n<td>Y</td>\n</tr>\n<tr>\n<td>account.fundingEvent</td>\n<td></td>\n<td>Y</td>\n</tr>\n<tr>\n<td>account.acquisitonEvent</td>\n<td></td>\n<td>Y</td>\n</tr>\n<tr>\n<td>account.ipoEvent</td>\n<td></td>\n<td>Y</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"account-entitlement\">Account Entitlement</h2>\n<p>Use Predefined Account Entitlements table to check full set of Account supported fields. Entitlement affects Contact search and response data.</p>\n<h4 id=\"predefined-account-entitlements\">Predefined Account Entitlements</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Contact Fields</th>\n<th>Standard</th>\n<th>Advanced</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>domain</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>industry</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>description</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>shortDescription</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>founded</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>website</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>linkedinUrl</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>revenue</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>sic</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>isic</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>naics</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>size</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>headcount</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>technology</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>type</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>officePhoneNumbers</td>\n<td></td>\n<td>Y</td>\n</tr>\n<tr>\n<td>hqPhoneNumbers</td>\n<td></td>\n<td>Y</td>\n</tr>\n<tr>\n<td>location</td>\n<td>Y</td>\n<td>Y</td>\n</tr>\n<tr>\n<td>hiringEvent</td>\n<td></td>\n<td>Y</td>\n</tr>\n<tr>\n<td>fundingEvent</td>\n<td></td>\n<td>Y</td>\n</tr>\n<tr>\n<td>acquisitonEvent</td>\n<td></td>\n<td>Y</td>\n</tr>\n<tr>\n<td>ipoEvent</td>\n<td></td>\n<td>Y</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"my-entitlements\">My Entitlements</h2>\n<p>To check how your entitlements are defined use <a href=\"#0c23e257-7198-4fd1-83f7-46632d3120a3\">MyEntitlementContact</a> and <a href=\"#2dc967bf-c544-4896-889a-ff4583781450\">MyEntitlementAccount</a>.</p>\n<hr>\n<h1 id=\"response-schema\">Response schema</h1>\n<blockquote>\n<p>Actual returned object will contain fields based on user Entitlements </p>\n</blockquote>\n<h2 id=\"contact\">Contact</h2>\n<p>Redeemed contact response complete object</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"properties\": {\n    \"totalResults\": {\n      \"type\": \"integer\"\n    },\n    \"results\": {\n      \"type\": \"array\",\n      \"items\": [\n        {\n          \"type\": \"object\",\n          \"properties\": {\n            \"account\": {\n              \"type\": \"object\",\n              \"properties\": {\n                \"name\": {\n                  \"type\": \"string\"\n                },\n                \"id\": {\n                  \"type\": \"string\"\n                },\n                \"officePhoneNumbers\": {\n                  \"type\": \"array\",\n                  \"items\": [\n                    {\n                      \"type\": \"object\",\n                      \"properties\": {\n                        \"number\": {\n                          \"type\": \"string\"\n                        },\n                        \"numberType\": {\n                          \"type\": \"string\"\n                        },\n                        \"label\": {\n                          \"type\": \"string\"\n                        },\n                        \"score\": {\n                          \"type\": \"integer\"\n                        },\n                        \"addressType\": {\n                          \"type\": \"string\"\n                        },\n                        \"ext\": {\n                          \"type\": \"string\"\n                        },\n                        \"dnc\": {\n                          \"type\": \"object\",\n                          \"properties\": {\n                            \"status\": {\n                              \"type\": \"boolean\"\n                            }\n                          }\n                        }\n                      }\n                    }\n                  ]\n                },\n                \"hqPhoneNumbers\": {\n                  \"type\": \"array\",\n                  \"items\": [\n                    {\n                      \"type\": \"object\",\n                      \"properties\": {\n                        \"number\": {\n                          \"type\": \"string\"\n                        },\n                        \"numberType\": {\n                          \"type\": \"string\"\n                        },\n                        \"label\": {\n                          \"type\": \"string\"\n                        },\n                        \"score\": {\n                          \"type\": \"integer\"\n                        },\n                        \"addressType\": {\n                          \"type\": \"string\"\n                        },\n                        \"ext\": {\n                          \"type\": \"string\"\n                        },\n                        \"dnc\": {\n                          \"type\": \"object\",\n                          \"properties\": {\n                            \"status\": {\n                              \"type\": \"boolean\"\n                            }\n                          }\n                        }\n                      }\n                    }\n                  ]\n                },\n                \"hiringEvent\": {\n                  \"type\": \"array\",\n                  \"items\": [\n                    {\n                      \"type\": \"object\",\n                      \"properties\": {\n                        \"country\": {\n                          \"type\": \"string\"\n                        },\n                        \"state\": {\n                          \"type\": \"string\"\n                        },\n                        \"city\": {\n                          \"type\": \"string\"\n                        },\n                        \"jobTitle\": {\n                          \"type\": \"string\"\n                        },\n                        \"department\": {\n                          \"type\": \"string\"\n                        },\n                        \"jobType\": {\n                          \"type\": \"string\"\n                        },\n                        \"internship\": {\n                          \"type\": \"boolean\"\n                        },\n                        \"jobHours\": {\n                          \"type\": \"string\"\n                        },\n                        \"workFromHome\": {\n                          \"type\": \"boolean\"\n                        },\n                        \"employer\": {\n                          \"type\": \"string\"\n                        },\n                        \"url\": {\n                          \"type\": \"string\"\n                        },\n                        \"type\": {\n                          \"type\": \"string\"\n                        },\n                        \"jobDate\": {\n                          \"type\": \"string\"\n                        }\n                      }\n                    }\n                  ]\n                },\n                \"fundingEvent\": {\n                  \"type\": \"array\",\n                  \"items\": {\n                    \"type\": \"object\",\n                    \"properties\": {\n                      \"announcedOn\": {\n                        \"type\": \"long\"\n                      },\n                      \"fundingType\": {\n                        \"type\": \"string\"\n                      },\n                      \"series\": {\n                        \"type\": \"string\"\n                      },\n                      \"moneyRaisedUsd\": {\n                        \"type\": \"long\"\n                      },\n                      \"postMoneyValuationUsd\": {\n                        \"type\": \"long\"\n                      },\n                      \"investors\": {\n                        \"type\": \"array\",\n                        \"description\": \"List of investor names\",\n                        \"items\": {\n                          \"type\": \"string\"\n                        }\n                      },\n                      \"type\": {\n                        \"type\": \"string\"\n                      }\n                    }\n                  }\n                },\n                \"ipoEvent\": {\n                  \"type\": \"array\",\n                  \"items\": {\n                    \"type\": \"object\",\n                    \"properties\": {\n                      \"wentPublicOn\": {\n                        \"type\": \"long\"\n                      },\n                      \"stockExchangeSymbol\": {\n                        \"type\": \"string\"\n                      },\n                      \"stockSymbol\": {\n                        \"type\": \"string\"\n                      },\n                      \"openingValuationUsd\": {\n                        \"type\": \"long\"\n                      },\n                      \"moneyRaisedUsd\": {\n                        \"type\": \"long\"\n                      },\n                      \"investors\": {\n                        \"type\": \"array\",\n                        \"items\": {\n                          \"type\": \"object\",\n                          \"properties\": {\n                            \"name\": {\n                              \"type\": \"string\"\n                            }\n                          }\n                        }\n                      },\n                      \"type\": {\n                        \"type\": \"string\"\n                      }\n                    }\n                  }\n                },\n                \"acquisitionEvent\": {\n                  \"type\": \"array\",\n                  \"items\": {\n                    \"type\": \"object\",\n                    \"properties\": {\n                      \"acquiredOn\": {\n                        \"type\": \"string\"\n                      },\n                      \"acquisitionType\": {\n                        \"type\": \"string\"\n                      },\n                      \"acquirer\": {\n                        \"type\": \"string\"\n                      },\n                      \"acquiree\": {\n                        \"type\": \"string\"\n                      },\n                      \"type\": {\n                        \"type\": \"string\"\n                      }\n                    }\n                  }\n                },\n                \"headcount\": {\n                  \"type\": \"integer\"\n                },\n                \"sizeTo\": {\n                  \"type\": \"integer\"\n                },\n                \"sizeFrom\": {\n                  \"type\": \"integer\"\n                },\n                \"location\": {\n                  \"type\": \"array\",\n                  \"items\": [\n                    {\n                      \"type\": \"object\",\n                      \"properties\": {\n                        \"addressType\": {\n                          \"type\": \"string\"\n                        },\n                        \"country\": {\n                          \"type\": \"string\"\n                        },\n                        \"state\": {\n                          \"type\": \"string\"\n                        },\n                        \"city\": {\n                          \"type\": \"string\"\n                        },\n                        \"zip\": {\n                          \"type\": \"string\"\n                        },\n                        \"street\": {\n                          \"type\": \"string\"\n                        }\n                      }\n                    }\n                  ]\n                },\n                \"technologies\": {\n                  \"type\": \"array\",\n                  \"items\": [\n                    {\n                      \"type\": \"string\"\n                    }\n                  ]\n                },\n                \"type\": {\n                  \"type\": \"string\"\n                },\n                \"domain\": {\n                  \"type\": \"string\"\n                },\n                \"industry\": {\n                  \"type\": \"array\",\n                  \"items\": [\n                    {\n                      \"type\": \"string\"\n                    }\n                  ]\n                },\n                \"revenue\": {\n                  \"type\": \"long\"\n                },\n                \"linkedinUrl\": {\n                  \"type\": \"string\"\n                },\n                \"website\": {\n                  \"type\": \"string\"\n                },\n                \"founded\": {\n                  \"type\": \"integer\"\n                },\n                \"lastConfirmed\": {\n                  \"type\": \"long\"\n                },\n                \"naics\": {\n                  \"type\": \"array\",\n                  \"items\": [\n                    {\n                      \"type\": \"string\"\n                    }\n                  ]\n                },\n                \"sic\": {\n                  \"type\": \"array\",\n                  \"items\": [\n                    {\n                      \"type\": \"string\"\n                    }\n                  ]\n                },\n                \"isic\": {\n                  \"type\": \"array\",\n                  \"items\": [\n                    {\n                      \"type\": \"string\"\n                    }\n                  ]\n                },\n                \"shortDescription\": {\n                  \"type\": \"string\"\n                },\n                \"description\": {\n                  \"type\": \"string\"\n                }\n              }\n            },\n            \"jobTitle\": {\n              \"type\": \"string\"\n            },\n            \"lastName\": {\n              \"type\": \"string\"\n            },\n            \"firstName\": {\n              \"type\": \"string\"\n            },\n            \"fullName\": {\n              \"type\": \"string\"\n            },\n            \"id\": {\n              \"type\": \"string\"\n            },\n            \"privacyNotificationSent\": {\n              \"type\": \"boolean\"\n            },\n            \"previousAccounts\": {\n              \"type\": \"array\",\n              \"items\": [\n                {\n                  \"type\": \"object\",\n                  \"properties\": {\n                    \"name\": {\n                      \"type\": \"string\"\n                    },\n                    \"location\": {\n                      \"type\": \"array\",\n                      \"items\": [\n                        {\n                          \"type\": \"object\",\n                          \"properties\": {\n                            \"addressType\": {\n                              \"type\": \"string\"\n                            },\n                            \"country\": {\n                              \"type\": \"string\"\n                            },\n                            \"state\": {\n                              \"type\": \"string\"\n                            },\n                            \"city\": {\n                              \"type\": \"string\"\n                            },\n                            \"zip\": {\n                              \"type\": \"string\"\n                            },\n                            \"street\": {\n                              \"type\": \"string\"\n                            }\n                          }\n                        }\n                      ]\n                    },\n                    \"title\": {\n                      \"type\": \"string\"\n                    },\n                    \"start\": {\n                      \"type\": \"string\"\n                    },\n                    \"end\": {\n                      \"type\": \"string\"\n                    },\n                    \"seniority\": {\n                      \"type\": \"string\"\n                    },\n                    \"jobFunction\": {\n                      \"type\": \"array\",\n                      \"items\": [\n                        {\n                          \"type\": \"string\"\n                        }\n                      ]\n                    },\n                    \"email\": {\n                      \"type\": \"object\",\n                      \"properties\": {\n                        \"address\": {\n                          \"type\": \"string\"\n                        },\n                        \"quality\": {\n                          \"type\": \"string\"\n                        }\n                      }\n                    },\n                    \"managementLevel\": {\n                      \"type\": \"string\"\n                    }\n                  }\n                }\n              ]\n            },\n            \"skills\": {\n              \"type\": \"array\",\n              \"items\": [\n                {\n                  \"type\": \"string\"\n                }\n              ]\n            },\n            \"linkedinUrl\": {\n              \"type\": \"string\"\n            },\n            \"email\": {\n              \"type\": \"object\",\n              \"properties\": {\n                \"address\": {\n                  \"type\": \"string\"\n                },\n                \"quality\": {\n                  \"type\": \"string\"\n                },\n                \"sha256\": {\n                  \"type\": \"string\"\n                }\n              }\n            },\n            \"mobilePhoneNumbers\": {\n              \"type\": \"array\",\n              \"items\": [\n                {\n                  \"type\": \"object\",\n                  \"properties\": {\n                    \"number\": {\n                      \"type\": \"string\"\n                    },\n                    \"numberType\": {\n                      \"type\": \"string\"\n                    },\n                    \"label\": {\n                      \"type\": \"string\"\n                    },\n                    \"score\": {\n                      \"type\": \"integer\"\n                    },\n                    \"addressType\": {\n                      \"type\": \"string\"\n                    },\n                    \"ext\": {\n                      \"type\": \"string\"\n                    },\n                    \"dnc\": {\n                      \"type\": \"object\",\n                      \"properties\": {\n                        \"status\": {\n                          \"type\": \"boolean\"\n                        }\n                      }\n                    }\n                  }\n                }\n              ]\n            },\n            \"directPhoneNumbers\": {\n              \"type\": \"array\",\n              \"items\": [\n                {\n                  \"type\": \"object\",\n                  \"properties\": {\n                    \"number\": {\n                      \"type\": \"string\"\n                    },\n                    \"numberType\": {\n                      \"type\": \"string\"\n                    },\n                    \"label\": {\n                      \"type\": \"string\"\n                    },\n                    \"score\": {\n                      \"type\": \"integer\"\n                    },\n                    \"addressType\": {\n                      \"type\": \"string\"\n                    },\n                    \"ext\": {\n                      \"type\": \"string\"\n                    },\n                    \"dnc\": {\n                      \"type\": \"object\",\n                      \"properties\": {\n                        \"status\": {\n                          \"type\": \"boolean\"\n                        }\n                      }\n                    }\n                  }\n                }\n              ]\n            },\n            \"education\": {\n              \"type\": \"array\",\n              \"items\": [\n                {\n                  \"type\": \"object\",\n                  \"properties\": {\n                    \"start\": {\n                      \"type\": \"string\"\n                    },\n                    \"end\": {\n                      \"type\": \"string\"\n                    },\n                    \"school\": {\n                      \"type\": \"string\"\n                    },\n                    \"degree\": {\n                      \"type\": \"string\"\n                    },\n                    \"field\": {\n                      \"type\": \"string\"\n                    },\n                    \"description\": {\n                      \"type\": \"string\"\n                    }\n                  }\n                }\n              ]\n            },\n            \"country\": {\n              \"type\": \"string\"\n            },\n            \"region\": {\n              \"type\": \"string\"\n            },\n            \"city\": {\n              \"type\": \"string\"\n            },\n            \"state\": {\n              \"type\": \"string\"\n            },\n            \"street\": {\n              \"type\": \"string\"\n            },\n            \"zip\": {\n              \"type\": \"string\"\n            },\n            \"positionStartDate\": {\n              \"type\": \"string\"\n            },\n            \"seniority\": {\n              \"type\": \"string\"\n            },\n            \"jobFunction\": {\n              \"type\": \"array\",\n              \"items\": [\n                {\n                  \"type\": \"string\"\n                }\n              ]\n            },\n            \"managementLevel\": {\n              \"type\": \"string\"\n            },\n            \"lastConfirmed\": {\n              \"type\": \"long\"\n            },\n            \"locationMoveEvent\": {\n              \"type\": \"array\",\n              \"items\": [\n                {\n                  \"type\": \"object\",\n                  \"properties\": {\n                    \"date\": {\n                      \"type\": \"string\"\n                    },\n                    \"from\": {\n                      \"type\": \"object\",\n                      \"properties\": {\n                        \"country\": {\n                          \"type\": \"string\"\n                        },\n                        \"city\": {\n                          \"type\": \"string\"\n                        },\n                        \"state\": {\n                          \"type\": \"string\"\n                        },\n                        \"region\": {\n                          \"type\": \"string\"\n                        }\n                      }\n                    },\n                    \"to\": {\n                      \"type\": \"object\",\n                      \"properties\": {\n                        \"country\": {\n                          \"type\": \"string\"\n                        },\n                        \"city\": {\n                          \"type\": \"string\"\n                        },\n                        \"state\": {\n                          \"type\": \"string\"\n                        },\n                        \"region\": {\n                          \"type\": \"string\"\n                        }\n                      }\n                    }\n                  }\n                }\n              ]\n            },\n            \"jobLeaveEvent\": {\n              \"type\": \"array\",\n              \"items\": [\n                {\n                  \"type\": \"object\",\n                  \"properties\": {\n                    \"date\": {\n                      \"type\": \"string\"\n                    },\n                    \"from\": {\n                      \"type\": \"object\",\n                      \"properties\": {\n                        \"name\": {\n                          \"type\": \"string\"\n                        },\n                        \"sizeTo\": {\n                          \"type\": \"integer\"\n                        },\n                        \"sizeFrom\": {\n                          \"type\": \"integer\"\n                        },\n                        \"title\": {\n                          \"type\": \"string\"\n                        }\n                      }\n                    },\n                    \"to\": {\n                      \"type\": \"object\",\n                      \"properties\": {\n                        \"industry\": {\n                          \"type\": \"string\"\n                        },\n                        \"name\": {\n                          \"type\": \"string\"\n                        },\n                        \"sizeTo\": {\n                          \"type\": \"integer\"\n                        },\n                        \"sizeFrom\": {\n                          \"type\": \"integer\"\n                        },\n                        \"title\": {\n                          \"type\": \"string\"\n                        }\n                      }\n                    }\n                  }\n                }\n              ]\n            },\n            \"jobJoinEvent\": {\n              \"type\": \"array\",\n              \"items\": [\n                {\n                  \"type\": \"object\",\n                  \"properties\": {\n                    \"date\": {\n                      \"type\": \"string\"\n                    },\n                    \"from\": {\n                      \"type\": \"object\",\n                      \"properties\": {\n                        \"industry\": {\n                          \"type\": \"string\"\n                        },\n                        \"name\": {\n                          \"type\": \"string\"\n                        },\n                        \"sizeTo\": {\n                          \"type\": \"integer\"\n                        },\n                        \"sizeFrom\": {\n                          \"type\": \"integer\"\n                        },\n                        \"title\": {\n                          \"type\": \"string\"\n                        }\n                      }\n                    },\n                    \"to\": {\n                      \"type\": \"object\",\n                      \"properties\": {\n                        \"industry\": {\n                          \"type\": \"string\"\n                        },\n                        \"name\": {\n                          \"type\": \"string\"\n                        },\n                        \"sizeTo\": {\n                          \"type\": \"integer\"\n                        },\n                        \"sizeFrom\": {\n                          \"type\": \"integer\"\n                        },\n                        \"title\": {\n                          \"type\": \"string\"\n                        }\n                      }\n                    }\n                  }\n                }\n              ]\n            },\n            \"redeemId\": {\n              \"type\": \"string\"\n            }\n          }\n        }\n      ]\n    }\n  }\n}\n\n</code></pre>\n<h2 id=\"account\">Account</h2>\n<p>Redeemed account response complete object</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"properties\": {\n    \"totalResults\": {\n      \"type\": \"integer\"\n    },\n    \"results\": {\n      \"type\": \"array\",\n      \"items\": [\n        {\n          \"type\": \"object\",\n          \"properties\": {\n            \"name\": {\n              \"type\": \"string\"\n            },\n            \"id\": {\n              \"type\": \"string\"\n            },\n            \"officePhoneNumbers\": {\n              \"type\": \"array\",\n              \"items\": [\n                {\n                  \"type\": \"object\",\n                  \"properties\": {\n                    \"number\": {\n                      \"type\": \"string\"\n                    },\n                    \"numberType\": {\n                      \"type\": \"string\"\n                    },\n                    \"label\": {\n                      \"type\": \"string\"\n                    },\n                    \"score\": {\n                      \"type\": \"integer\"\n                    },\n                    \"addressType\": {\n                      \"type\": \"string\"\n                    },\n                    \"ext\": {\n                      \"type\": \"string\"\n                    },\n                    \"dnc\": {\n                      \"type\": \"object\",\n                      \"properties\": {\n                        \"status\": {\n                          \"type\": \"boolean\"\n                        }\n                      }\n                    }\n                  }\n                }\n              ]\n            },\n            \"hqPhoneNumbers\": {\n              \"type\": \"array\",\n              \"items\": [\n                {\n                  \"type\": \"object\",\n                  \"properties\": {\n                    \"number\": {\n                      \"type\": \"string\"\n                    },\n                    \"numberType\": {\n                      \"type\": \"string\"\n                    },\n                    \"label\": {\n                      \"type\": \"string\"\n                    },\n                    \"score\": {\n                      \"type\": \"integer\"\n                    },\n                    \"addressType\": {\n                      \"type\": \"string\"\n                    },\n                    \"ext\": {\n                      \"type\": \"string\"\n                    },\n                    \"dnc\": {\n                      \"type\": \"object\",\n                      \"properties\": {\n                        \"status\": {\n                          \"type\": \"boolean\"\n                        }\n                      }\n                    }\n                  }\n                }\n              ]\n            },\n            \"hiringEvent\": {\n              \"type\": \"array\",\n              \"items\": [\n                {\n                  \"type\": \"object\",\n                  \"properties\": {\n                    \"country\": {\n                      \"type\": \"string\"\n                    },\n                    \"state\": {\n                      \"type\": \"string\"\n                    },\n                    \"city\": {\n                      \"type\": \"string\"\n                    },\n                    \"jobTitle\": {\n                      \"type\": \"string\"\n                    },\n                    \"department\": {\n                      \"type\": \"string\"\n                    },\n                    \"jobType\": {\n                      \"type\": \"string\"\n                    },\n                    \"internship\": {\n                      \"type\": \"boolean\"\n                    },\n                    \"jobHours\": {\n                      \"type\": \"string\"\n                    },\n                    \"workFromHome\": {\n                      \"type\": \"boolean\"\n                    },\n                    \"employer\": {\n                      \"type\": \"string\"\n                    },\n                    \"url\": {\n                      \"type\": \"string\"\n                    },\n                    \"type\": {\n                      \"type\": \"string\"\n                    },\n                    \"jobDate\": {\n                      \"type\": \"string\"\n                    }\n                  }\n                }\n              ]\n            },\n            \"fundingEvent\": {\n              \"type\": \"array\",\n              \"items\": {\n                \"type\": \"object\",\n                \"properties\": {\n                  \"announcedOn\": {\n                    \"type\": \"long\"\n                  },\n                  \"fundingType\": {\n                    \"type\": \"string\"\n                  },\n                  \"series\": {\n                    \"type\": \"string\"\n                  },\n                  \"moneyRaisedUsd\": {\n                    \"type\": \"long\"\n                  },\n                  \"postMoneyValuationUsd\": {\n                    \"type\": \"long\"\n                  },\n                  \"investors\": {\n                    \"type\": \"array\",\n                    \"description\": \"List of investor names\",\n                    \"items\": {\n                      \"type\": \"string\"\n                    }\n                  },\n                  \"type\": {\n                    \"type\": \"string\"\n                  }\n                }\n              }\n            },\n            \"ipoEvent\": {\n              \"type\": \"array\",\n              \"items\": {\n                \"type\": \"object\",\n                \"properties\": {\n                  \"wentPublicOn\": {\n                    \"type\": \"integer\"\n                  },\n                  \"stockExchangeSymbol\": {\n                    \"type\": \"string\"\n                  },\n                  \"stockSymbol\": {\n                    \"type\": \"string\"\n                  },\n                  \"openingValuationUsd\": {\n                    \"type\": \"integer\"\n                  },\n                  \"moneyRaisedUsd\": {\n                    \"type\": \"integer\"\n                  },\n                  \"investors\": {\n                    \"type\": \"array\",\n                    \"items\": {\n                      \"type\": \"object\",\n                      \"properties\": {\n                        \"name\": {\n                          \"type\": \"string\"\n                        }\n                      }\n                    }\n                  },\n                  \"type\": {\n                    \"type\": \"string\"\n                  }\n                }\n              }\n            },\n            \"acquisitionEvent\": {\n              \"type\": \"array\",\n              \"items\": {\n                \"type\": \"object\",\n                \"properties\": {\n                  \"acquiredOn\": {\n                    \"type\": \"string\"\n                  },\n                  \"acquisitionType\": {\n                    \"type\": \"string\"\n                  },\n                  \"acquirer\": {\n                    \"type\": \"string\"\n                  },\n                  \"acquiree\": {\n                    \"type\": \"string\"\n                  },\n                  \"type\": {\n                    \"type\": \"string\"\n                  }\n                }\n              }\n            },\n            \"headcount\": {\n              \"type\": \"integer\"\n            },\n            \"sizeTo\": {\n              \"type\": \"integer\"\n            },\n            \"sizeFrom\": {\n              \"type\": \"integer\"\n            },\n            \"location\": {\n              \"type\": \"array\",\n              \"items\": [\n                {\n                  \"type\": \"object\",\n                  \"properties\": {\n                    \"addressType\": {\n                      \"type\": \"string\"\n                    },\n                    \"country\": {\n                      \"type\": \"string\"\n                    },\n                    \"state\": {\n                      \"type\": \"string\"\n                    },\n                    \"city\": {\n                      \"type\": \"string\"\n                    },\n                    \"zip\": {\n                      \"type\": \"string\"\n                    },\n                    \"street\": {\n                      \"type\": \"string\"\n                    }\n                  }\n                }\n              ]\n            },\n            \"technologies\": {\n              \"type\": \"array\",\n              \"items\": [\n                {\n                  \"type\": \"string\"\n                }\n              ]\n            },\n            \"type\": {\n              \"type\": \"string\"\n            },\n            \"domain\": {\n              \"type\": \"string\"\n            },\n            \"industry\": {\n              \"type\": \"array\",\n              \"items\": [\n                {\n                  \"type\": \"string\"\n                }\n              ]\n            },\n            \"revenue\": {\n              \"type\": \"long\"\n            },\n            \"linkedinUrl\": {\n              \"type\": \"string\"\n            },\n            \"website\": {\n              \"type\": \"string\"\n            },\n            \"founded\": {\n              \"type\": \"integer\"\n            },\n            \"lastConfirmed\": {\n              \"type\": \"long\"\n            },\n            \"naics\": {\n              \"type\": \"array\",\n              \"items\": [\n                {\n                  \"type\": \"string\"\n                }\n              ]\n            },\n            \"sic\": {\n              \"type\": \"array\",\n              \"items\": [\n                {\n                  \"type\": \"string\"\n                }\n              ]\n            },\n            \"isic\": {\n              \"type\": \"array\",\n              \"items\": [\n                {\n                  \"type\": \"string\"\n                }\n              ]\n            },\n            \"shortDescription\": {\n              \"type\": \"string\"\n            },\n            \"description\": {\n              \"type\": \"string\"\n            }\n          }\n        }\n      ]\n    }\n  }\n}\n\n</code></pre>\n<hr>\n<h1 id=\"rate-limiting\">Rate Limiting</h1>\n<p>All API requests are subject to rate limits that exist independently of your API key's monthly usage allowance. The maximum rate limit is <strong>1,000 requests per minute</strong>.</p>\n<p>Number of previews available - Number of credits available, multiplied by 10.</p>\n<h2 id=\"http-headers-and-response-codes\">HTTP Headers and Response Codes</h2>\n<p>Use the HTTP headers in order to understand where the application is at for a given rate limit, on the method that was just utilized.</p>\n<h3 id=\"x-rate-total-limit\"><strong>x-rate-total-limit</strong></h3>\n<p>The rate limit ceiling for all endpoints for the 1 minute window.</p>\n<h3 id=\"x-rate-total-limit-remaining\"><strong>x-rate-total-limit-remaining</strong></h3>\n<p>The number of requests left remaining for the 1 minute window.</p>\n<h3 id=\"x-rate-limit-reset\"><strong>x-rate-limit-reset</strong></h3>\n<p>Number of seconds before rate limits are reset.</p>\n<h3 id=\"x-rate-limit-user\"><strong>x-rate-limit-user</strong></h3>\n<p>User name.</p>\n<h3 id=\"x-rate-endpoint-limit\"><strong>x-rate-endpoint-limit</strong></h3>\n<p>The rate limit ceiling for single endpoints for the 1 minute window.</p>\n<h3 id=\"x-rate-endpoint-limit-remaining\"><strong>x-rate-endpoint-limit-remaining</strong></h3>\n<p>The number of requests left remaining for single endpoints for the 1 minute window.</p>\n<h3 id=\"x-rate-result-limit\"><strong>x-rate-result-limit</strong></h3>\n<p>Total number of preview profiles within API contract. Calculated as number of credits x 10.</p>\n<h3 id=\"x-rate-result-limit-remaining\"><strong>x-rate-result-limit-remaining</strong></h3>\n<p>Total number of remaining requests within API contract.</p>\n<h3 id=\"x-rate-result-limit-reset\"><strong>x-rate-result-limit-reset</strong></h3>\n<p>Number of seconds before rate result limit is reset (until end of current contract).</p>\n<h3 id=\"x-rate-result-limit-1\"><strong>x-rate-result-limit</strong></h3>\n<p>The limit on preview profiles (contact or account). Limit is calculated as number of allocated credits x 10, e.g. 1 000 000 credits = 10 000 000 preview limit. Preview limit is decreased by the number of returned preview profiles on Search and Enrich endpoints. Usually single Search request decreases the preview limit by 20 (default index size) and Enrich by 1.</p>\n<p><strong>Redeem endpoint uses standard credits and does not decreases preview limit.</strong></p>\n<h4 id=\"http-429-too-many-requests\"><strong>HTTP 429 “Too Many Requests”</strong></h4>\n<p>This response code is returned when an application exceeds the rate limit for a given API endpoint, and the following error is returned in the response body:</p>\n<p><code>{ \"errors\": [ { \"code\": 88, \"message\": \"Rate limit exceeded\" } ] }</code>.</p>\n<hr>\n<h1 id=\"matching-strategies-for-enrich-endpoint\">Matching strategies for Enrich endpoint</h1>\n<h3 id=\"how-matching-works\">How Matching Works</h3>\n<p>Each input parameter contributes to an overall match score, which represents the confidence level of a match.</p>\n<p>Constant fields such as firstName, lastName, and email have consistent scoring weight.</p>\n<p>Dynamic fields such as jobTitle or accountName are weighted based on specificity and uniqueness:</p>\n<p>“Software Engineer” adds fewer points than “Senior Machine Learning Engineer” because it is more general.</p>\n<blockquote>\n<p><strong>If no profile meets your minMatchScore threshold, the API returns no data.</strong> </p>\n</blockquote>\n<h3 id=\"balancing-accuracy-and-match-rate\">Balancing Accuracy and Match Rate</h3>\n<p>Every enrichment result is scored. The default minMatchScore is 30, which provides a balanced level between accuracy and match rate.</p>\n<p>You can adjust this value depending on your use case:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Goal</strong></th>\n<th><strong>Recommended minMatchScore</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>High accuracy</td>\n<td>38-50</td>\n<td>Returns only high-confidence matches; fewer results but very reliable.</td>\n</tr>\n<tr>\n<td>Balanced mode (default)</td>\n<td>29-38</td>\n<td>Recommended for general use — good mix of accuracy and match rate.</td>\n</tr>\n<tr>\n<td>High match rate</td>\n<td>25-29</td>\n<td>Returns more results but may include lower-confidence or ambiguous matches.</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><strong>It is not recommended to use minMatchScore above 45. Increase in accuracy is almost non existent above this threshold.</strong> </p>\n</blockquote>\n<h3 id=\"example-requests\">Example Requests</h3>\n<h4 id=\"example-1--high-accuracy-lookup\">Example 1 — High-Accuracy Lookup</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">{\n  \"firstName\": \"Jane\",\n  \"lastName\": \"Doe\",\n  \"jobTitle\": \"Senior Product Designer\",\n  \"accountWebsite\": \"test.com\",\n  \"minMatchScore\": 45\n}\n\n</code></pre>\n<p>Behavior:<br>Tight score threshold (minMatchScore ≥ 45).<br>Returns a result only if contact data strongly matches all criteria, it will possibly miss on good match in case of data change.<br>Best for precise identity resolution and when input data is high quality</p>\n<h4 id=\"example-2--broader-matching\">Example 2 — Broader Matching</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">{\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"jobTitle\": \"Software Engineer\",\n  \"accountName\": \"Acme Corp\",\n  \"minMatchScore\": 28\n}\n\n</code></pre>\n<p>Behavior:<br>Looser threshold (minMatchScore ≥ 28).<br>May return one of several potential contacts having same firstName and lastName with full or partial match on accountName or jobTitle. Suitable for wide data discovery or when inputs are uncertain.</p>\n<h4 id=\"example-3--using-unique-identifiers\">Example 3 — Using Unique Identifiers</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"email\": \"john.doe@test.com\"\n}\n\n</code></pre>\n<p>Behavior:<br>Direct identifier match.<br>Typically scores between 40–49.<br>Not the best use case for Enrich endpoint</p>\n<blockquote>\n<p>It is also recommended to use Search endpoint for cases like this. There is no benefit of scoring mechanism when input is single field, it will come down to <strong>match</strong> or <strong>no match</strong> </p>\n</blockquote>\n<h1 id=\"error-response-messages\">Error response messages</h1>\n<p>With an unexpected response, usually, one of the below HTTP codes will be returned. Check the table for help with error messages and troubleshooting steps.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Message</th>\n<th>Troubleshooting</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>400</td>\n<td>Requested page number must be within allowed values</td>\n<td>Check page query parameter. Make sure it is a number and within allowed range</td>\n</tr>\n<tr>\n<td>400</td>\n<td>Requested page size must be within allowed values</td>\n<td>Check pageSize query parameter. Make sure it is a number and within allowed range</td>\n</tr>\n<tr>\n<td>400</td>\n<td>Request body invalid JSON</td>\n<td>Make sure request contains valid JSON</td>\n</tr>\n<tr>\n<td>400</td>\n<td>Search request not supported by subscribed entitlement</td>\n<td>Check your Entitlement definition for allowed search fields. Contact Cognism for Entitlement expansion</td>\n</tr>\n<tr>\n<td>400</td>\n<td>Unrecognized fields in the request</td>\n<td>Make sure all fields in the request are supported, check for typos</td>\n</tr>\n<tr>\n<td>401</td>\n<td>Unauthorised</td>\n<td>Make sure API KEY is valid and included in the request. Check <a href=\"#authentication\">Authentication</a> for more details</td>\n</tr>\n<tr>\n<td>402</td>\n<td>You've exceeded your credits limit. Please contact CSM</td>\n<td>Not enough credits for the action</td>\n</tr>\n<tr>\n<td>429</td>\n<td>Rate limit exceeded</td>\n<td>Check <a href=\"#rate-limiting\">Rate limiting</a> for more details.</td>\n</tr>\n<tr>\n<td>500</td>\n<td>Internal server error</td>\n<td>The server encountered an unexpected condition which prevented it from fulfilling the request. Please contact support if this continues.</td>\n</tr>\n</tbody>\n</table>\n</div></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Authentication","slug":"authentication"},{"content":"API structure","slug":"api-structure"},{"content":"Entitlements","slug":"entitlements"},{"content":"Response schema","slug":"response-schema"},{"content":"Rate Limiting","slug":"rate-limiting"},{"content":"Matching strategies for Enrich endpoint","slug":"matching-strategies-for-enrich-endpoint"},{"content":"Error response messages","slug":"error-response-messages"}],"owner":"14862827","collectionId":"58d2e00d-2fc0-4594-89e3-3c6d43bf293d","publishedId":"UVJhBu4C","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"282850","highlight":"4e3cbb"},"publishDate":"2023-10-25T12:27:07.000Z"},"item":[{"name":"Search API","item":[{"name":"Search Contacts","id":"6c453b29-38c4-4037-8c09-7ba084bb3b7f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <My-Api-Key>"}],"body":{"mode":"raw","raw":"{\r\n    \"firstName\": \"Stjepan\",\r\n    \"lastName\": \"Buljat\",\r\n    \"jobTitles\": [\r\n        \"Chief Innovation Officer\"\r\n    ],\r\n    \"excludeJobTitles\": [\r\n        \"CEO\"\r\n    ],\r\n    \"regions\": [\r\n        \"EMEA\"\r\n    ],\r\n    \"mobilePhoneNumbers\": {\r\n        \"highPlus\": true\r\n    },\r\n    \"emailQuality\": {\r\n        \"highPlus\": true\r\n    },\r\n    \"account\": {\r\n        \"names\": [\r\n            \"Cognism\"\r\n        ],\r\n        \"officePhoneNumbers\": {\r\n            \"medium\": true\r\n        }\r\n    }\r\n}"},"url":"https://app.cognism.com/api/search/contact/search?indexSize=25&lastReturnedKey=","description":"<p>Search Contacts and see preview data.</p>\n<blockquote>\n<p>Dot denotes field is one level deep. Field name on the right side of the dot is child object of the object on the left side of the dot </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field name</th>\n<th>Field data type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ids</td>\n<td>Array[String]</td>\n<td>Contact ids</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>String</td>\n<td>Contact name</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>String</td>\n<td>Contact first name</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>String</td>\n<td>Contact last name</td>\n</tr>\n<tr>\n<td>jobTitles</td>\n<td>Array[String]</td>\n<td>Contact current position job titles</td>\n</tr>\n<tr>\n<td>excludeJobTitles</td>\n<td>Array[String]</td>\n<td>Contact current position excluded job titles</td>\n</tr>\n<tr>\n<td>seniority</td>\n<td>Array[String]</td>\n<td>Contact current position seniority. Allowed values: <code>Manager</code>,  <br /><code>Director</code>,  <br /><code>Partner</code>,  <br /><code>CXO</code>,  <br /><code>Owner</code>,  <br /><code>VP</code></td>\n</tr>\n<tr>\n<td>jobFunctions</td>\n<td>Array[String]</td>\n<td>Contact current position job functions. Allowed values: <code>Oversight</code>,  <br /><code>Technology</code>,  <br /><code>Operations</code>,  <br /><code>Sales</code>,  <br /><code>Marketing</code>,  <br /><code>Client Success</code>, <code>HR</code>, <code>Accounting</code>,  <br /><code>Business</code>,  <br /><code>Production</code></td>\n</tr>\n<tr>\n<td>managementLevel</td>\n<td>Array[String]</td>\n<td>Contact current position management levels. Allowed values: <code>Entry-Level</code>,  <br /><code>Team-Lead</code>,  <br /><code>Experienced Staff</code>,  <br /><code>Executive-Level</code>,  <br /><code>Senior Leadership</code>,  <br /><code>Middle-Management</code>,  <br /><code>CxO</code></td>\n</tr>\n<tr>\n<td>regions</td>\n<td>Array[String]</td>\n<td>Contact location world regions. Check allowed values <a href=\"#427e6faa-e156-4897-896a-63dc8741f90f\">Regions</a></td>\n</tr>\n<tr>\n<td>countries</td>\n<td>Array[String]</td>\n<td>Contact location countries. Check allowed values <a href=\"#f04b5581-a45f-4da4-af0c-78c1b20a0e16\">Countries</a></td>\n</tr>\n<tr>\n<td>excludeCountries</td>\n<td>Array[String]</td>\n<td>Contact location excluded countries. Check allowed values <a href=\"#f04b5581-a45f-4da4-af0c-78c1b20a0e16\">Countries</a></td>\n</tr>\n<tr>\n<td>states</td>\n<td>Array[String]</td>\n<td>Contact location states. Check allowed values <a href=\"#d5de3902-c542-43c6-bede-7b09aa140a09\">States</a></td>\n</tr>\n<tr>\n<td>excludeStates</td>\n<td>Array[String]</td>\n<td>Contact location excluded states. Check allowed values <a href=\"#d5de3902-c542-43c6-bede-7b09aa140a09\">States</a></td>\n</tr>\n<tr>\n<td>cities</td>\n<td>Array[String]</td>\n<td>Contact location cities</td>\n</tr>\n<tr>\n<td>excludeCities</td>\n<td>Array[String]</td>\n<td>Contact location excluded cities</td>\n</tr>\n<tr>\n<td>zip</td>\n<td>Array[String]</td>\n<td>Contact location zip codes</td>\n</tr>\n<tr>\n<td>locations</td>\n<td>Array[object]</td>\n<td>Array of object containing country, city, state and zip codes. OR logic is applied between objects</td>\n</tr>\n<tr>\n<td>locations.country</td>\n<td>String</td>\n<td>Contact location country</td>\n</tr>\n<tr>\n<td>locations.city</td>\n<td>String</td>\n<td>Contact location city</td>\n</tr>\n<tr>\n<td>locations.state</td>\n<td>String</td>\n<td>Contact location state</td>\n</tr>\n<tr>\n<td>locations.zip</td>\n<td>String</td>\n<td>Contact location ZIP or postal code</td>\n</tr>\n<tr>\n<td>skills</td>\n<td>Array[String]</td>\n<td>Contact skills. Check allowed values <a href=\"#c6d4da9a-7e91-429d-bca8-5a7813643aa5\">Skills</a></td>\n</tr>\n<tr>\n<td>excludeSkills</td>\n<td>Array[String]</td>\n<td>Contact excluded skills. Check allowed values <a href=\"#c6d4da9a-7e91-429d-bca8-5a7813643aa5\">Skills</a></td>\n</tr>\n<tr>\n<td>linkedinUrl</td>\n<td>String</td>\n<td>Contact LinkedIn URL</td>\n</tr>\n<tr>\n<td>education.schools</td>\n<td>Array[String]</td>\n<td>Contact education school name</td>\n</tr>\n<tr>\n<td>education.degrees</td>\n<td>Array[String]</td>\n<td>Contact education degree name</td>\n</tr>\n<tr>\n<td>mobilePhoneNumbers.medium</td>\n<td>Boolean</td>\n<td>Search contacts with medium quality mobile phone numbers</td>\n</tr>\n<tr>\n<td>mobilePhoneNumbers.high</td>\n<td>Boolean</td>\n<td>Search contacts with high quality mobile phone numbers</td>\n</tr>\n<tr>\n<td>mobilePhoneNumbers.highPlus</td>\n<td>Boolean</td>\n<td>Search contacts with highPlus quality mobile phone numbers</td>\n</tr>\n<tr>\n<td>directPhoneNumbers.medium</td>\n<td>Boolean</td>\n<td>Search contacts with medium quality direct phone numbers</td>\n</tr>\n<tr>\n<td>directPhoneNumbers.high</td>\n<td>Boolean</td>\n<td>Search contacts with high quality direct phone numbers</td>\n</tr>\n<tr>\n<td>directPhoneNumbers.highPlus</td>\n<td>Boolean</td>\n<td>Search contacts with highPlus quality direct phone numbers</td>\n</tr>\n<tr>\n<td>emailQuality.medium</td>\n<td>Boolean</td>\n<td>Search contacts with medium quality email</td>\n</tr>\n<tr>\n<td>emailQuality.high</td>\n<td>Boolean</td>\n<td>Search contacts with high quality email</td>\n</tr>\n<tr>\n<td>emailQuality.highPlus</td>\n<td>Boolean</td>\n<td>Search contacts with highPlus quality email</td>\n</tr>\n<tr>\n<td>sha256</td>\n<td>Array[String]</td>\n<td>Search contacts by sha256 hashed email</td>\n</tr>\n<tr>\n<td>lastConfirmed.from</td>\n<td>Long</td>\n<td>Contact profile time updated range from. (Unix timestamp in milliseconds)</td>\n</tr>\n<tr>\n<td>lastConfirmed.to</td>\n<td>Long</td>\n<td>Contact profile time updated range to. (Unix timestamp in milliseconds)</td>\n</tr>\n<tr>\n<td>account.names</td>\n<td>Array[String]</td>\n<td>Contact current account names</td>\n</tr>\n<tr>\n<td>account.excludeNames</td>\n<td>Array[String]</td>\n<td>Contact current account exclude names</td>\n</tr>\n<tr>\n<td>account.domains</td>\n<td>Array[String]</td>\n<td>Contact current account domains</td>\n</tr>\n<tr>\n<td>account.excludeDomains</td>\n<td>Array[String]</td>\n<td>Contact current account exclude domains</td>\n</tr>\n<tr>\n<td>account.websites</td>\n<td>Array[String]</td>\n<td>Contact current account websites</td>\n</tr>\n<tr>\n<td>account.description</td>\n<td>String</td>\n<td>Contact current account description (keyword)</td>\n</tr>\n<tr>\n<td>account.excludeDescription</td>\n<td>String</td>\n<td>Contact current account excluded description (keyword)</td>\n</tr>\n<tr>\n<td>account.shortDescription</td>\n<td>String</td>\n<td>Contact current account short description (keyword)</td>\n</tr>\n<tr>\n<td>account.keywords</td>\n<td>Array[String]</td>\n<td>Contact current account keywords</td>\n</tr>\n<tr>\n<td>account.revenue.from</td>\n<td>Long</td>\n<td>Contact current account revenue range from</td>\n</tr>\n<tr>\n<td>account.revenue.to</td>\n<td>Long</td>\n<td>Contact current account revenue range to</td>\n</tr>\n<tr>\n<td>account.founded.from</td>\n<td>Int</td>\n<td>Contact current account founded year range from</td>\n</tr>\n<tr>\n<td>account.founded.fo</td>\n<td>Int</td>\n<td>Contact current account founded year range to</td>\n</tr>\n<tr>\n<td>account.types</td>\n<td>Array[String]</td>\n<td>Contact current account type. Allowed values: <code>Public Company</code> ,  <br /><code>Educational</code> ,  <br /><code>Educational Institution</code> ,  <br /><code>Government Agency</code> ,  <br /><code>Partnership</code> ,  <br /><code>Privately Held</code> ,  <br /><code>Self-Employed</code> ,  <br /><code>non profit</code></td>\n</tr>\n<tr>\n<td>account.regions</td>\n<td>Array[String]</td>\n<td>Contact current account world regions. Check allowed values <a href=\"#427e6faa-e156-4897-896a-63dc8741f90f\">Regions</a></td>\n</tr>\n<tr>\n<td>account.countries</td>\n<td>Array[String]</td>\n<td>Contact current account countries. Check allowed values <a href=\"#f04b5581-a45f-4da4-af0c-78c1b20a0e16\">Countries</a></td>\n</tr>\n<tr>\n<td>account.excludeCountries</td>\n<td>Array[String]</td>\n<td>Contact current account excluded countries. Check allowed values <a href=\"#f04b5581-a45f-4da4-af0c-78c1b20a0e16\">Countries</a></td>\n</tr>\n<tr>\n<td>account.states</td>\n<td>Array[String]</td>\n<td>Contact current account states. Check allowed values <a href=\"#d5de3902-c542-43c6-bede-7b09aa140a09\">States</a></td>\n</tr>\n<tr>\n<td>account.excludeStates</td>\n<td>Array[String]</td>\n<td>Contact current account excluded states. Check allowed values <a href=\"#d5de3902-c542-43c6-bede-7b09aa140a09\">States</a></td>\n</tr>\n<tr>\n<td>account.cities</td>\n<td>Array[String]</td>\n<td>Contact current account cities</td>\n</tr>\n<tr>\n<td>account.excludeCities</td>\n<td>Array[String]</td>\n<td>Contact current account excluded cities</td>\n</tr>\n<tr>\n<td>account.zip</td>\n<td>Array[String]</td>\n<td>Contact current account zip codes</td>\n</tr>\n<tr>\n<td>account.locations</td>\n<td>Array[object]</td>\n<td>Array of object containing country, city, state and zip codes. OR logic is applied between objects</td>\n</tr>\n<tr>\n<td>account.locations.country</td>\n<td>String</td>\n<td>Account location country</td>\n</tr>\n<tr>\n<td>account.locations.city</td>\n<td>String</td>\n<td>Account location city</td>\n</tr>\n<tr>\n<td>account.locations.state</td>\n<td>String</td>\n<td>Account location state</td>\n</tr>\n<tr>\n<td>account.locations.zip</td>\n<td>String</td>\n<td>Account zip or postal code</td>\n</tr>\n<tr>\n<td>account.industries</td>\n<td>Array[String]</td>\n<td>Contact current account industries. Check allowed values <a href=\"#2d569729-32f0-4fb3-81ca-98587c8962b5\">Industries</a></td>\n</tr>\n<tr>\n<td>account.excludeIndustries</td>\n<td>Array[String]</td>\n<td>Contact current account excluded industries. Check allowed values <a href=\"#2d569729-32f0-4fb3-81ca-98587c8962b5\">Industries</a></td>\n</tr>\n<tr>\n<td>account.sic</td>\n<td>Array[String]</td>\n<td>Contact current account SIC codes. Check allowed values <a href=\"#2bee7a4e-ae0d-4276-842c-d6af7c555518\">SIC Codes</a></td>\n</tr>\n<tr>\n<td>account.isic</td>\n<td>Array[String]</td>\n<td>Contact current account ISIC codes. Check allowed values <a href=\"#2efda4c7-7928-4722-9636-ed5ccf8ad75c\">ISIC Codes</a></td>\n</tr>\n<tr>\n<td>account.naics</td>\n<td>Array[String]</td>\n<td>Contact current account NAICS codes. Check allowed values <a href=\"#0b46ced6-73d4-4798-b1c5-15163621c287\">NAICS Codes</a></td>\n</tr>\n<tr>\n<td>account.headcount.from</td>\n<td>Int</td>\n<td>Contact current account headcount minimum</td>\n</tr>\n<tr>\n<td>account.headcount.to</td>\n<td>Int</td>\n<td>Contact current account headcount maximum</td>\n</tr>\n<tr>\n<td>account.technologies</td>\n<td>Array[String]</td>\n<td>Contact current account technologies used. Check allowed values <a href=\"#95532229-02b1-479e-9ad9-547a1d84fd5e\">Technologies</a></td>\n</tr>\n<tr>\n<td>account.excludedTechnologies</td>\n<td>Array[String]</td>\n<td>Contact current account exclude technologies used. Check allowed values <a href=\"#95532229-02b1-479e-9ad9-547a1d84fd5e\">Technologies</a></td>\n</tr>\n<tr>\n<td>account.lastConfirmed.from</td>\n<td>Long</td>\n<td>Contact current account time updated range from. (Unix timestamp in milliseconds)</td>\n</tr>\n<tr>\n<td>account.lastConfirmed.to</td>\n<td>Long</td>\n<td>Contact current account time updated range to. (Unix timestamp in milliseconds)</td>\n</tr>\n<tr>\n<td>account.hqPhoneNumbers.medium</td>\n<td>Boolean</td>\n<td>Search contacts with account having medium quality HQ phone numbers</td>\n</tr>\n<tr>\n<td>account.hqPhoneNumbers.high</td>\n<td>Boolean</td>\n<td>Search contacts with account having high quality HQ phone numbers</td>\n</tr>\n<tr>\n<td>account.hqPhoneNumbers.highPlus</td>\n<td>Boolean</td>\n<td>Search contacts with account having highPlus quality HQ phone numbers</td>\n</tr>\n<tr>\n<td>account.officePhoneNumbers.medium</td>\n<td>Boolean</td>\n<td>Search contacts with account having medium quality office phone numbers</td>\n</tr>\n<tr>\n<td>account.officePhoneNumbers.high</td>\n<td>Boolean</td>\n<td>Search contacts with account having high quality HQ phone numbers</td>\n</tr>\n<tr>\n<td>account.officePhoneNumbers.highPlus</td>\n<td>Boolean</td>\n<td>Search contacts with account having highPlus quality HQ phone numbers</td>\n</tr>\n<tr>\n<td>account.hiringEvent.eventDateFrom</td>\n<td>Long</td>\n<td>Contact current account hiring event date range from (Unix timestamp in milliseconds)</td>\n</tr>\n<tr>\n<td>account.hiringEvent.eventDateTo</td>\n<td>Long</td>\n<td>Contact current account hiring event date range to (Unix timestamp in milliseconds)</td>\n</tr>\n<tr>\n<td>account.hiringEvent.jobTitle</td>\n<td></td>\n<td>Contact current account hiring event job title</td>\n</tr>\n<tr>\n<td>account.hiringEvent.department</td>\n<td>String</td>\n<td>Contact current account hiring event hiring department. Allowed values: <code>legal</code>, <code>it</code>, <code>administration</code>, <code>marketing</code>, <code>sales</code>, <code>R&amp;D</code>, <code>customer</code>, <code>operations</code>, <code>finance</code></td>\n</tr>\n<tr>\n<td>account.hiringEvent.country</td>\n<td>Array[String]</td>\n<td>Contact current account hiring event job place countries</td>\n</tr>\n<tr>\n<td>account.hiringEvent.state</td>\n<td>Array[String]</td>\n<td>Contact current account hiring event job place states</td>\n</tr>\n<tr>\n<td>account.hiringEvent.city</td>\n<td>Array[String]</td>\n<td>Contact current account hiring event job place cities</td>\n</tr>\n<tr>\n<td>account.fundingEvent.eventDateFrom</td>\n<td>Long</td>\n<td>Start date (timestamp) of the funding event</td>\n</tr>\n<tr>\n<td>account.fundingEvent.eventDateTo</td>\n<td>Long</td>\n<td>End date (timestamp) of the funding event</td>\n</tr>\n<tr>\n<td>account.fundingEvent.fundingType</td>\n<td>Array[String]</td>\n<td>Types of funding rounds.  <br />Allowed values:  <br /><code>venture</code>,  <br /><code>seed</code>,  <br /><code>grant</code>,  <br /><code>private_equity</code>,  <br /><code>angel</code>,  <br /><code>debt_financing</code>,  <br /><code>corporate_round</code>,  <br /><code>convertible note</code>,  <br /><code>equity_crowfunding</code></td>\n</tr>\n<tr>\n<td>account.fundingEvent.series</td>\n<td>Array[String]</td>\n<td>Series classifications of the funding event.  <br />Allowed values:  <br /><code>A</code>,  <br /><code>B</code>,  <br /><code>C</code>,  <br /><code>D</code>,  <br /><code>E</code>,  <br /><code>F</code>,  <br /><code>G</code>,  <br /><code>H</code>,  <br /><code>I</code>,  <br /><code>J</code>,  <br /><code>K</code></td>\n</tr>\n<tr>\n<td>account.ipoEvent.eventDateFrom</td>\n<td>Long</td>\n<td>Start date (timestamp) of the IPO event</td>\n</tr>\n<tr>\n<td>account.ipoEvent.eventDateTo</td>\n<td>Long</td>\n<td>End date (timestamp) of the IPO event</td>\n</tr>\n<tr>\n<td>account.acquisitionEvent.eventDateFrom</td>\n<td>Long</td>\n<td>Start date (timestamp) of the acquisition event</td>\n</tr>\n<tr>\n<td>account.acquisitionEvent.eventDateTo</td>\n<td>Long</td>\n<td>End date (timestamp) of the acquisition event</td>\n</tr>\n<tr>\n<td>account.acquisitionEvent.acquirer</td>\n<td>Array[String]</td>\n<td>Names of acquiring companies</td>\n</tr>\n<tr>\n<td>account.acquisitionEvent.acquiree</td>\n<td>Array[String]</td>\n<td>Names of acquired companies</td>\n</tr>\n<tr>\n<td>account.accountSearchOptions.match_exact_account_name</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>account.accountSearchOptions.match_exact_domain</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>account.accountSearchOptions.filter_email</td>\n<td>String</td>\n<td>Allowed values: <code>exists</code>, <code>missing</code></td>\n</tr>\n<tr>\n<td>account.accountSearchOptions.show_max_events</td>\n<td>Int</td>\n<td></td>\n</tr>\n<tr>\n<td>account.accountSearchOptions.filter_domain</td>\n<td>String</td>\n<td>Allowed values: <code>exists</code>, <code>missing</code></td>\n</tr>\n<tr>\n<td>account.accountSearchOptions.location_type</td>\n<td>String</td>\n<td>Allowed values: <code>ALL</code>, <code>HQ</code></td>\n</tr>\n<tr>\n<td>account.accountSearchOptions.events_operator</td>\n<td>String</td>\n<td>Allowed values: <code>AND</code>, <code>OR</code>  <br />Default value is <code>OR</code></td>\n</tr>\n<tr>\n<td>account.accountSearchOptions.operators.technologies</td>\n<td>String</td>\n<td>Allowed values: <code>AND</code>, <code>OR</code></td>\n</tr>\n<tr>\n<td>account.accountSearchOptions.operators.excludedTechnologies</td>\n<td>String</td>\n<td>Allowed values: <code>AND</code>, <code>OR</code></td>\n</tr>\n<tr>\n<td>previousAccounts.names</td>\n<td>Array[String]</td>\n<td>Contact previous companies names</td>\n</tr>\n<tr>\n<td>previousAccounts.excludeNames</td>\n<td>Array[String]</td>\n<td>Contact previous companies exclude names</td>\n</tr>\n<tr>\n<td>previousAccounts.titles</td>\n<td>Array[String]</td>\n<td>Contact previous companies job titles</td>\n</tr>\n<tr>\n<td>previousAccounts.regions</td>\n<td>Array[String]</td>\n<td>Contact previous companies world regions. Check allowed values <a href=\"#427e6faa-e156-4897-896a-63dc8741f90f\">Regions</a></td>\n</tr>\n<tr>\n<td>previousAccounts.countries</td>\n<td>Array[String]</td>\n<td>Contact previous companies countries. Check allowed values <a href=\"#f04b5581-a45f-4da4-af0c-78c1b20a0e16\">Countries</a></td>\n</tr>\n<tr>\n<td>previousAccounts.excludeCountries</td>\n<td>Array[String]</td>\n<td>Contact previous companies excluded countries. Check allowed values <a href=\"#f04b5581-a45f-4da4-af0c-78c1b20a0e16\">Countries</a></td>\n</tr>\n<tr>\n<td>previousAccounts.states</td>\n<td>Array[String]</td>\n<td>Contact previous companies states. Check allowed values <a href=\"#d5de3902-c542-43c6-bede-7b09aa140a09\">States</a></td>\n</tr>\n<tr>\n<td>previousAccounts.excludeStates</td>\n<td>Array[String]</td>\n<td>Contact previous companies excluded states. Check allowed values <a href=\"#d5de3902-c542-43c6-bede-7b09aa140a09\">States</a></td>\n</tr>\n<tr>\n<td>previousAccounts.cities</td>\n<td>Array[String]</td>\n<td>Contact previous companies cities</td>\n</tr>\n<tr>\n<td>previousAccounts.excludeCities</td>\n<td>Array[String]</td>\n<td>Contact previous companies excluded cities</td>\n</tr>\n<tr>\n<td>previousAccounts.zip</td>\n<td>Array[String]</td>\n<td>Contact previous companies zip codes</td>\n</tr>\n<tr>\n<td>previousAccounts.emailQuality.medium</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>previousAccounts.emailQuality.high</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>previousAccounts.emailQuality.highPlus</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>previousAccounts.jobFunction</td>\n<td>Array[String]</td>\n<td></td>\n</tr>\n<tr>\n<td>previousAccounts.seniority</td>\n<td>Array[String]</td>\n<td></td>\n</tr>\n<tr>\n<td>previousAccounts.managementLevel</td>\n<td>Array[String]</td>\n<td></td>\n</tr>\n<tr>\n<td>searchOptions.match_exact_job_title</td>\n<td>Boolean</td>\n<td>When set to false (default), the job title search uses tokenized matching. This means it will return any job titles that contain all the input tokens, regardless of order or additional context.  <br />Example:  <br />Searching for \"Partnerships Manager\" may return results like:  <br />- \"Partnerships Manager\"  <br />- \"Senior Manager, Integrated Marketing Partnerships\"  <br />- \"Corporate Partnerships Account Manager\"  <br />- Any other title containing both words: Partnerships and Manager  <br />When set to true, only job titles that exactly match the input string (case-insensitive, but word-for-word) will be returned.  <br />Example:  <br />Searching for \"Partnerships Manager\" will only return:  <br />- \"Partnerships Manager\"  <br />Combination of <code>match_exact_job_title:true</code> and <code>ai_job_title:true</code> can produce broad but targeted job title search</td>\n</tr>\n<tr>\n<td>searchOptions.ai_job_title</td>\n<td>Boolean</td>\n<td>AI expansion of job titles</td>\n</tr>\n<tr>\n<td>searchOptions.sort_fields</td>\n<td>Array[String]</td>\n<td>Allowed values: <code>LastConfirmedContactDESC</code>,  <br /><code>LastConfirmedContactASC</code>,  <br /><code>EmailQualityDESC</code>,  <br /><code>EmailQualityASC</code>,  <br /><code>ProfileScoreDESC</code>,  <br /><code>ProfileScoreASC</code></td>\n</tr>\n<tr>\n<td>locationMoveEvent.eventDateFrom</td>\n<td>Long</td>\n<td>Contact location move event date range from (Unix timestamp in milliseconds)</td>\n</tr>\n<tr>\n<td>locationMoveEvent.eventDateTo</td>\n<td>Long</td>\n<td>Contact location move event date range to (Unix timestamp in milliseconds)</td>\n</tr>\n<tr>\n<td>locationMoveEvent.fromCountry</td>\n<td>Array[String]</td>\n<td>Contact location move from country</td>\n</tr>\n<tr>\n<td>locationMoveEvent.fromState</td>\n<td>Array[String]</td>\n<td>Contact location move from state</td>\n</tr>\n<tr>\n<td>locationMoveEvent.fromCity</td>\n<td>Array[String]</td>\n<td>Contact location move from city</td>\n</tr>\n<tr>\n<td>locationMoveEvent.toCountry</td>\n<td>Array[String]</td>\n<td>Contact location move to country</td>\n</tr>\n<tr>\n<td>locationMoveEvent.toState</td>\n<td>Array[String]</td>\n<td>Contact location move to state</td>\n</tr>\n<tr>\n<td>locationMoveEvent.toCity</td>\n<td>Array[String]</td>\n<td>Contact location move to city</td>\n</tr>\n<tr>\n<td>jobJoinEvent.eventDateFrom</td>\n<td>Long</td>\n<td>Contact job join event date range from (Unix timestamp in milliseconds)</td>\n</tr>\n<tr>\n<td>jobJoinEvent.eventDateTo</td>\n<td>Long</td>\n<td>Contact job join event date range to (Unix timestamp in milliseconds)</td>\n</tr>\n<tr>\n<td>jobJoinEvent.fromCompany</td>\n<td>Array[String]</td>\n<td>Contact job join from company</td>\n</tr>\n<tr>\n<td>jobJoinEvent.fromJobTitle</td>\n<td>Array[String]</td>\n<td>Contact job join from job title</td>\n</tr>\n<tr>\n<td>jobJoinEvent.fromIndustry</td>\n<td>Array[String]</td>\n<td>Contact job join from industry</td>\n</tr>\n<tr>\n<td>jobJoinEvent.toCompany</td>\n<td>Array[String]</td>\n<td>Contact job join to company</td>\n</tr>\n<tr>\n<td>jobJoinEvent.toJobTitle</td>\n<td>Array[String]</td>\n<td>Contact job join to job title</td>\n</tr>\n<tr>\n<td>jobJoinEvent.toIndustry</td>\n<td>Array[String]</td>\n<td>Contact job join to industry</td>\n</tr>\n<tr>\n<td>jobLeaveEvent.eventDateFrom</td>\n<td>Long</td>\n<td>Contact job leave event date range from (Unix timestamp in milliseconds)</td>\n</tr>\n<tr>\n<td>jobLeaveEvent.eventDateTo</td>\n<td>Long</td>\n<td>Contact job leave event date range from (Unix timestamp in milliseconds)</td>\n</tr>\n<tr>\n<td>jobLeaveEvent.fromCompany</td>\n<td>Array[String]</td>\n<td>Contact job leave from company</td>\n</tr>\n<tr>\n<td>jobLeaveEvent.fromJobTitle</td>\n<td>Array[String]</td>\n<td>Contact job leave from job title</td>\n</tr>\n<tr>\n<td>jobLeaveEvent.fromIndustry</td>\n<td>Array[String]</td>\n<td>Contact job leave from industry</td>\n</tr>\n<tr>\n<td>jobLeaveEvent.toCompany</td>\n<td>Array[String]</td>\n<td>Contact job leave to company</td>\n</tr>\n<tr>\n<td>jobLeaveEvent.toJobTitle</td>\n<td>Array[String]</td>\n<td>Contact job leave to job title</td>\n</tr>\n<tr>\n<td>jobLeaveEvent.toIndustry</td>\n<td>Array[String]</td>\n<td>Contact job leave to industry</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","search","contact","search"],"host":["https://app.cognism.com"],"query":[{"description":{"content":"<p>Number of results in one result set. Default 20. Max 100.</p>\n","type":"text/plain"},"key":"indexSize","value":"25"},{"description":{"content":"<p>Last returned key used to fetch next set of results. If empty, first set of results is returned</p>\n","type":"text/plain"},"key":"lastReturnedKey","value":""}],"variable":[]}},"response":[{"id":"efb074d2-3866-4077-83f1-5b4fa7d627cf","name":"Search Contacts Advanced Entitlement","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <My-Api-Key>"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"firstName\": \"Stjepan\",\n    \"lastName\": \"Buljat\",\n    \"jobTitles\": [\n        \"Chief Innovation Officer\"\n    ],\n    \"excludeJobTitles\": [\n        \"CEO\"\n    ],\n    \"regions\": [\n        \"EMEA\"\n    ],\n    \"mobilePhoneNumbers\": {\n        \"highPlus\": true\n    },\n    \"emailQuality\": {\n        \"highPlus\": true\n    },\n    \"account\": {\n        \"names\": [\n            \"Cognism\"\n        ],\n        \"officePhoneNumbers\": {\n            \"medium\": true\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://app.cognism.com/api/search/contact/search?lastReturnedKey=&indexSize=20","protocol":"https","host":["app","cognism","com"],"path":["api","search","contact","search"],"query":[{"key":"lastReturnedKey","value":"","description":"Last returned key used to fetch next set of results. If empty, first set of results is returned"},{"key":"indexSize","value":"20","description":"Number of results in one result set. Default 20. Max 100."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 03 May 2024 11:16:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"676"},{"key":"Connection","value":"keep-alive"},{"key":"CF-Ray","value":"87dfd74e4a82278c-PRG"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Content-Encoding","value":"gzip"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"Vary","value":"Origin,Accept-Encoding"},{"key":"Via","value":"1.1 a51af242bb87a51c6b17ed13ee788db8.cloudfront.net (CloudFront)"},{"key":"referrer-policy","value":"origin-when-cross-origin, strict-origin-when-cross-origin"},{"key":"request-time","value":"882"},{"key":"x-account","value":"cognism"},{"key":"x-amz-cf-id","value":"-T2JdK_r2jEgSj_d24XO-ky_I8tZCSrAto2mWVVPv4CuA4hwCRMGEA=="},{"key":"x-amz-cf-pop","value":"FRA60-P5"},{"key":"x-cache","value":"Miss from cloudfront"},{"key":"x-cognism-account","value":"cognism"},{"key":"x-cognism-account-type","value":"Internal"},{"key":"x-cognism-user","value":"roko.grubic@cognism.com"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-frame-options","value":"DENY"},{"key":"x-hits","value":"1"},{"key":"x-hits-total","value":"1"},{"key":"x-permitted-cross-domain-policies","value":"master-only"},{"key":"x-rate-endpoint-limit","value":"500"},{"key":"x-rate-endpoint-limit-remaining","value":"498"},{"key":"x-rate-limit-reset","value":"39"},{"key":"x-rate-limit-user","value":"user(roko.grubic@cognism.com)"},{"key":"x-rate-results-limit","value":"9999990"},{"key":"x-rate-results-limit-remaining","value":"9999531"},{"key":"x-rate-results-limit-reset","value":"348884"},{"key":"x-rate-total-limit","value":"1000"},{"key":"x-rate-total-limit-remaining","value":"998"},{"key":"x-request-id","value":"sK4b5RChT8BU"},{"key":"x-request-time","value":"882"},{"key":"x-user","value":"roko.grubic@cognism.com"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"Server","value":"cloudflare"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"lastReturnedKey\": \"1714687499208_~34d633b7-41ea-3ac7-a280-431d71fd77eb\",\n    \"totalResults\": 1,\n    \"results\": [\n        {\n            \"id\": \"34d633b7-41ea-3ac7-a280-431d71fd77eb\",\n            \"firstName\": \"Stjepan\",\n            \"jobTitle\": \"Chief Innovation Officer\",\n            \"account\": {\n                \"name\": \"Cognism\",\n                \"id\": \"efc6d975-8599-38ab-8cfe-e1c42ac16dc6\",\n                \"hasOfficePhoneNumbers\": true,\n                \"hasHqPhoneNumbers\": false,\n                \"hasHiringEvent\": true,\n                \"hasHeadcount\": true,\n                \"hasSize\": true,\n                \"hasLocation\": true,\n                \"hasTechnologies\": true,\n                \"hasType\": true,\n                \"hasDomain\": true,\n                \"hasIndustry\": true,\n                \"hasRevenue\": true,\n                \"hasLinkedinUrl\": true,\n                \"hasWebsite\": true,\n                \"hasFounded\": true,\n                \"hasLastConfirmed\": true,\n                \"hasNaics\": true,\n                \"hasIsic\": false,\n                \"hasSic\": true,\n                \"hasShortDescription\": true,\n                \"hasDescription\": true\n            },\n            \"lastName\": \"Buljat\",\n            \"fullName\": \"Stjepan Buljat\",\n            \"hasPreviousAccounts\": true,\n            \"hasSkills\": true,\n            \"hasLocationMoveEvent\": false,\n            \"hasLinkedinUrl\": true,\n            \"hasEmail\": true,\n            \"hasEducation\": true,\n            \"hasZip\": false,\n            \"hasState\": false,\n            \"hasCountry\": true,\n            \"hasCity\": false,\n            \"hasRegion\": false,\n            \"hasJobLeaveEvent\": true,\n            \"hasJobJoinEvent\": true,\n            \"hasStreet\": false,\n            \"hasDirectPhoneNumbers\": false,\n            \"hasMobilePhoneNumbers\": false,\n            \"hasPositionStartDate\": true,\n            \"hasSeniority\": false,\n            \"hasJobFunction\": true,\n            \"hasManagementLevel\": true,\n            \"hasLastConfirmed\": true,\n            \"redeemId\": \"MzRkNjMzYjctNDFlYS0zYWM3LWEyODAtNDMxZDcxZmQ3N2ViO2IxMjBjOTdhLTlhNTItM2E3Zi1iNzNiLTg3MGUzYjQ0M2MxOTtlZmM2ZDk3NS04NTk5LTM4YWItOGNmZS1lMWM0MmFjMTZkYzY=\"\n        }\n    ]\n}"},{"id":"a9c531c5-3c4e-427d-ace2-d8f29cb2ca99","name":"Search Contacts Standard Entitlement","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <My-Api-Key>"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"firstName\": \"Stjepan\",\n    \"lastName\": \"Buljat\",\n    \"jobTitles\": [\n        \"Chief Innovation Officer\"\n    ],\n    \"excludeJobTitles\": [\n        \"CEO\"\n    ],\n    \"regions\": [\n        \"EMEA\"\n    ],\n    \"emailQuality\": {\n        \"highPlus\" :true\n    },\n    \"account\": {\n        \"names\": [\n            \"Cognism\"\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://app.cognism.com/api/search/contact/search?lastReturnedKey=&indexSize=20","protocol":"https","host":["app","cognism","com"],"path":["api","search","contact","search"],"query":[{"key":"lastReturnedKey","value":"","description":"Last returned key used to fetch next set of results. If empty, first set of results is returned"},{"key":"indexSize","value":"20","description":"Number of results in one result set. Default 20. Max 100."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 03 May 2024 11:18:35 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"676"},{"key":"Connection","value":"keep-alive"},{"key":"CF-Ray","value":"87dfd9e4ba19278c-PRG"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Content-Encoding","value":"gzip"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"Vary","value":"Origin,Accept-Encoding"},{"key":"Via","value":"1.1 6ce3814cb60a4c907ac701e60e4c1e5a.cloudfront.net (CloudFront)"},{"key":"referrer-policy","value":"origin-when-cross-origin, strict-origin-when-cross-origin"},{"key":"request-time","value":"907"},{"key":"x-account","value":"cognism"},{"key":"x-amz-cf-id","value":"Jhr_RITF7RCPRRwL9FnxiEDLNzcMW2GdSelA5_2XxfPqADCRWvFnQw=="},{"key":"x-amz-cf-pop","value":"FRA60-P5"},{"key":"x-cache","value":"Miss from cloudfront"},{"key":"x-cognism-account","value":"cognism"},{"key":"x-cognism-account-type","value":"Internal"},{"key":"x-cognism-user","value":"roko.grubic@cognism.com"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-frame-options","value":"DENY"},{"key":"x-hits","value":"1"},{"key":"x-hits-total","value":"1"},{"key":"x-permitted-cross-domain-policies","value":"master-only"},{"key":"x-rate-endpoint-limit","value":"500"},{"key":"x-rate-endpoint-limit-remaining","value":"498"},{"key":"x-rate-limit-reset","value":"41"},{"key":"x-rate-limit-user","value":"user(roko.grubic@cognism.com)"},{"key":"x-rate-results-limit","value":"9999990"},{"key":"x-rate-results-limit-remaining","value":"9999529"},{"key":"x-rate-results-limit-reset","value":"348778"},{"key":"x-rate-total-limit","value":"1000"},{"key":"x-rate-total-limit-remaining","value":"998"},{"key":"x-request-id","value":"IhqXoEm70dQ6"},{"key":"x-request-time","value":"907"},{"key":"x-user","value":"roko.grubic@cognism.com"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"Server","value":"cloudflare"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n  \"lastReturnedKey\": \"1714687499208_~34d633b7-41ea-3ac7-a280-431d71fd77eb\",\n  \"totalResults\": 1,\n  \"results\": [\n    {\n      \"id\": \"34d633b7-41ea-3ac7-a280-431d71fd77eb\",\n      \"firstName\": \"Stjepan\",\n      \"jobTitle\": \"Chief Innovation Officer\",\n      \"account\": {\n        \"name\": \"Cognism\",\n        \"id\": \"efc6d975-8599-38ab-8cfe-e1c42ac16dc6\",\n        \"hasHeadcount\": true,\n        \"hasSize\": true,\n        \"hasTechnologies\": true,\n        \"hasType\": true,\n        \"hasDomain\": true,\n        \"hasRevenue\": true,\n        \"hasWebsite\": true,\n        \"hasFounded\": true,\n        \"hasNaics\": true,\n        \"hasIsic\": false,\n        \"hasSic\": true,\n        \"hasShortDescription\": true,\n        \"hasDescription\": true\n      },\n      \"lastName\": \"Buljat\",\n      \"fullName\": \"Stjepan Buljat\",\n      \"hasSkills\": true,\n      \"hasLinkedinUrl\": true,\n      \"hasEmail\": true,\n      \"hasEducation\": true,\n      \"hasZip\": false,\n      \"hasState\": false,\n      \"hasCountry\": true,\n      \"hasCity\": false,\n      \"hasStreet\": false,\n      \"hasPositionStartDate\": true,\n      \"hasSeniority\": false,\n      \"hasJobFunction\": true,\n      \"hasManagementLevel\": true,\n      \"hasLastConfirmed\": true,\n      \"redeemId\": \"MzRkNjMzYjctNDFlYS0zYWM3LWEyODAtNDMxZDcxZmQ3N2ViO2IxMjBjOTdhLTlhNTItM2E3Zi1iNzNiLTg3MGUzYjQ0M2MxOTtlZmM2ZDk3NS04NTk5LTM4YWItOGNmZS1lMWM0MmFjMTZkYzY=\"\n    }\n  ]\n}"}],"_postman_id":"6c453b29-38c4-4037-8c09-7ba084bb3b7f"},{"name":"Search Accounts","event":[{"listen":"test","script":{"id":"5494b1b9-f5a8-4930-bda2-8af6626951c1","exec":[""],"type":"text/javascript","packages":{}}}],"id":"daadfd7c-19ce-4bb2-84f0-ba731397e1da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"names\": [\r\n        \"Cognism\"\r\n    ],\r\n    \"domains\": [\r\n        \"cognism.com\"\r\n    ],\r\n    \"accountSearchOptions\": {\r\n        \"match_exact_account_name\": true,\r\n        \"match_exact_domain\": false,\r\n        \"filter_domain\": \"exists\",\r\n        \"events_operator\": \"AND\"\r\n    }\r\n}"},"url":"https://app.cognism.com/api/search/account/search?indexSize=100&lastReturnedKey=","description":"<p>Search Accounts and see preview data.</p>\n<blockquote>\n<p>Dot denotes field is one level deep. Field name on the right side of the dot is child object of the object on the left side of the dot </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field name</th>\n<th>Field data type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ids</td>\n<td>Array[String]</td>\n<td>Account Cognism unique id</td>\n</tr>\n<tr>\n<td>names</td>\n<td>Array[String]</td>\n<td>Account names</td>\n</tr>\n<tr>\n<td>excludeNames</td>\n<td>Array[String]</td>\n<td>Account exclude names</td>\n</tr>\n<tr>\n<td>domains</td>\n<td>Array[String]</td>\n<td>Account domains</td>\n</tr>\n<tr>\n<td>excludeDomains</td>\n<td>Array[String]</td>\n<td>Account exclude domains</td>\n</tr>\n<tr>\n<td>websites</td>\n<td>Array[String]</td>\n<td>Account websites</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td>Account description (keyword)</td>\n</tr>\n<tr>\n<td>excludeDescription</td>\n<td>String</td>\n<td>Account exclude description (keyword). Exclude all accounts containing any word from excludeDescription string</td>\n</tr>\n<tr>\n<td>shortDescription</td>\n<td>String</td>\n<td>Account short description (keyword)</td>\n</tr>\n<tr>\n<td>keywords</td>\n<td>Array[String]</td>\n<td>Account keywords</td>\n</tr>\n<tr>\n<td>revenue.from</td>\n<td>Long</td>\n<td>Account revenue range from</td>\n</tr>\n<tr>\n<td>revenue.to</td>\n<td>Long</td>\n<td>Account revenue range to</td>\n</tr>\n<tr>\n<td>founded.from</td>\n<td>Int</td>\n<td>Account founded year range from</td>\n</tr>\n<tr>\n<td>founded.to</td>\n<td>Int</td>\n<td>Account founded year range to</td>\n</tr>\n<tr>\n<td>types</td>\n<td>Array[String]</td>\n<td>Account type. Allowed values: <code>Public Company</code> ,  <br /><code>Educational</code> ,  <br /><code>Educational Institution</code> ,  <br /><code>Government Agency</code> ,  <br /><code>Partnership</code> , <code>Privately Held</code> ,  <br /><code>Self-Employed</code> ,  <br /><code>non profit</code></td>\n</tr>\n<tr>\n<td>regions</td>\n<td>Array[String]</td>\n<td>Account world regions. Check allowed values <a href=\"#427e6faa-e156-4897-896a-63dc8741f90f\">Regions</a></td>\n</tr>\n<tr>\n<td>countries</td>\n<td>Array[String]</td>\n<td>Account countries. Check allowed values <a href=\"#f04b5581-a45f-4da4-af0c-78c1b20a0e16\">Countries</a></td>\n</tr>\n<tr>\n<td>excludeCountries</td>\n<td>Array[String]</td>\n<td>Account excluded countries. Check allowed values <a href=\"#f04b5581-a45f-4da4-af0c-78c1b20a0e16\">Countries</a></td>\n</tr>\n<tr>\n<td>states</td>\n<td>Array[String]</td>\n<td>Account states. Check allowed values <a href=\"#d5de3902-c542-43c6-bede-7b09aa140a09\">States</a></td>\n</tr>\n<tr>\n<td>excludeStates</td>\n<td>Array[String]</td>\n<td>Account excluded states. Check allowed values <a href=\"#d5de3902-c542-43c6-bede-7b09aa140a09\">States</a></td>\n</tr>\n<tr>\n<td>cities</td>\n<td>Array[String]</td>\n<td>Account cities.</td>\n</tr>\n<tr>\n<td>excludeCities</td>\n<td>Array[String]</td>\n<td>Account excluded cities.</td>\n</tr>\n<tr>\n<td>zip</td>\n<td>Array[String]</td>\n<td>Account zip codes.</td>\n</tr>\n<tr>\n<td>locations</td>\n<td>Array[object]</td>\n<td>Array of object containing country, city, state and zip codes. OR logic is applied between objects</td>\n</tr>\n<tr>\n<td>locations.country</td>\n<td>String</td>\n<td>Account location country</td>\n</tr>\n<tr>\n<td>locations.city</td>\n<td>String</td>\n<td>Account location city</td>\n</tr>\n<tr>\n<td>locations.state</td>\n<td>String</td>\n<td>Account location state</td>\n</tr>\n<tr>\n<td>locations.zip</td>\n<td>String</td>\n<td>Account location ZIP or postal code</td>\n</tr>\n<tr>\n<td>industries</td>\n<td>Array[String]</td>\n<td>Account industries. Check allowed values <a href=\"#2d569729-32f0-4fb3-81ca-98587c8962b5\">Industries</a></td>\n</tr>\n<tr>\n<td>excludeIndustries</td>\n<td>Array[String]</td>\n<td>Account excluded industries. Check allowed values <a href=\"#2d569729-32f0-4fb3-81ca-98587c8962b5\">Industries</a></td>\n</tr>\n<tr>\n<td>sic</td>\n<td>Array[String]</td>\n<td>Account SIC codes. Check allowed values <a href=\"#2bee7a4e-ae0d-4276-842c-d6af7c555518\">SIC Codes</a></td>\n</tr>\n<tr>\n<td>isic</td>\n<td>Array[String]</td>\n<td>Account ISIC codes. Check allowed values <a href=\"#2efda4c7-7928-4722-9636-ed5ccf8ad75c\">ISIC Codes</a></td>\n</tr>\n<tr>\n<td>naics</td>\n<td>Array[String]</td>\n<td>Account NAICS codes. Check allowed values <a href=\"#0b46ced6-73d4-4798-b1c5-15163621c287\">NAICS Codes</a></td>\n</tr>\n<tr>\n<td>headcount.from</td>\n<td>Int</td>\n<td>Account minimum headcount</td>\n</tr>\n<tr>\n<td>headcount.to</td>\n<td>Int</td>\n<td>Account maximum headcount</td>\n</tr>\n<tr>\n<td>technologies</td>\n<td>Array[String]</td>\n<td>Account technologies used. Check allowed values <a href=\"#95532229-02b1-479e-9ad9-547a1d84fd5e\">Technologies</a></td>\n</tr>\n<tr>\n<td>excludeTechnologies</td>\n<td>Array[String]</td>\n<td>Account exclude technologies used. Check allowed values <a href=\"#95532229-02b1-479e-9ad9-547a1d84fd5e\">Technologies</a></td>\n</tr>\n<tr>\n<td>lastConfirmed.from</td>\n<td>Long</td>\n<td>Account profile time updated range from. (Unix timestamp in milliseconds)</td>\n</tr>\n<tr>\n<td>lastConfirmed.to</td>\n<td>Long</td>\n<td>Account profile time updated range to. (Unix timestamp in milliseconds)</td>\n</tr>\n<tr>\n<td>hqPhoneNumbers.medium</td>\n<td>Boolean</td>\n<td>Account with medium quality HQ phone numbers</td>\n</tr>\n<tr>\n<td>hqPhoneNumbers.high</td>\n<td>Boolean</td>\n<td>Account with high quality HQ phone numbers</td>\n</tr>\n<tr>\n<td>hqPhoneNumbers.highPlus</td>\n<td>Boolean</td>\n<td>Account with highPlus quality HQ phone numbers</td>\n</tr>\n<tr>\n<td>officePhoneNumbers.medium</td>\n<td>Boolean</td>\n<td>Account with medium quality office phone numbers</td>\n</tr>\n<tr>\n<td>officePhoneNumbers.high</td>\n<td>Boolean</td>\n<td>Account with high quality office phone numbers</td>\n</tr>\n<tr>\n<td>officePhoneNumbers.highPlus</td>\n<td>Boolean</td>\n<td>Account with highPlus quality office phone numbers</td>\n</tr>\n<tr>\n<td>hiringEvent.eventDateFrom</td>\n<td>Long</td>\n<td>Account hiring event date range from (Unix timestamp in milliseconds)</td>\n</tr>\n<tr>\n<td>hiringEvent.eventDateTo</td>\n<td>Long</td>\n<td>Account hiring event date range to (Unix timestamp in milliseconds)</td>\n</tr>\n<tr>\n<td>hiringEvent.jobTitle</td>\n<td>Array[String]</td>\n<td>Account hiring event job title</td>\n</tr>\n<tr>\n<td>hiringEvent.department</td>\n<td>String</td>\n<td>Account hiring event hiring department. Allowed values: <code>legal</code>,  <br /><code>it</code>,  <br /><code>administration</code>,  <br /><code>marketing</code>,  <br /><code>sales</code>,  <br /><code>R&amp;D</code>, <code>customer</code>,  <br /><code>operations</code>,  <br /><code>finance</code></td>\n</tr>\n<tr>\n<td>hiringEvent.country</td>\n<td>Array[String]</td>\n<td>Account hiring event job place countries</td>\n</tr>\n<tr>\n<td>hiringEvent.state</td>\n<td>Array[String]</td>\n<td>Account hiring event job place states</td>\n</tr>\n<tr>\n<td>hiringEvent.city</td>\n<td>Array[String]</td>\n<td>Account hiring event job place cities</td>\n</tr>\n<tr>\n<td>fundingEvent.eventDateFrom</td>\n<td>Long</td>\n<td>Start date (timestamp) of the funding event</td>\n</tr>\n<tr>\n<td>fundingEvent.eventDateTo</td>\n<td>Long</td>\n<td>End date (timestamp) of the funding event</td>\n</tr>\n<tr>\n<td>fundingEvent.fundingType</td>\n<td>Array[String]</td>\n<td>Types of funding rounds.  <br />Allowed values:  <br /><code>venture</code>,  <br /><code>seed</code>,  <br /><code>grant</code>,  <br /><code>private_equity</code>,  <br /><code>angel</code>,  <br /><code>debt_financing</code>,  <br /><code>corporate_round</code>,  <br /><code>convertible note</code>,  <br /><code>equity_crowfunding</code></td>\n</tr>\n<tr>\n<td>fundingEvent.series</td>\n<td>Array[String]</td>\n<td>Series classifications of the funding event.  <br />Allowed values:  <br /><code>A</code>,  <br /><code>B</code>,  <br /><code>C</code>,  <br /><code>D</code>,  <br /><code>E</code>,  <br /><code>F</code>,  <br /><code>G</code>,  <br /><code>H</code>,  <br /><code>I</code>,  <br /><code>J</code>,  <br /><code>K</code></td>\n</tr>\n<tr>\n<td>ipoEvent.eventDateFrom</td>\n<td>Long</td>\n<td>Start date (timestamp) of the IPO event</td>\n</tr>\n<tr>\n<td>ipoEvent.eventDateTo</td>\n<td>Long</td>\n<td>End date (timestamp) of the IPO event</td>\n</tr>\n<tr>\n<td>acquisitionEvent.eventDateFrom</td>\n<td>Long</td>\n<td>Start date (timestamp) of the acquisition event</td>\n</tr>\n<tr>\n<td>acquisitionEvent.eventDateTo</td>\n<td>Long</td>\n<td>End date (timestamp) of the acquisition event</td>\n</tr>\n<tr>\n<td>acquisitionEvent.acquirer</td>\n<td>Array[String]</td>\n<td>Names of acquiring companies</td>\n</tr>\n<tr>\n<td>acquisitionEvent.acquiree</td>\n<td>Array[String]</td>\n<td>Names of acquired companies</td>\n</tr>\n<tr>\n<td>accountSearchOptions.match_exact_account_name</td>\n<td>Boolan</td>\n<td></td>\n</tr>\n<tr>\n<td>accountSearchOptions.match_exact_domain</td>\n<td>Boolan</td>\n<td></td>\n</tr>\n<tr>\n<td>accountSearchOptions.filter_email</td>\n<td>String</td>\n<td>Allowed values: <code>exists</code>, <code>missing</code></td>\n</tr>\n<tr>\n<td>accountSearchOptions.show_max_events</td>\n<td>Int</td>\n<td></td>\n</tr>\n<tr>\n<td>accountSearchOptions.filter_domain</td>\n<td>String</td>\n<td>Allowed values: <code>exists</code>, <code>missing</code></td>\n</tr>\n<tr>\n<td>accountSearchOptions.location_type</td>\n<td>String</td>\n<td>Allowed values: <code>ALL</code>, <code>HQ</code></td>\n</tr>\n<tr>\n<td>accountSearchOptions.events_operator</td>\n<td>String</td>\n<td>Allowed values: <code>AND</code>, <code>OR</code>  <br />Default value is <code>OR</code></td>\n</tr>\n<tr>\n<td>accountSearchOptions.sort_fields</td>\n<td>Array[String]</td>\n<td>Allowed values: <code>LastConfirmedAccountDESC</code>, <code>LastConfirmedAccountASC</code>,  <br /><code>SizeDESC</code>,  <br /><code>SizeASC</code>,  <br /><code>RevenueDESC</code>,  <br /><code>RevenueASC</code></td>\n</tr>\n<tr>\n<td>accountSearchOptions.operators.technologies</td>\n<td>String</td>\n<td>Allowed values: <code>AND</code>, <code>OR</code></td>\n</tr>\n<tr>\n<td>accountSearchOptions.operators.excludeTechnologies</td>\n<td>String</td>\n<td>Allowed values: <code>AND</code>, <code>OR</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","search","account","search"],"host":["https://app.cognism.com"],"query":[{"description":{"content":"<p>Number of results in one result set. Default 20. Max 100.</p>\n","type":"text/plain"},"key":"indexSize","value":"100"},{"key":"lastReturnedKey","value":""}],"variable":[]}},"response":[{"id":"8795b8a9-0f4a-452a-8fdc-2fccdb92d5db","name":"Search Account Advanced Entitlement","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <API Key>"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"names\": [\n        \"Cognism\"\n    ],\n    \"revenue\": {\n        \"from\": 10000000,\n        \"to\": 100000000\n    },\n    \"domains\": [\n        \"www.cognism.com\"\n    ],\n    \"industries\": [\n        \"Computer Software\"\n    ],\n    \"types\": [\n        \"Public Company\"\n    ],\n    \"technologies\": [\n        \"MongoDB\"\n    ],\n    \"regions\": [\n        \"EMEA\"\n    ],\n    \"cities\": [\n        \"London\"\n    ],\n    \"size\": {\n        \"from\": 0,\n        \"to\" : 500\n    },\n    \"accountSearchOptions\": {\n        \"match_exact_company_name\": false,\n        \"match_exact_domain\": false,\n        \"filter_domain\": \"exists\",\n        \"location_Type\": \"ALL\",\n        \"events_operator\": \"OR\",\n        \"sort_fields\": []\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://app.cognism.com/api/search/account/search?indexSize=20&lastReturnedKey=","protocol":"https","host":["app","cognism","com"],"path":["api","search","account","search"],"query":[{"key":"indexSize","value":"20","description":"Number of results in one result set. Default 20. Max 100."},{"key":"lastReturnedKey","value":"","description":"Last returned key used to fetch next set of results. If empty, first set of results is returned"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"lastReturnedKey\": \"efc6d975-8599-38ab-8cfe-e1c42ac16dc6\",\n  \"totalResults\": 1,\n  \"results\": [\n    {\n      \"id\": \"efc6d975-8599-38ab-8cfe-e1c42ac16dc6\",\n      \"name\": \"Cognism\",\n      \"hasDomain\": true,\n      \"hasIndustries\": true,\n      \"hasDescription\": true,\n      \"hasShortDescription\": true,\n      \"hasFounded\": true,\n      \"hasWebsite\": true,\n      \"hasLinkedinUrl\": true,\n      \"hasRevenue\": true,\n      \"hasDepartment\": true,\n      \"hasSic\": true,\n      \"hasIsic\": false,\n      \"hasNaics\": true,\n      \"hasSize\": true,\n      \"hasHeadcount\": true,\n      \"hasTechnologies\": true,\n      \"hasType\": true,\n      \"hasCountry\": true,\n      \"hasState\": true,\n      \"hasCity\": true,\n      \"hasZip\": true,\n      \"hasStreet\": true,\n      \"hasOfficePhoneNumbers\": false,\n      \"hasHqPhoneNumbers\": true,\n      \"hasHiringEvent\": false\n    }\n  ]\n}"},{"id":"2868ce2d-a17f-46a7-83fe-e924a3fce33e","name":"Search Account Standard Entitlement","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <API Key>"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"names\": [\n        \"Cognism\"\n    ],\n    \"revenue\": {\n        \"from\": 10000000,\n        \"to\": 100000000\n    },\n    \"domains\": [\n        \"www.cognism.com\"\n    ],\n    \"industries\": [\n        \"Computer Software\"\n    ],\n    \"types\": [\n        \"Public Company\"\n    ],\n    \"technologies\": [\n        \"MongoDB\"\n    ],\n    \"regions\": [\n        \"EMEA\"\n    ],\n    \"cities\": [\n        \"London\"\n    ],\n    \"size\": {\n        \"from\": 0,\n        \"to\" : 500\n    },\n    \"accountSearchOptions\": {\n        \"match_exact_company_name\": false,\n        \"match_exact_domain\": false,\n        \"filter_domain\": \"exists\",\n        \"location_Type\": \"ALL\",\n        \"events_operator\": \"AND\",\n        \"sort_fields\": []\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://app.cognism.com/api/search/account/search?indexSize=20&lastReturnedKey=","protocol":"https","host":["app","cognism","com"],"path":["api","search","account","search"],"query":[{"key":"indexSize","value":"20","description":"Number of results in one result set. Default 20. Max 100."},{"key":"lastReturnedKey","value":"","description":"Last returned key used to fetch next set of results. If empty, first set of results is returned"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"lastReturnedKey\": \"efc6d975-8599-38ab-8cfe-e1c42ac16dc6\",\n  \"totalResults\": 1,\n  \"results\": [\n    {\n      \"id\": \"efc6d975-8599-38ab-8cfe-e1c42ac16dc6\",\n      \"name\": \"Cognism\",\n      \"hasDomain\": true,\n      \"hasIndustries\": true,\n      \"hasDescription\": true,\n      \"hasShortDescription\": true,\n      \"hasFounded\": true,\n      \"hasWebsite\": true,\n      \"hasLinkedinUrl\": true,\n      \"hasRevenue\": true,\n      \"hasDepartment\": true,\n      \"hasSic\": true,\n      \"hasIsic\": false,\n      \"hasNaics\": true,\n      \"hasSize\": true,\n      \"hasHeadcount\": true,\n      \"hasTechnologies\": true,\n      \"hasType\": true,\n      \"hasCountry\": true,\n      \"hasState\": true,\n      \"hasCity\": true,\n      \"hasZip\": true,\n      \"hasStreet\": true\n    }\n  ]\n}"}],"_postman_id":"daadfd7c-19ce-4bb2-84f0-ba731397e1da"}],"id":"45a5a5b0-04d6-4935-8ef1-9e566f4da764","description":"<p>Use this API to search Cognism Contacts and Accounts dataset by different parameters. The search and response models are dependant on defined Entitlement.</p>\n<p>Search results contain records that match <strong>all</strong> input search criteria.</p>\n<p>Check Utility API for search filter values.</p>\n<blockquote>\n<p>Each <strong>Array</strong> field can have up to <strong>1000</strong> search terms in a single request.</p>\n</blockquote>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"a172740b-b7e6-44e4-a3e7-f303fbca6165","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"2dc2ab69-724c-4570-9145-2f00927407ca","type":"text/javascript","exec":[""]}}],"_postman_id":"45a5a5b0-04d6-4935-8ef1-9e566f4da764"},{"name":"Redeem API","item":[{"name":"Redeem Contacts by IDs","id":"cd09a2d5-0abb-4fbe-9114-a53bf2f903ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <My-Api-Key>"}],"body":{"mode":"raw","raw":"{\r\n    \"redeemIds\": [\r\n        \"YmVkOWMxZDItYjgwNi0zN2I2LTk2MzItNzVlZjk5MWE0ODdhOzFjNmY4MDg2LTAzNjktMzIyMi1hMjU3LWI1ZmQxZDVlNTc3NTsyZjdjZDBmMC01NWM2LTNlMWEtYjliNi0xZTU1MDQ3ZmFmY2Y=\"\r\n    ]\r\n}"},"url":"https://app.cognism.com/api/search/contact/redeem?mergePhonesAndLocations=","description":"<p>Redeem Contacts by request IDs. Use \"redeemId\" field from Search and Enrich API response.</p>\n<blockquote>\n<p>Check response object schema under Response schema / Contact </p>\n</blockquote>\n<h2 id=\"redeemid\">RedeemId</h2>\n<p>The <code>redeemId</code> is a unique identifier for a <strong>contact in a specific job title at a specific account</strong>. It differs from a “normal” contact ID (<code>id</code>) in that it encodes not just the person, but also their <em>current</em> job title and company.</p>\n<h4 id=\"when-redeemid-changes\">When <code>redeemId</code> changes</h4>\n<p><code>redeemId</code> changes whenever any of the components change:</p>\n<ol>\n<li><p>If the same person (same <code>id</code>) moves to a different <strong>job title</strong>, the <code>redeemId</code> will be different.</p>\n</li>\n<li><p>If the same person moves to a different <strong>account</strong>/<strong>company</strong>, <code>redeemId</code> changes.</p>\n</li>\n<li><p>If nothing changes (same person, same job title, same company), the <code>redeemId</code> remains the same.</p>\n</li>\n</ol>\n<h4 id=\"behavior-when-using-an-old-redeemid\">Behavior when using an <em>old</em> <code>redeemId</code></h4>\n<ul>\n<li><p>If you try to redeem (or use) a <code>redeemId</code> that has since become outdated (because the contact’s job title or company changed), our API will <strong>fallback</strong> to the updated redeemId.</p>\n</li>\n<li><p>In that case, you will still be able to get the contact, and we will provide the <strong>new/current</strong> <code>redeemId</code> in the response alongside the contact’s data.</p>\n</li>\n</ul>\n<h4 id=\"why-this-exists--usecases\">Why this exists / use‐cases</h4>\n<ul>\n<li><p>This allows us to uniquely and stably (within a job-title/account context) identify a contact.</p>\n</li>\n<li><p>Provides flexibility: if someone moves jobs or companies, clients using previous redeemIds won’t break; they will get redirected to the current redeemId.</p>\n</li>\n</ul>\n","urlObject":{"path":["api","search","contact","redeem"],"host":["https://app.cognism.com"],"query":[{"description":{"content":"<p>Optional parameter. Merge phones and locations. Boolean value, default false.</p>\n","type":"text/plain"},"key":"mergePhonesAndLocations","value":""}],"variable":[]}},"response":[{"id":"9f96d3fe-e765-4659-8d1c-7b482392b292","name":"Redeem Contact Advanced Entitlement","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <API Key>"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"redeemIds\": [\n        \"MzRkNjMzYjctNDFlYS0zYWM3LWEyODAtNDMxZDcxZmQ3N2ViOzhkMDlhZGJhLTczMDYtMzhlMS1iODRiLWU4NmU2OWU3MGU3YjtlZmM2ZDk3NS04NTk5LTM4YWItOGNmZS1lMWM0MmFjMTZkYzY\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://app.cognism.com/api/search/contact/redeem"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"totalResults\": 1,\n  \"results\": [\n    {\n      \"account\": {\n        \"name\": \"Cognism\",\n        \"id\": \"efc6d975-8599-38ab-8cfe-e1c42ac16dc6\",\n        \"officePhoneNumbers\": [\n          {\n            \"number\": \"+16469719264\",\n            \"numberType\": \"FIXED_LINE_OR_MOBILE\",\n            \"label\": \"COMPANY_SWITCHBOARD\",\n            \"score\": 20,\n            \"dnc\": false,\n            \"addressType\": \"office\"\n          },\n          {\n            \"number\": \"+442038580822\",\n            \"numberType\": \"FIXED_LINE\",\n            \"label\": \"COMPANY_SWITCHBOARD\",\n            \"score\": 20,\n            \"dnc\": false,\n            \"addressType\": \"office\"\n          }\n        ],\n        \"hiringEvent\": [\n          {\n            \"country\": \"Germany\",\n            \"jobTitle\": \"Campaign Managers\",\n            \"employer\": \"Cognism\",\n            \"url\": \"https://apply.workable.com/cognism-ltd/j/588BCA3EEE/\",\n            \"type\": \"CompanyHiring\",\n            \"jobDate\": \"2023-09-05\"\n          }\n        ],\n        \"headcount\": 500,\n        \"sizeTo\": 1000,\n        \"sizeFrom\": 501,\n        \"location\": [\n          {\n            \"addressType\": \"office\",\n            \"country\": \"Croatia\",\n            \"state\": \"Zadarska\",\n            \"city\": \"Zadar\",\n            \"street\": \"16 Put Murvice\"\n          },\n          {\n            \"addressType\": \"office\",\n            \"country\": \"Germany\",\n            \"state\": \"North Rhine-westphalia\",\n            \"city\": \"Köln\",\n            \"street\": \"4 Friesenplatz Friesenpl.\"\n          },\n          {\n            \"addressType\": \"office\",\n            \"country\": \"United States\",\n            \"state\": \"New York\",\n            \"city\": \"New York City\",\n            \"street\": \"43 W 23rd St\"\n          },\n          {\n            \"addressType\": \"office\",\n            \"country\": \"Republic of North Macedonia\",\n            \"state\": \"Karpoš\",\n            \"city\": \"Skopje\",\n            \"street\": \"Orce Nikolov Br.146 B\"\n          },\n          {\n            \"addressType\": \"hq\",\n            \"country\": \"United Kingdom\",\n            \"state\": \"England\",\n            \"city\": \"London\",\n            \"street\": \"92 Albert Embankment\"\n          },\n          {\n            \"addressType\": \"office\",\n            \"country\": \"United States\",\n            \"state\": \"Massachusetts\"\n          },\n          {\n            \"addressType\": \"office\",\n            \"country\": \"United Kingdom\",\n            \"state\": \"England\",\n            \"city\": \"London\",\n            \"zip\": \"se1 6dp\"\n          }\n        ],\n        \"technologies\": [\n          \"git\",\n          \"Vue.js\",\n          \"Atlassian Jira\",\n          \"Bing Ads\",\n          \"C++\",\n          \"Webpack\",\n          \"C#\",\n          \"Linkedin\",\n          \"Piwik\",\n          \"Modernizr\",\n          \"Twitter Ads\",\n          \"JavaScript\",\n          \"PHP\",\n          \"Unpkg\",\n          \"Typekit\",\n          \"Bootstrap\",\n          \"Microsoft Azure\",\n          \"Babel\",\n          \"G Suite\",\n          \"Python\",\n          \"Cowboy\",\n          \"Preact\",\n          \"Meddicc\",\n          \"cdnjs\",\n          \"Trustpilot\",\n          \"Sieben\",\n          \"WordPress\",\n          \"Google\",\n          \"Docker\",\n          \"Mailtastic\",\n          \"Salesloft\",\n          \"TypeScript\",\n          \"CookieFirst\",\n          \"RSS\",\n          \"Hotjar\",\n          \"Netsuite\",\n          \"Optimise\",\n          \"JSS\",\n          \"Google Font API\",\n          \"Linux\",\n          \"Capterra\",\n          \"AppNexus\",\n          \"Moment.js\",\n          \"AngularJS\",\n          \"Cognism\",\n          \"Facebook\",\n          \"Facebook Pixel\",\n          \"jsDelivr\",\n          \"Open Graph\",\n          \"Erlang\",\n          \"Twitter Emoji (Twemoji)\",\n          \"Intercom\",\n          \"Linkedin Sign-in\",\n          \"Reddit Ads\",\n          \"Pardot\",\n          \"Microsoft Advertising\",\n          \".NET\",\n          \"React\",\n          \"Envoy\",\n          \"Twitter\",\n          \"Exhibit\",\n          \"Microsoft Excel\",\n          \"Java\",\n          \"Apache Spark\",\n          \"CloudFlare\",\n          \"Salesforce\",\n          \"Captivate.fm\",\n          \"Google Ads\",\n          \"TrackJs\",\n          \"Ahrefs\",\n          \"Yoast SEO\",\n          \"MediaElement.js\",\n          \"Font Awesome\",\n          \"Google Tag Manager\",\n          \"RequireJS\",\n          \"YUI\",\n          \"Zendesk\",\n          \"Salesforce Marketing Cloud Account Engagement\",\n          \"Apache\",\n          \"Kubernetes\",\n          \"Hubspot\",\n          \"Google Analytics\",\n          \"jQuery\",\n          \"Google Optimize\",\n          \"Cloudflare Bot Management\",\n          \"Node.js\",\n          \"Microsoft\",\n          \"PostgreSQL\",\n          \"jQuery Modal\",\n          \"Google Maps\",\n          \"Gravatar\",\n          \"jQuery CDN\",\n          \"HSTS\",\n          \"Slick\",\n          \"Squarespace\",\n          \"Google Docs\",\n          \"HubSpot Analytics\",\n          \"Scala\",\n          \"LinkedIn Ads\",\n          \"Angular\",\n          \"Zoom\",\n          \"Github\",\n          \"Linkedin Insight Tag\",\n          \"MongoDB\",\n          \"MySQL\",\n          \"YouTube\",\n          \"NoSQL\",\n          \"HubSpot CMS Hub\",\n          \"Qualified\",\n          \"HTTP/3\",\n          \"Bitbucket\",\n          \"Lessonly\",\n          \"Akita\",\n          \"Slack\",\n          \"Office 365 Mail\",\n          \"Cadence\",\n          \"BeeFree\",\n          \"SaaS\",\n          \"GDPR\",\n          \"G2 Crowd\",\n          \"Engage\",\n          \"Deep Learning\",\n          \"Tandem\",\n          \"Eloqua\",\n          \"Websphere\",\n          \"Cloudflare DNS\",\n          \"Backlog\",\n          \"AccuRate\",\n          \"Outbound\",\n          \"Gensim\",\n          \"Yield\",\n          \"Informed\",\n          \"SQL\",\n          \"Via\",\n          \"Achievers\",\n          \"Datadog\",\n          \"Excel\",\n          \"ROOT\",\n          \"Tensorflow\",\n          \"Replicated\",\n          \"Outreach\",\n          \"Pivotal\",\n          \"Summit\",\n          \"Retargeting\",\n          \"EmbARK\",\n          \"Tableau\",\n          \"Ai\",\n          \"Acumen\",\n          \"AND CO\",\n          \"Later\",\n          \"Sales Representative\",\n          \"Adobe\",\n          \"Digital Marketing\",\n          \"AMP\",\n          \"SEO\",\n          \"ZipRecruiter\",\n          \"LiNK\",\n          \"Forefront\",\n          \"ASSET\",\n          \"LinkedIn Insights\",\n          \"GoDaddy\",\n          \"Redshift\",\n          \"Gmail\",\n          \"Microsoft Dynamics\",\n          \"Figma\",\n          \"Docusign\",\n          \"Timely\",\n          \"Integrate\",\n          \"OnSite\",\n          \"SPENT\",\n          \"Ubuntu\",\n          \"Effective\",\n          \"Artificial Intelligence\",\n          \"Boost\",\n          \"Lifecycle\",\n          \"Machine Learning\",\n          \"Streamline\",\n          \"Node\",\n          \"Matplotlib\",\n          \"HubSpot CRM\",\n          \"IBM\",\n          \"401K\",\n          \"Outlook\",\n          \"Intel\",\n          \"Clarity\",\n          \"Drift\",\n          \"REP\",\n          \"Windows 10\",\n          \"Turtl\",\n          \"Ml\",\n          \"Onboard\",\n          \"Data Science\",\n          \"Flourish\",\n          \"Pytorch\",\n          \"AWS\",\n          \"Teams\",\n          \"Insights\",\n          \"Microsoft Exchange\",\n          \"Ifrs\",\n          \"ACT\",\n          \"CPL\",\n          \"Pertinent\",\n          \"Community\",\n          \"Java EE\",\n          \"WorkFLOW\",\n          \"Form\",\n          \"Prospect\",\n          \"Sandbox\",\n          \"R\",\n          \"Symantec\",\n          \"Gauge\",\n          \"Amazon\",\n          \"Photoshop\"\n        ],\n        \"type\": \"Privately Held\",\n        \"domain\": \"cognism.com\",\n        \"industry\": [\n          \"Computer Software\"\n        ],\n        \"revenue\": 67000000,\n        \"linkedinUrl\": \"https://www.linkedin.com/company/cognism\",\n        \"website\": \"cognism.com\",\n        \"founded\": 2013,\n        \"lastConfirmed\": 1677741025000,\n        \"naics\": [\n          \"51\",\n          \"5182\"\n        ],\n        \"sic\": [\n          \"73\",\n          \"737\"\n        ],\n        \"shortDescription\": \"Cognism is a B2B sales acceleration software company that provides a marketing and sales acceleration solution.\",\n        \"description\": \"Cognism is a leader in international sales intelligence, setting a new standard for data quality and compliance, trusted by 1800+ revenue teams worldwide.\\n\\nCognism helps businesses find, engage and close their dream prospects by providing premium company and contact information, including firmographics, technographics, sales trigger events, intent data, verified business emails and phone-verified mobile numbers. \\n\\nNext level GDPR & CCPA compliance, combined with innovative technology and integrations with leading CRM and sales engagement partners, make Cognism the number one choice for businesses looking to create a predictable pipeline, find their next best business opportunity and overcome global compliance barriers.\"\n      },\n      \"jobTitle\": \"Chief Innovation Officer\",\n      \"lastName\": \"Buljat\",\n      \"firstName\": \"Stjepan\",\n      \"fullName\": \"Stjepan Buljat\",\n      \"id\": \"34d633b7-41ea-3ac7-a280-431d71fd77eb\",\n      \"privacyNotificationSent\": true,\n      \"previousAccounts\": [\n        {\n          \"name\": \"ETNA d.o.o.\",\n          \"end\": \"March 2016\",\n          \"title\": \"Product Development Manager\",\n          \"start\": \"September 2013\"\n        },\n        {\n          \"name\": \"ETNA d.o.o.\",\n          \"end\": \"September 2013\",\n          \"title\": \"R&D Team Leader\",\n          \"start\": \"December 2008\"\n        },\n        {\n          \"name\": \"SRCE\",\n          \"end\": \"October 2005\",\n          \"title\": \"Researcher\",\n          \"start\": \"February 2005\"\n        },\n        {\n          \"name\": \"Cognism\",\n          \"end\": \"September 2023\",\n          \"title\": \"Group CTO And Co-Founder\",\n          \"start\": \"March 2016\"\n        },\n        {\n          \"name\": \"ETNA d.o.o.\",\n          \"end\": \"September 2013\",\n          \"title\": \"IT Architect\",\n          \"start\": \"January 2006\"\n        }\n      ],\n      \"skills\": [\n        \"Servlets\",\n        \"Akka\",\n        \"Apache\",\n        \"Message Queue\",\n        \"Websphere\",\n        \"WebSphere MQ\",\n        \"UML\",\n        \"Cloud Computing\",\n        \"JPA\",\n        \"Java\",\n        \"Glassfish\",\n        \"Eclipse\",\n        \"Mac OS X\",\n        \"Blackberry\",\n        \"VisualAge\",\n        \"MySQL\",\n        \"Db4o\",\n        \"EJB\",\n        \"iPhone\",\n        \"MQ\",\n        \"Framework Design\",\n        \"Tomcat\",\n        \"WebSphere Application Server\\n          \\n\\n        \\n          WebSphere Application Server\",\n        \"REST\",\n        \"Groovy\",\n        \"Smalltalk\",\n        \"Django\",\n        \"Ant\",\n        \"JMS\",\n        \"Play! Framework\",\n        \"Scala\",\n        \"JBoss Application Server\",\n        \"PostgreSQL\",\n        \"JDBC\",\n        \"Swing\",\n        \"JMX\",\n        \"Maven\",\n        \"spray-io\",\n        \"pureQuery\",\n        \"DB2\",\n        \"Amazon Web Services\",\n        \"Git\",\n        \"Java Enterprise Edition\",\n        \"SQL\",\n        \"Problem Solving\",\n        \"JSF\",\n        \"J2EE\",\n        \"Transaction Processing\",\n        \"JUnit\",\n        \"Jasper Reports\"\n      ],\n      \"linkedinUrl\": \"https://www.linkedin.com/in/stjepanbuljat\",\n      \"email\": {\n        \"address\": \"stjepan.buljat@cognism.com\",\n        \"quality\": \"HIGH_PLUS\",\n        \"sha256\": \"8196f25443a02b758c7fbd4b5c0ce86c71eadda92f49709eb5e2e3515d586929\"\n      },\n      \"education\": [\n        {\n          \"start\": \"2013\",\n          \"end\": \"2013\",\n          \"school\": \"Certified ScrumMaster Training\",\n          \"degree\": \"Certified ScrumMaster, Project Management\"\n        },\n        {\n          \"start\": \"2005\",\n          \"end\": \"2005\",\n          \"school\": \"Cisco Certified Network Associate program\",\n          \"degree\": \"Computer Systems Networking and Telecommunications\"\n        },\n        {\n          \"start\": \"2000\",\n          \"end\": \"2005\",\n          \"school\": \"FER\",\n          \"degree\": \"Master of Science in Computing (mag.ing.comp), Computing\"\n        },\n        {\n          \"start\": \"2007\",\n          \"end\": \"2012\",\n          \"school\": \"Faculty of Economics & Business Zagreb\",\n          \"degree\": \"MBA, Economics\"\n        }\n      ],\n      \"country\": \"Croatia\",\n      \"jobLeaveEvent\": [\n        {\n          \"date\": \"31.08.2023\",\n          \"from\": {\n            \"name\": \"Cognism\",\n            \"title\": \"Group CTO And Co-Founder\"\n          },\n          \"to\": {\n            \"name\": \"cognism\",\n            \"title\": \"Chief Innovation Officer\"\n          }\n        }\n      ],\n      \"jobJoinEvent\": [\n        {\n          \"date\": \"01.09.2023\",\n          \"from\": {\n            \"name\": \"university of zadar\",\n            \"title\": \"Computer Science Teaching Assistant\"\n          },\n          \"to\": {\n            \"name\": \"cognism\",\n            \"title\": \"Chief Innovation Officer\"\n          }\n        }\n      ],\n      \"mobilePhoneNumbers\": [\n        {\n          \"number\": \"+123456789\",\n          \"numberType\": \"MOBILE\",\n          \"label\": \"DIRECT_DIAL\",\n          \"score\": 99,\n          \"dnc\": false\n        }\n      ],\n      \"positionStartDate\": \"September 2023\",\n      \"jobFunction\": [\n        \"BUSINESS\",\n        \"OVERSIGHT\"\n      ],\n      \"managementLevel\": \"Executive-Level\",\n      \"lastConfirmed\": 1714687499208,\n      \"redeemId\": \"MzRkNjMzYjctNDFlYS0zYWM3LWEyODAtNDMxZDcxZmQ3N2ViO2IxMjBjOTdhLTlhNTItM2E3Zi1iNzNiLTg3MGUzYjQ0M2MxOTtlZmM2ZDk3NS04NTk5LTM4YWItOGNmZS1lMWM0MmFjMTZkYzY=\"\n    }\n  ]\n}"},{"id":"97d1867e-81a9-48b3-964f-08ba098e28ee","name":"Redeem Contact Standard Entitlement","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <API Key>"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"redeemIds\": [\n        \"MzRkNjMzYjctNDFlYS0zYWM3LWEyODAtNDMxZDcxZmQ3N2ViOzhkMDlhZGJhLTczMDYtMzhlMS1iODRiLWU4NmU2OWU3MGU3YjtlZmM2ZDk3NS04NTk5LTM4YWItOGNmZS1lMWM0MmFjMTZkYzY\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://app.cognism.com/api/search/contact/redeem"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"totalResults\": 1,\n  \"results\": [\n    {\n      \"account\": {\n        \"name\": \"Cognism\",\n        \"id\": \"efc6d975-8599-38ab-8cfe-e1c42ac16dc6\",\n        \"officePhoneNumbers\": [\n          {\n            \"number\": \"+16469719264\",\n            \"numberType\": \"FIXED_LINE_OR_MOBILE\",\n            \"label\": \"COMPANY_SWITCHBOARD\",\n            \"score\": 20,\n            \"dnc\": false,\n            \"addressType\": \"office\"\n          },\n          {\n            \"number\": \"+442038580822\",\n            \"numberType\": \"FIXED_LINE\",\n            \"label\": \"COMPANY_SWITCHBOARD\",\n            \"score\": 20,\n            \"dnc\": false,\n            \"addressType\": \"office\"\n          }\n        ],\n        \"headcount\": 500,\n        \"sizeTo\": 1000,\n        \"sizeFrom\": 501,\n        \"location\": [\n          {\n            \"addressType\": \"office\",\n            \"country\": \"Croatia\",\n            \"state\": \"Zadarska\",\n            \"city\": \"Zadar\",\n            \"street\": \"16 Put Murvice\"\n          },\n          {\n            \"addressType\": \"office\",\n            \"country\": \"Germany\",\n            \"state\": \"North Rhine-westphalia\",\n            \"city\": \"Köln\",\n            \"street\": \"4 Friesenplatz Friesenpl.\"\n          },\n          {\n            \"addressType\": \"office\",\n            \"country\": \"United States\",\n            \"state\": \"New York\",\n            \"city\": \"New York City\",\n            \"street\": \"43 W 23rd St\"\n          },\n          {\n            \"addressType\": \"office\",\n            \"country\": \"Republic of North Macedonia\",\n            \"state\": \"Karpoš\",\n            \"city\": \"Skopje\",\n            \"street\": \"Orce Nikolov Br.146 B\"\n          },\n          {\n            \"addressType\": \"hq\",\n            \"country\": \"United Kingdom\",\n            \"state\": \"England\",\n            \"city\": \"London\",\n            \"street\": \"92 Albert Embankment\"\n          },\n          {\n            \"addressType\": \"office\",\n            \"country\": \"United States\",\n            \"state\": \"Massachusetts\"\n          },\n          {\n            \"addressType\": \"office\",\n            \"country\": \"United Kingdom\",\n            \"state\": \"England\",\n            \"city\": \"London\",\n            \"zip\": \"se1 6dp\"\n          }\n        ],\n        \"technologies\": [\n          \"git\",\n          \"Vue.js\",\n          \"Atlassian Jira\",\n          \"Bing Ads\",\n          \"C++\",\n          \"Webpack\",\n          \"C#\",\n          \"Linkedin\",\n          \"Piwik\",\n          \"Modernizr\",\n          \"Twitter Ads\",\n          \"JavaScript\",\n          \"PHP\",\n          \"Unpkg\",\n          \"Typekit\",\n          \"Bootstrap\",\n          \"Microsoft Azure\",\n          \"Babel\",\n          \"G Suite\",\n          \"Python\",\n          \"Cowboy\",\n          \"Preact\",\n          \"Meddicc\",\n          \"cdnjs\",\n          \"Trustpilot\",\n          \"Sieben\",\n          \"WordPress\",\n          \"Google\",\n          \"Docker\",\n          \"Mailtastic\",\n          \"Salesloft\",\n          \"TypeScript\",\n          \"CookieFirst\",\n          \"RSS\",\n          \"Hotjar\",\n          \"Netsuite\",\n          \"Optimise\",\n          \"JSS\",\n          \"Google Font API\",\n          \"Linux\",\n          \"Capterra\",\n          \"AppNexus\",\n          \"Moment.js\",\n          \"AngularJS\",\n          \"Cognism\",\n          \"Facebook\",\n          \"Facebook Pixel\",\n          \"jsDelivr\",\n          \"Open Graph\",\n          \"Erlang\",\n          \"Twitter Emoji (Twemoji)\",\n          \"Intercom\",\n          \"Linkedin Sign-in\",\n          \"Reddit Ads\",\n          \"Pardot\",\n          \"Microsoft Advertising\",\n          \".NET\",\n          \"React\",\n          \"Envoy\",\n          \"Twitter\",\n          \"Exhibit\",\n          \"Microsoft Excel\",\n          \"Java\",\n          \"Apache Spark\",\n          \"CloudFlare\",\n          \"Salesforce\",\n          \"Captivate.fm\",\n          \"Google Ads\",\n          \"TrackJs\",\n          \"Ahrefs\",\n          \"Yoast SEO\",\n          \"MediaElement.js\",\n          \"Font Awesome\",\n          \"Google Tag Manager\",\n          \"RequireJS\",\n          \"YUI\",\n          \"Zendesk\",\n          \"Salesforce Marketing Cloud Account Engagement\",\n          \"Apache\",\n          \"Kubernetes\",\n          \"Hubspot\",\n          \"Google Analytics\",\n          \"jQuery\",\n          \"Google Optimize\",\n          \"Cloudflare Bot Management\",\n          \"Node.js\",\n          \"Microsoft\",\n          \"PostgreSQL\",\n          \"jQuery Modal\",\n          \"Google Maps\",\n          \"Gravatar\",\n          \"jQuery CDN\",\n          \"HSTS\",\n          \"Slick\",\n          \"Squarespace\",\n          \"Google Docs\",\n          \"HubSpot Analytics\",\n          \"Scala\",\n          \"LinkedIn Ads\",\n          \"Angular\",\n          \"Zoom\",\n          \"Github\",\n          \"Linkedin Insight Tag\",\n          \"MongoDB\",\n          \"MySQL\",\n          \"YouTube\",\n          \"NoSQL\",\n          \"HubSpot CMS Hub\",\n          \"Qualified\",\n          \"HTTP/3\",\n          \"Bitbucket\",\n          \"Lessonly\",\n          \"Akita\",\n          \"Slack\",\n          \"Office 365 Mail\",\n          \"Cadence\",\n          \"BeeFree\",\n          \"SaaS\",\n          \"GDPR\",\n          \"G2 Crowd\",\n          \"Engage\",\n          \"Deep Learning\",\n          \"Tandem\",\n          \"Eloqua\",\n          \"Websphere\",\n          \"Cloudflare DNS\",\n          \"Backlog\",\n          \"AccuRate\",\n          \"Outbound\",\n          \"Gensim\",\n          \"Yield\",\n          \"Informed\",\n          \"SQL\",\n          \"Via\",\n          \"Achievers\",\n          \"Datadog\",\n          \"Excel\",\n          \"ROOT\",\n          \"Tensorflow\",\n          \"Replicated\",\n          \"Outreach\",\n          \"Pivotal\",\n          \"Summit\",\n          \"Retargeting\",\n          \"EmbARK\",\n          \"Tableau\",\n          \"Ai\",\n          \"Acumen\",\n          \"AND CO\",\n          \"Later\",\n          \"Sales Representative\",\n          \"Adobe\",\n          \"Digital Marketing\",\n          \"AMP\",\n          \"SEO\",\n          \"ZipRecruiter\",\n          \"LiNK\",\n          \"Forefront\",\n          \"ASSET\",\n          \"LinkedIn Insights\",\n          \"GoDaddy\",\n          \"Redshift\",\n          \"Gmail\",\n          \"Microsoft Dynamics\",\n          \"Figma\",\n          \"Docusign\",\n          \"Timely\",\n          \"Integrate\",\n          \"OnSite\",\n          \"SPENT\",\n          \"Ubuntu\",\n          \"Effective\",\n          \"Artificial Intelligence\",\n          \"Boost\",\n          \"Lifecycle\",\n          \"Machine Learning\",\n          \"Streamline\",\n          \"Node\",\n          \"Matplotlib\",\n          \"HubSpot CRM\",\n          \"IBM\",\n          \"401K\",\n          \"Outlook\",\n          \"Intel\",\n          \"Clarity\",\n          \"Drift\",\n          \"REP\",\n          \"Windows 10\",\n          \"Turtl\",\n          \"Ml\",\n          \"Onboard\",\n          \"Data Science\",\n          \"Flourish\",\n          \"Pytorch\",\n          \"AWS\",\n          \"Teams\",\n          \"Insights\",\n          \"Microsoft Exchange\",\n          \"Ifrs\",\n          \"ACT\",\n          \"CPL\",\n          \"Pertinent\",\n          \"Community\",\n          \"Java EE\",\n          \"WorkFLOW\",\n          \"Form\",\n          \"Prospect\",\n          \"Sandbox\",\n          \"R\",\n          \"Symantec\",\n          \"Gauge\",\n          \"Amazon\",\n          \"Photoshop\"\n        ],\n        \"type\": \"Privately Held\",\n        \"domain\": \"cognism.com\",\n        \"industry\": [\n          \"Computer Software\"\n        ],\n        \"revenue\": 67000000,\n        \"linkedinUrl\": \"https://www.linkedin.com/company/cognism\",\n        \"website\": \"cognism.com\",\n        \"founded\": 2013,\n        \"lastConfirmed\": 1677741025000,\n        \"naics\": [\n          \"51\",\n          \"5182\"\n        ],\n        \"sic\": [\n          \"73\",\n          \"737\"\n        ],\n        \"shortDescription\": \"Cognism is a B2B sales acceleration software company that provides a marketing and sales acceleration solution.\",\n        \"description\": \"Cognism is a leader in international sales intelligence, setting a new standard for data quality and compliance, trusted by 1800+ revenue teams worldwide.\\n\\nCognism helps businesses find, engage and close their dream prospects by providing premium company and contact information, including firmographics, technographics, sales trigger events, intent data, verified business emails and phone-verified mobile numbers. \\n\\nNext level GDPR & CCPA compliance, combined with innovative technology and integrations with leading CRM and sales engagement partners, make Cognism the number one choice for businesses looking to create a predictable pipeline, find their next best business opportunity and overcome global compliance barriers.\"\n      },\n      \"jobTitle\": \"Chief Innovation Officer\",\n      \"lastName\": \"Buljat\",\n      \"firstName\": \"Stjepan\",\n      \"fullName\": \"Stjepan Buljat\",\n      \"id\": \"34d633b7-41ea-3ac7-a280-431d71fd77eb\",\n      \"privacyNotificationSent\": true,\n      \"previousAccounts\": [\n        {\n          \"name\": \"ETNA d.o.o.\",\n          \"end\": \"March 2016\",\n          \"title\": \"Product Development Manager\",\n          \"start\": \"September 2013\"\n        },\n        {\n          \"name\": \"ETNA d.o.o.\",\n          \"end\": \"September 2013\",\n          \"title\": \"R&D Team Leader\",\n          \"start\": \"December 2008\"\n        },\n        {\n          \"name\": \"SRCE\",\n          \"end\": \"October 2005\",\n          \"title\": \"Researcher\",\n          \"start\": \"February 2005\"\n        },\n        {\n          \"name\": \"Cognism\",\n          \"end\": \"September 2023\",\n          \"title\": \"Group CTO And Co-Founder\",\n          \"start\": \"March 2016\"\n        },\n        {\n          \"name\": \"ETNA d.o.o.\",\n          \"end\": \"September 2013\",\n          \"title\": \"IT Architect\",\n          \"start\": \"January 2006\"\n        }\n      ],\n      \"skills\": [\n        \"Servlets\",\n        \"Akka\",\n        \"Apache\",\n        \"Message Queue\",\n        \"Websphere\",\n        \"WebSphere MQ\",\n        \"UML\",\n        \"Cloud Computing\",\n        \"JPA\",\n        \"Java\",\n        \"Glassfish\",\n        \"Eclipse\",\n        \"Mac OS X\",\n        \"Blackberry\",\n        \"VisualAge\",\n        \"MySQL\",\n        \"Db4o\",\n        \"EJB\",\n        \"iPhone\",\n        \"MQ\",\n        \"Framework Design\",\n        \"Tomcat\",\n        \"WebSphere Application Server\\n          \\n\\n        \\n          WebSphere Application Server\",\n        \"REST\",\n        \"Groovy\",\n        \"Smalltalk\",\n        \"Django\",\n        \"Ant\",\n        \"JMS\",\n        \"Play! Framework\",\n        \"Scala\",\n        \"JBoss Application Server\",\n        \"PostgreSQL\",\n        \"JDBC\",\n        \"Swing\",\n        \"JMX\",\n        \"Maven\",\n        \"spray-io\",\n        \"pureQuery\",\n        \"DB2\",\n        \"Amazon Web Services\",\n        \"Git\",\n        \"Java Enterprise Edition\",\n        \"SQL\",\n        \"Problem Solving\",\n        \"JSF\",\n        \"J2EE\",\n        \"Transaction Processing\",\n        \"JUnit\",\n        \"Jasper Reports\"\n      ],\n      \"linkedinUrl\": \"https://www.linkedin.com/in/stjepanbuljat\",\n      \"email\": {\n        \"address\": \"stjepan.buljat@cognism.com\",\n        \"quality\": \"HIGH_PLUS\",\n        \"sha256\": \"8196f25443a02b758c7fbd4b5c0ce86c71eadda92f49709eb5e2e3515d586929\"\n      },\n      \"education\": [\n        {\n          \"start\": \"2013\",\n          \"end\": \"2013\",\n          \"school\": \"Certified ScrumMaster Training\",\n          \"degree\": \"Certified ScrumMaster, Project Management\"\n        },\n        {\n          \"start\": \"2005\",\n          \"end\": \"2005\",\n          \"school\": \"Cisco Certified Network Associate program\",\n          \"degree\": \"Computer Systems Networking and Telecommunications\"\n        },\n        {\n          \"start\": \"2000\",\n          \"end\": \"2005\",\n          \"school\": \"FER\",\n          \"degree\": \"Master of Science in Computing (mag.ing.comp), Computing\"\n        },\n        {\n          \"start\": \"2007\",\n          \"end\": \"2012\",\n          \"school\": \"Faculty of Economics & Business Zagreb\",\n          \"degree\": \"MBA, Economics\"\n        }\n      ],\n      \"country\": \"Croatia\",\n      \"jobLeaveEvent\": [\n        {\n          \"date\": \"31.08.2023\",\n          \"from\": {\n            \"name\": \"Cognism\",\n            \"title\": \"Group CTO And Co-Founder\"\n          },\n          \"to\": {\n            \"name\": \"cognism\",\n            \"title\": \"Chief Innovation Officer\"\n          }\n        }\n      ],\n      \"jobJoinEvent\": [\n        {\n          \"date\": \"01.09.2023\",\n          \"from\": {\n            \"name\": \"university of zadar\",\n            \"title\": \"Computer Science Teaching Assistant\"\n          },\n          \"to\": {\n            \"name\": \"cognism\",\n            \"title\": \"Chief Innovation Officer\"\n          }\n        }\n      ],\n      \"positionStartDate\": \"September 2023\",\n      \"jobFunction\": [\n        \"BUSINESS\",\n        \"OVERSIGHT\"\n      ],\n      \"managementLevel\": \"Executive-Level\",\n      \"lastConfirmed\": 1714687499208,\n      \"redeemId\": \"MzRkNjMzYjctNDFlYS0zYWM3LWEyODAtNDMxZDcxZmQ3N2ViO2IxMjBjOTdhLTlhNTItM2E3Zi1iNzNiLTg3MGUzYjQ0M2MxOTtlZmM2ZDk3NS04NTk5LTM4YWItOGNmZS1lMWM0MmFjMTZkYzY=\"\n    }\n  ]\n}"}],"_postman_id":"cd09a2d5-0abb-4fbe-9114-a53bf2f903ec"},{"name":"Redeem Accounts by IDs","id":"22eae856-2840-45f0-88d4-1359eb6cb35b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"redeemIds\": [\r\n        \"e53fa4ed-cc99-385c-b431-38fd6a6a88e0\",\r\n        \"efc6d975-8599-38ab-8cfe-e1c42ac16dc6\"\r\n    ]\r\n}"},"url":"https://app.cognism.com/api/search/account/redeem?mergePhonesAndLocations=","description":"<p>Redeem Accounts by request IDs. Use \"id\" field from Search and Enrich API response.</p>\n<blockquote>\n<p>Check response object schema under Response schema / Account</p>\n</blockquote>\n","urlObject":{"path":["api","search","account","redeem"],"host":["https://app.cognism.com"],"query":[{"description":{"content":"<p>Optional parameter. Merge phones and locations. Boolean value, default false.</p>\n","type":"text/plain"},"key":"mergePhonesAndLocations","value":""}],"variable":[]}},"response":[{"id":"9385e042-a0bd-4e85-9a37-62388d59620b","name":"Redeem Advanced Entitlement","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <My-Api-Key>"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"redeemIds\": [\n        \"e53fa4ed-cc99-385c-b431-38fd6a6a88e0\",\n        \"efc6d975-8599-38ab-8cfe-e1c42ac16dc6\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://app.cognism.com/api/search/account/redeem"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 2,\n    \"result\": [\n        {\n            \"id\": \"e53fa4ed-cc99-385c-b431-38fd6a6a88e0\",\n            \"name\": \"Mailtastic\",\n            \"domain\": \"mailtastic.com\",\n            \"industries\": [\n                \"Marketing and Advertising\"\n            ],\n            \"description\": \"Welcome to Mailtastic! Do you know that your clients, contacts and potential customers see your email signature more than they actually see your website or social media accounts? The marketing potential of your email signature is therefore a huge asset that you can use to create diverse marketing campaigns which you share daily as you and your team send your email messages. This is a great marketing goldmine! Mailtastic allows you to centrally manage your employees' email signatures and extend them with marketing banners to transform daily email traffic into a powerful marketing channel. The success of each campaign can be evaluated in the dashboard by means of clicks, impressions and click-rate. At Mailtastic we help you explore the full marketing potential of your email signature to further diversify your marketing efforts and reach new potential customers. Get in touch and we will be happy to show you how it all works!\",\n            \"shortDescription\": \"Mailtastic is a solution that allows you to show and analyze marketing messages in your company's e-mail signatures.\",\n            \"founded\": 2015,\n            \"website\": \"www.mailtastic.com\",\n            \"linkedinUrl\": \"https://www.linkedin.com/company/mailtastic\",\n            \"revenue\": 60953000,\n            \"sizeFrom\": 11,\n            \"sizeTo\": 50,\n            \"technologies\": [\n                \"GDPR\",\n                \"Mailtastic\",\n                \"SaaS\",\n                \"Ai\",\n                \"MailChimp\",\n                \"Outbound\",\n                \"ZipRecruiter\",\n                \"THINK\",\n                \"AngularJS\",\n                \"MySQL\",\n                \"Salesforce\",\n                \"Microsoft Dynamics\",\n                \"Cognism\",\n                \"Hubspot\",\n                \"Google Apps for Business\",\n                \"Linkedin\",\n                \"Google\",\n                \"Microsoft Office\",\n                \"Consensus\",\n                \"SEO\",\n                \"Microsoft\",\n                \"Prospect\"\n            ],\n            \"type\": \"Privately Held\",\n            \"officePhoneNumbers\": [\n                {\n                    \"number\": \"+4961316338658\",\n                    \"score\": 20,\n                    \"dnc\": false,\n                    \"label\": \"office\"\n                }\n            ],\n            \"locations\": [\n                {\n                    \"type\": \"hq\",\n                    \"country\": \"Germany\",\n                    \"state\": \"Rheinland-pfalz\",\n                    \"city\": \"Mainz\",\n                    \"zip\": \"55116\",\n                    \"street\": \"Große Bleiche 10, 55116 Mainz, Germany\"\n                }\n            ]\n        },\n        {\n            \"id\": \"efc6d975-8599-38ab-8cfe-e1c42ac16dc6\",\n            \"name\": \"Cognism\",\n            \"domain\": \"cognism.com\",\n            \"industries\": [\n                \"Computer Software\"\n            ],\n            \"description\": \"Cognism is the smart all-in-one marketing and sales acceleration solution. We provide organizations a GDPR compliant way to prospect leads and enrich data. \",\n            \"shortDescription\": \"Cognism is a B2B sales acceleration software company that provides a marketing and sales acceleration solution.\",\n            \"founded\": 2015,\n            \"website\": \"cognism.com\",\n            \"linkedinUrl\": \"https://www.linkedin.com/company/cognism/\",\n            \"revenue\": 17000000,\n            \"naics\": [\n                \"5182\",\n                \"51\"\n            ],\n            \"sic\": [\n                \"737\",\n                \"73\"\n            ],\n            \"sizeFrom\": 201,\n            \"sizeTo\": 500,\n            \"tech\": [\n                \"Replicated\",\n                \"Salesforce\",\n                \"Salesloft\",\n                \"Lifecycle\",\n                \"Docker\",\n                \"GDPR\",\n                \"Summit\",\n                \"Matplotlib\",\n                \"AccuRate\",\n                \"MongoDB\",\n                \"Cadence\",\n                \"Digital Marketing\",\n                \"Artificial Intelligence\",\n                \"Intercom\",\n                \"Java EE\",\n                \"Yield\",\n                \"Node\",\n                \"Retargeting\",\n                \"Github\",\n                \"Cognism\",\n                \"Boost\",\n                \"Ai\",\n                \"Onboard\",\n                \"LiNK\",\n                \"IBM\",\n                \"Sandbox\",\n                \"PostgreSQL\",\n                \"Office 365 Mail\",\n                \"Deep Learning\",\n                \"Websphere\",\n                \"Gensim\",\n                \"Achievers\",\n                \"Hubspot\",\n                \"Node.js\"\n            ],\n            \"type\": \"Public Company\",\n            \"officePhoneNumbers\": [\n                {\n                    \"number\": \"+16469719264\",\n                    \"score\": 20,\n                    \"dnc\": false,\n                    \"label\": \"COMPANY_SWITCHBOARD\"\n                }\n            ],\n            \"hqPhoneNumbers\": [\n                {\n                    \"number\": \"442038580822\",\n                    \"score\": 20,\n                    \"dnc\": false,\n                    \"label\": \"COMPANY_SWITCHBOARD\"\n                }\n            ],\n            \"location\": [\n                {\n                    \"type\": \"hq\",\n                    \"country\": \"United Kingdom\",\n                    \"state\": \"England\",\n                    \"city\": \"London\",\n                    \"street\": \"92 Albert Embankment\"\n                },\n                {\n                    \"type\": \"office\",\n                    \"country\": \"United States\",\n                    \"state\": \"New York\",\n                    \"city\": \"New York\",\n                    \"zip\": \"10010\",\n                    \"street\": \"43 W 23rd St, New York, NY 10010, USA\"\n                }\n            ],\n            \"companyHiring\": [\n                {\n                    \"employer\": \"Cognism\",\n                    \"jobTitle\": \"Product-Led Growth Marketing Manager\",\n                    \"department\": \"Marketing\",\n                    \"jobDate\": \"2021-09-14\",\n                    \"country\": \"United Kingdom\",\n                    \"state\": \"pariatur amet\",\n                    \"city\": \"do anim\",\n                    \"url\": \"https://independentjobs.independent.co.uk/job/27635997/product-led-growth-marketing-manager/\",\n                    \"internship\": false,\n                    \"workFromHome\": false\n                }\n            ]\n        }\n    ]\n}"},{"id":"19260caf-309b-4380-9a1a-a895757fffa1","name":"Redeem Standard Entitlement","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <My-Api-Key>"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"redeemIds\": [\n        \"e53fa4ed-cc99-385c-b431-38fd6a6a88e0\",\n        \"efc6d975-8599-38ab-8cfe-e1c42ac16dc6\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://app.cognism.com/api/search/account/redeem"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 2,\n    \"result\": [\n        {\n            \"id\": \"e53fa4ed-cc99-385c-b431-38fd6a6a88e0\",\n            \"name\": \"Mailtastic\",\n            \"domain\": \"mailtastic.com\",\n            \"industries\": [\n                \"Marketing and Advertising\"\n            ],\n            \"description\": \"Welcome to Mailtastic! Do you know that your clients, contacts and potential customers see your email signature more than they actually see your website or social media accounts? The marketing potential of your email signature is therefore a huge asset that you can use to create diverse marketing campaigns which you share daily as you and your team send your email messages. This is a great marketing goldmine! Mailtastic allows you to centrally manage your employees' email signatures and extend them with marketing banners to transform daily email traffic into a powerful marketing channel. The success of each campaign can be evaluated in the dashboard by means of clicks, impressions and click-rate. At Mailtastic we help you explore the full marketing potential of your email signature to further diversify your marketing efforts and reach new potential customers. Get in touch and we will be happy to show you how it all works!\",\n            \"shortDescription\": \"Mailtastic is a solution that allows you to show and analyze marketing messages in your company's e-mail signatures.\",\n            \"founded\": 2015,\n            \"website\": \"www.mailtastic.com\",\n            \"linkedinUrl\": \"https://www.linkedin.com/company/mailtastic\",\n            \"revenue\": 60953000,\n            \"sizeFrom\": 11,\n            \"sizeTo\": 50,\n            \"technologies\": [\n                \"GDPR\",\n                \"Mailtastic\",\n                \"SaaS\",\n                \"Ai\",\n                \"MailChimp\",\n                \"Outbound\",\n                \"ZipRecruiter\",\n                \"THINK\",\n                \"AngularJS\",\n                \"MySQL\",\n                \"Salesforce\",\n                \"Microsoft Dynamics\",\n                \"Cognism\",\n                \"Hubspot\",\n                \"Google Apps for Business\",\n                \"Linkedin\",\n                \"Google\",\n                \"Microsoft Office\",\n                \"Consensus\",\n                \"SEO\",\n                \"Microsoft\",\n                \"Prospect\"\n            ],\n            \"type\": \"Privately Held\",\n            \"location\": [\n                {\n                    \"type\": \"hq\",\n                    \"country\": \"Germany\",\n                    \"state\": \"Rheinland-pfalz\",\n                    \"city\": \"Mainz\",\n                    \"zip\": \"55116\",\n                    \"street\": \"Große Bleiche 10, 55116 Mainz, Germany\"\n                }\n            ]\n        },\n        {\n            \"id\": \"efc6d975-8599-38ab-8cfe-e1c42ac16dc6\",\n            \"name\": \"Cognism\",\n            \"domain\": \"cognism.com\",\n            \"industries\": [\n                \"Computer Software\"\n            ],\n            \"description\": \"Cognism is the smart all-in-one marketing and sales acceleration solution. We provide organizations a GDPR compliant way to prospect leads and enrich data. \",\n            \"shortDescription\": \"Cognism is a B2B sales acceleration software company that provides a marketing and sales acceleration solution.\",\n            \"founded\": 2015,\n            \"website\": \"cognism.com\",\n            \"linkedinUrl\": \"https://www.linkedin.com/company/cognism/\",\n            \"revenue\": 17000000,\n            \"naics\": [\n                \"5182\",\n                \"51\"\n            ],\n            \"sic\": [\n                \"737\",\n                \"73\"\n            ],\n            \"sizeFrom\": 201,\n            \"sizeTo\": 500,\n            \"tech\": [\n                \"Replicated\",\n                \"Salesforce\",\n                \"Salesloft\",\n                \"Lifecycle\",\n                \"Docker\",\n                \"GDPR\",\n                \"Summit\",\n                \"Matplotlib\",\n                \"AccuRate\",\n                \"MongoDB\",\n                \"Cadence\",\n                \"Digital Marketing\",\n                \"Artificial Intelligence\",\n                \"Intercom\",\n                \"Java EE\",\n                \"Yield\",\n                \"Node\",\n                \"Retargeting\",\n                \"Github\",\n                \"Cognism\",\n                \"Boost\",\n                \"Ai\",\n                \"Onboard\",\n                \"LiNK\",\n                \"IBM\",\n                \"Sandbox\",\n                \"PostgreSQL\",\n                \"Office 365 Mail\",\n                \"Deep Learning\",\n                \"Websphere\",\n                \"Gensim\",\n                \"Achievers\",\n                \"Hubspot\",\n                \"Node.js\"\n            ],\n            \"type\": \"Public Company\",\n            \"locations\": [\n                {\n                    \"type\": \"hq\",\n                    \"country\": \"United Kingdom\",\n                    \"state\": \"England\",\n                    \"city\": \"London\",\n                    \"street\": \"92 Albert Embankment\"\n                },\n                {\n                    \"type\": \"office\",\n                    \"country\": \"United States\",\n                    \"state\": \"New York\",\n                    \"city\": \"New York\",\n                    \"zip\": \"10010\",\n                    \"street\": \"43 W 23rd St, New York, NY 10010, USA\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"22eae856-2840-45f0-88d4-1359eb6cb35b"}],"id":"92839ed2-f9ce-4ba7-a03b-c7451ea4420f","description":"<p>Redeem Contacts or Accounts by providing IDs. Response includes data as per subscribed Entitlement.<br />Provide one or up to 20 IDs inside list of redeemIDs.</p>\n<blockquote>\n<p>Usual workflow is using Search API and finding IDs of your interest before redeeming</p>\n</blockquote>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"6377b9d9-3566-4729-899f-b3491ade4bbe","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"07668ad1-9bb7-4fb4-b99b-d4b0f15ae548","type":"text/javascript","exec":[""]}}],"_postman_id":"92839ed2-f9ce-4ba7-a03b-c7451ea4420f"},{"name":"Enrich API","item":[{"name":"Enrich Contact","event":[{"listen":"test","script":{"id":"f5dcdcf7-6711-4aa5-b58e-94f9e6323663","exec":["var idsToDelete = ['98135',\r","    '98128',\r","    '98125',\r","    '98123',\r","    '98119',\r","    '77343',\r","    '79419',\r","    '164323',\r","    '100397',\r","    '99268',\r","    '92947',\r","    '122137',\r","    '216840',\r","    '200275',\r","    '197281',\r","    '196960',\r","    '163639',\r","    '163625',\r","    '99981'];\r","\r","// Function to delete an ID\r","function deleteID(id) {\r","    return new Promise((resolve, reject) => {\r","        pm.sendRequest({\r","            url: 'https://app.cognism.com/api/prospector/campaigns/' + id,\r","            method: 'DELETE',\r","            header: {\r","                'Content-Type': 'application/json',\r","                'X-Session-Token': \"\"\r","            }\r","        }, (err, res) => {\r","            if (err) {\r","                reject(err);\r","            } else {\r","                resolve(res);\r","            }\r","        });\r","    });\r","}\r","\r","// Loop through each ID and call deleteID function\r","async function deleteIDs() {\r","    for (let id of idsToDelete) {\r","        try {\r","            let response = await deleteID(id);\r","            console.log(\"Deleted ID:\", id);\r","            console.log(\"Response:\", response);\r","        } catch (error) {\r","            console.error(\"Error deleting ID:\", id, error);\r","        }\r","    }\r","}\r","\r","// Call the function to start deleting IDs\r","deleteIDs();"],"type":"text/javascript","packages":{}}}],"id":"157c4853-80fc-4f50-a538-8d92bda2cc57","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"email\": \"stjepan.buljat@cognism.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.cognism.com/api/search/contact/enrich","description":"<p>Enrich your contacts by providing input parameters. Response info depends on your Entitlement.<br />In order to match contact accurately, use one of search criteria</p>\n<p>* Unique identifiers such as <strong>email/sha256</strong> or <strong>linkedinUrl</strong>.<br />* Combine <strong>firstName, lastName</strong> and <strong>jobTitle</strong> with <strong>accountName</strong> or with account unique identifiers <strong>accountWebsite</strong><br />* Provide as many input parameters as you can and we will return back best possible match</p>\n<p>Default minMatchScore is <strong>30</strong> and data will not be returned if profile is scored less. In general, everything scored &lt;27 indicates low quality match. However, minMatchScore can be defined as search parameter.</p>\n<blockquote>\n<p>phoneNumber enrichment searches all types of phone numbers </p>\n</blockquote>\n<h4 id=\"input-fields\">Input fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Input field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>firstName</td>\n<td>Contact first name</td>\n<td>String</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>Contact last name</td>\n<td>String</td>\n</tr>\n<tr>\n<td>linkedinUrl</td>\n<td>Contact LinkedIn URL</td>\n<td>String</td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td>Contact Phone Number (searched any type of number)</td>\n<td>String</td>\n</tr>\n<tr>\n<td>jobTitle</td>\n<td>Contact job title</td>\n<td>String</td>\n</tr>\n<tr>\n<td>email</td>\n<td>Contact email</td>\n<td>String</td>\n</tr>\n<tr>\n<td>sha256</td>\n<td>Contact email hash</td>\n<td>String (hexadecimal)</td>\n</tr>\n<tr>\n<td>accountWebsite</td>\n<td>Account website</td>\n<td>String</td>\n</tr>\n<tr>\n<td>accountName</td>\n<td>Account name</td>\n<td>String</td>\n</tr>\n<tr>\n<td>anchorFields</td>\n<td>Fields that must match</td>\n<td>Array[String]</td>\n</tr>\n<tr>\n<td>minMatchScore</td>\n<td>Minimum Match Score to return matched Account</td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p>Approximate score based on matched parameters (🟢Match 🟡Partial match 🔴No match)</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Input</strong></th>\n<th><strong>Approximate matchScore</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>firstName 🟢  <br />lastName 🟢  <br />phoneNumber 🟢</td>\n<td>43-53</td>\n</tr>\n<tr>\n<td>firstName 🟢  <br />lastName 🟢  <br />phoneNumber 🟢  <br />accountName 🟡</td>\n<td>51-60</td>\n</tr>\n<tr>\n<td>firstName 🟢  <br />lastName 🟢  <br />accountName 🟢</td>\n<td>33-50</td>\n</tr>\n<tr>\n<td>firstName 🟢  <br />lastName 🟢  <br />accountName 🟡</td>\n<td>30-40</td>\n</tr>\n<tr>\n<td>firstName 🟢  <br />lastName 🟢  <br />accountWebsite 🟢</td>\n<td>33-50</td>\n</tr>\n<tr>\n<td>email 🟢</td>\n<td>47-49</td>\n</tr>\n<tr>\n<td>firstName 🟢  <br />lastName 🟢  <br />accountName 🟡  <br />jobTitle 🟡</td>\n<td>36-55</td>\n</tr>\n<tr>\n<td>firstName 🟢  <br />lastName 🟢  <br />email 🟢</td>\n<td>66-72</td>\n</tr>\n<tr>\n<td>firstName 🟢  <br />lastName 🟢  <br />email 🟢  <br />phoneNumber 🟢</td>\n<td>87-94</td>\n</tr>\n<tr>\n<td>firstName 🟢  <br />lastName 🟢  <br />jobTitle 🟢</td>\n<td>30-50</td>\n</tr>\n<tr>\n<td>firstName 🟢  <br />lastName 🟢  <br />jobTitle 🟡</td>\n<td>27-41</td>\n</tr>\n<tr>\n<td>accountName 🟢  <br />jobTitle 🟢</td>\n<td>28-40</td>\n</tr>\n<tr>\n<td>accountName 🟢  <br />jobTitle 🟡</td>\n<td>23-37</td>\n</tr>\n<tr>\n<td>jobTitle 🟢  <br />accountName 🟡</td>\n<td>21-36</td>\n</tr>\n<tr>\n<td>accountName 🟡  <br />jobTitle 🟡</td>\n<td>12-33</td>\n</tr>\n<tr>\n<td>firstName 🟢  <br />lastName 🟢</td>\n<td>Error:  <br />Not enough input parameters to enrich</td>\n</tr>\n</tbody>\n</table>\n</div><h5 id=\"anchor-fields\">Anchor Fields</h5>\n<p>Anchor Fields allow you to specify input fields that must match. By default, firstName and lastName are Anchor Fields for Contact enrich. If any of Anchor Fields do not match, other parameters matching is irrelevant and no data is returned.</p>\n<blockquote>\n<p>Anchor Fields do not affect score </p>\n</blockquote>\n<p>In the example below, no data is returned since accountName did not match. If accountName was not defined inside anchorFields, expected matchScore would be as per table above (30-50).</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"firstName\": \"Stjepan\",🟢\n  \"lastName\": \"Buljat\",🟢\n  \"jobTitle\": \"CTO and Co-Founder\",🟢\n  \"accountName\": \"Kaspr\",🔴\n  \"anchorFields\": [\n    \"accountName\"\n    ]\n}\n\n</code></pre>\n","urlObject":{"path":["api","search","contact","enrich"],"host":["https://app.cognism.com"],"query":[],"variable":[]}},"response":[{"id":"93a70a12-954e-440b-9315-dd5a1512d4f7","name":"Enrich Contact by email Advanced Entitlement","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"email\": \"stjepan.buljat@cognism.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.cognism.com/api/search/contact/enrich"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n  \"matchScore\": 42,\n  \"results\": [\n    {\n        \"id\": \"7351d07c-9118-403b-a7c1-d6510cc0c378\",\n        \"fullName\": \"Stjepan Buljat\",\n        \"firstName\": \"Stjepan\",\n        \"lastName\": \"Buljat\",\n        \"jobTitle\": \"CTO\",\n        \"hasManagementLevel\": true,\n        \"hasSeniority\": true,\n        \"hasJobFunction\": true,\n        \"hasPositionStartDate\": true,\n        \"hasEmail\": true,\n        \"hasMobilePhoneNumbers\": false,\n        \"hasDirectPhoneNumbers\": false,\n        \"hasJobJoinEvent\": false,\n        \"hasJobLeaveEvent\": false,\n        \"hasLocationMoveEvent\": false,\n        \"hasCountry\": true,\n        \"hasState\": false,\n        \"hasCity\": true,\n        \"hasZip\": false,\n        \"hasStreet\": true,\n        \"hasLinkedinUrl\": true,\n        \"hasEducation\": true,\n        \"hasPreviousAccounts\": true,\n        \"hasSkills\": true,\n        \"hasLastConfirmed\": true,\n        \"redeemId\": \"MzRkNjMzYjctNDFlYS0zYWM3LWEyODAtNDMxZDcxZmQ3N2ViOzhkMDlhZGJhLTczMDYtMzhlMS1iODRiLWU4NmU2OWU3MGU3YjtlZmM2ZDk3NS04NTk5LTM4YWItOGNmZS1lMWM0MmFjMTZkYzY\",\n        \"account\": {\n            \"id\": \"efc6d975-8599-38ab-8cfe-e1c42ac16dc6\",\n            \"name\": \"Cognism\",\n            \"hasDomain\": true,\n            \"hasIndustries\": true,\n            \"hasDescription\": true,\n            \"hasShortDescription\": true,\n            \"hasFounded\": true,\n            \"hasWebsite\": true,\n            \"hasLinkedinUrl\": true,\n            \"hasRevenue\": true,\n            \"hasSic\": true,\n            \"hasIsic\": false,\n            \"hasNaics\": true,\n            \"hasHeadcount\": true,\n            \"hasSize\": true,\n            \"hasTechnologies\": true,\n            \"hasType\": true,\n            \"hasLocation\": true,\n            \"hasOfficePhoneNumbers\": false,\n            \"hasHqPhoneNumbers\": true,\n            \"hasHiringEvent\": true\n        }\n    }\n  ]\n}"},{"id":"02ffbb33-c0c4-4ad3-bb4b-2264c62ffac6","name":"Enrich Contact by email Standard Entitlement","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"email\": \"stjepan.buljat@cognism.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.cognism.com/api/search/contact/enrich"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n  \"matchScore\": 42,\n  \"results\": [\n    {\n        \"id\": \"7351d07c-9118-403b-a7c1-d6510cc0c378\",\n        \"fullName\": \"Stjepan Buljat\",\n        \"firstName\": \"Stjepan\",\n        \"lastName\": \"Buljat\",\n        \"jobTitle\": \"CTO\",\n        \"hasManagementLevel\": true,\n        \"hasSeniority\": true,\n        \"hasJobFunction\": true,\n        \"hasPositionStartDate\": true,\n        \"hasEmail\": true,\n        \"hasCountry\": true,\n        \"hasState\": false,\n        \"hasCity\": true,\n        \"hasZip\": false,\n        \"hasStreet\": true,\n        \"hasLinkedinUrl\": true,\n        \"hasEducation\": true,\n        \"hasPreviousAccounts\": true,\n        \"hasSkills\": true,\n        \"hasLastConfirmed\": true,\n        \"redeemId\": \"MzRkNjMzYjctNDFlYS0zYWM3LWEyODAtNDMxZDcxZmQ3N2ViOzhkMDlhZGJhLTczMDYtMzhlMS1iODRiLWU4NmU2OWU3MGU3YjtlZmM2ZDk3NS04NTk5LTM4YWItOGNmZS1lMWM0MmFjMTZkYzY\",\n        \"account\": {\n            \"id\": \"efc6d975-8599-38ab-8cfe-e1c42ac16dc6\",\n            \"name\": \"Cognism\",\n            \"hasDomain\": true,\n            \"hasIndustries\": true,\n            \"hasDescription\": true,\n            \"hasShortDescription\": true,\n            \"hasFounded\": true,\n            \"hasWebsite\": true,\n            \"hasLinkedinUrl\": true,\n            \"hasRevenue\": true,\n            \"hasSic\": true,\n            \"hasIsic\": false,\n            \"hasNaics\": true,\n            \"hasHeadcount\": true,\n            \"hasSize\": true,\n            \"hasTechnologies\": true,\n            \"hasType\": true,\n            \"hasLocation\": true\n        }\n    }\n  ]\n}"},{"id":"78073f21-e652-4490-9dde-931541591c86","name":"Enrich Contact by linkedinUrl Advanced Entitlement","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"linkedinUrl\": \"https://www.linkedin.com/in/sbuljat\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.cognism.com/api/search/contact/enrich"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n  \"matchScore\": 45,\n  \"results\": [\n    {\n        \"id\": \"7351d07c-9118-403b-a7c1-d6510cc0c378\",\n        \"fullName\": \"Stjepan Buljat\",\n        \"firstName\": \"Stjepan\",\n        \"lastName\": \"Buljat\",\n        \"jobTitle\": \"CTO\",\n        \"hasManagementLevel\": true,\n        \"hasSeniority\": true,\n        \"hasJobFunction\": true,\n        \"hasPositionStartDate\": true,\n        \"hasEmail\": true,\n        \"hasMobilePhoneNumbers\": false,\n        \"hasDirectPhoneNumbers\": false,\n        \"hasJobJoinEvent\": false,\n        \"hasJobLeaveEvent\": false,\n        \"hasLocationMoveEvent\": false,\n        \"hasCountry\": true,\n        \"hasState\": false,\n        \"hasCity\": true,\n        \"hasZip\": false,\n        \"hasStreet\": true,\n        \"hasLinkedinUrl\": true,\n        \"hasEducation\": true,\n        \"hasPreviousAccounts\": true,\n        \"hasSkills\": true,\n        \"hasLastConfirmed\": true,\n        \"redeemId\": \"MzRkNjMzYjctNDFlYS0zYWM3LWEyODAtNDMxZDcxZmQ3N2ViOzhkMDlhZGJhLTczMDYtMzhlMS1iODRiLWU4NmU2OWU3MGU3YjtlZmM2ZDk3NS04NTk5LTM4YWItOGNmZS1lMWM0MmFjMTZkYzY\",\n        \"account\": {\n            \"id\": \"efc6d975-8599-38ab-8cfe-e1c42ac16dc6\",\n            \"name\": \"Cognism\",\n            \"hasDomain\": true,\n            \"hasIndustries\": true,\n            \"hasDescription\": true,\n            \"hasShortDescription\": true,\n            \"hasFounded\": true,\n            \"hasWebsite\": true,\n            \"hasLinkedinUrl\": true,\n            \"hasRevenue\": true,\n            \"hasSic\": true,\n            \"hasIsic\": false,\n            \"hasNaics\": true,\n            \"hasSize\": true,\n            \"hasTechnologies\": true,\n            \"hasType\": true,\n            \"hasLocation\": true,\n            \"hasOfficePhoneNumbers\": false,\n            \"hasHqPhoneNumbers\": true,\n            \"hasHiringEvent\": true\n        }\n    }\n  ]\n}"},{"id":"86c07dd2-4888-4dbe-a4c9-ea9ec8557540","name":"Enrich Contact by linkedinUrl Standard Entitlement","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"linkedinUrl\": \"https://www.linkedin.com/in/sbuljat\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.cognism.com/api/search/contact/enrich"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n  \"matchScore\": 45,\n  \"results\": [\n    {\n        \"id\": \"7351d07c-9118-403b-a7c1-d6510cc0c378\",\n        \"fullName\": \"Stjepan Buljat\",\n        \"firstName\": \"Stjepan\",\n        \"lastName\": \"Buljat\",\n        \"jobTitle\": \"CTO\",\n        \"hasManagementLevel\": true,\n        \"hasSeniority\": true,\n        \"hasJobFunction\": true,\n        \"hasPositionStartDate\": true,\n        \"hasEmail\": true,\n        \"hasCountry\": true,\n        \"hasState\": false,\n        \"hasCity\": true,\n        \"hasZip\": false,\n        \"hasStreet\": true,\n        \"hasLinkedinUrl\": true,\n        \"hasEducation\": true,\n        \"hasPreviousAccounts\": true,\n        \"hasSkills\": true,\n        \"hasLastConfirmed\": true,\n        \"redeemId\": \"MzRkNjMzYjctNDFlYS0zYWM3LWEyODAtNDMxZDcxZmQ3N2ViOzhkMDlhZGJhLTczMDYtMzhlMS1iODRiLWU4NmU2OWU3MGU3YjtlZmM2ZDk3NS04NTk5LTM4YWItOGNmZS1lMWM0MmFjMTZkYzY\",\n        \"account\": {\n            \"id\": \"efc6d975-8599-38ab-8cfe-e1c42ac16dc6\",\n            \"name\": \"Cognism\",\n            \"hasDomain\": true,\n            \"hasIndustries\": true,\n            \"hasDescription\": true,\n            \"hasShortDescription\": true,\n            \"hasFounded\": true,\n            \"hasWebsite\": true,\n            \"hasLinkedinUrl\": true,\n            \"hasRevenue\": true,\n            \"hasSic\": true,\n            \"hasIsic\": false,\n            \"hasNaics\": true,\n            \"hasSize\": true,\n            \"hasTechnologies\": true,\n            \"hasType\": true,\n            \"hasLocation\": true\n        }\n    }\n  ]\n}"},{"id":"b76dcc9f-da54-48d1-adfb-d1b7b07c3752","name":"Enrich Contact by firstName, lastName and website Advanced Entitlement","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"firstName\": \"Stjepan\",\r\n    \"lastName\": \"Buljat\",\r\n    \"accountWebsite\": \"cognism.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.cognism.com/api/search/contact/enrich"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"matchScore\": 38,\r\n  \"results\": [\r\n    {\r\n        \"id\": \"7351d07c-9118-403b-a7c1-d6510cc0c378\",\r\n        \"fullName\": \"Stjepan Buljat\",\r\n        \"firstName\": \"Stjepan\",\r\n        \"lastName\": \"Buljat\",\r\n        \"jobTitle\": \"CTO\",\r\n        \"hasManagementLevel\": true,\r\n        \"hasSeniority\": true,\r\n        \"hasJobFunction\": true,\r\n        \"hasPositionStartDate\": true,\r\n        \"hasEmail\": true,\r\n        \"hasMobilePhoneNumbers\": false,\r\n        \"hasDirectPhoneNumbers\": false,\r\n        \"hasJobJoinEvent\": false,\r\n        \"hasJobLeaveEvent\": false,\r\n        \"hasLocationMoveEvent\": false,\r\n        \"hasCountry\": true,\r\n        \"hasState\": false,\r\n        \"hasCity\": true,\r\n        \"hasZip\": false,\r\n        \"hasStreet\": true,\r\n        \"hasLinkedinUrl\": true,\r\n        \"hasEducation\": true,\r\n        \"hasPreviousAccounts\": true,\r\n        \"hasSkills\": true,\r\n        \"hasLastConfirmed\": true,\r\n        \"redeemId\": \"MzRkNjMzYjctNDFlYS0zYWM3LWEyODAtNDMxZDcxZmQ3N2ViOzhkMDlhZGJhLTczMDYtMzhlMS1iODRiLWU4NmU2OWU3MGU3YjtlZmM2ZDk3NS04NTk5LTM4YWItOGNmZS1lMWM0MmFjMTZkYzY\",\r\n        \"account\": {\r\n            \"id\": \"efc6d975-8599-38ab-8cfe-e1c42ac16dc6\",\r\n            \"name\": \"Cognism\",\r\n            \"hasDomain\": true,\r\n            \"hasIndustries\": true,\r\n            \"hasDescription\": true,\r\n            \"hasShortDescription\": true,\r\n            \"hasFounded\": true,\r\n            \"hasWebsite\": true,\r\n            \"hasLinkedinUrl\": true,\r\n            \"hasRevenue\": true,\r\n            \"hasSic\": true,\r\n            \"hasIsic\": false,\r\n            \"hasNaics\": true,\r\n            \"hasHeadcount\": true,\r\n            \"hasSize\": true,\r\n            \"hasTechnologies\": true,\r\n            \"hasType\": true,\r\n            \"hasLocation\": true,\r\n            \"hasOfficePhoneNumbers\": false,\r\n            \"hasHqPhoneNumbers\": true,\r\n            \"hasHiringEvent\": true\r\n        }\r\n    }\r\n  ]\r\n}"},{"id":"1f7604d0-415b-496a-b76b-e84b6c9b773a","name":"Enrich Contact by firstName, lastName and website Standard Entitlement","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"firstName\": \"Stjepan\",\r\n    \"lastName\": \"Buljat\",\r\n    \"accountWebsite\": \"cognism.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.cognism.com/api/search/contact/enrich"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"matchScore\": 38,\r\n  \"results\": [\r\n    {\r\n        \"id\": \"7351d07c-9118-403b-a7c1-d6510cc0c378\",\r\n        \"fullName\": \"Stjepan Buljat\",\r\n        \"firstName\": \"Stjepan\",\r\n        \"lastName\": \"Buljat\",\r\n        \"jobTitle\": \"CTO\",\r\n        \"hasManagementLevel\": true,\r\n        \"hasSeniority\": true,\r\n        \"hasJobFunction\": true,\r\n        \"hasPositionStartDate\": true,\r\n        \"hasEmail\": true,\r\n        \"hasCountry\": true,\r\n        \"hasState\": false,\r\n        \"hasCity\": true,\r\n        \"hasZip\": false,\r\n        \"hasStreet\": true,\r\n        \"hasLinkedinUrl\": true,\r\n        \"hasEducation\": true,\r\n        \"hasPreviousAccounts\": true,\r\n        \"hasSkills\": true,\r\n        \"hasLastConfirmed\": true,\r\n        \"redeemId\": \"MzRkNjMzYjctNDFlYS0zYWM3LWEyODAtNDMxZDcxZmQ3N2ViOzhkMDlhZGJhLTczMDYtMzhlMS1iODRiLWU4NmU2OWU3MGU3YjtlZmM2ZDk3NS04NTk5LTM4YWItOGNmZS1lMWM0MmFjMTZkYzY\",\r\n        \"account\": {\r\n            \"id\": \"efc6d975-8599-38ab-8cfe-e1c42ac16dc6\",\r\n            \"name\": \"Cognism\",\r\n            \"hasDomain\": true,\r\n            \"hasIndustries\": true,\r\n            \"hasDescription\": true,\r\n            \"hasShortDescription\": true,\r\n            \"hasFounded\": true,\r\n            \"hasWebsite\": true,\r\n            \"hasLinkedinUrl\": true,\r\n            \"hasRevenue\": true,\r\n            \"hasSic\": true,\r\n            \"hasIsic\": false,\r\n            \"hasNaics\": true,\r\n            \"hasHeadcount\": true,\r\n            \"hasSize\": true,\r\n            \"hasTechnologies\": true,\r\n            \"hasType\": true,\r\n            \"hasLocation\": true\r\n        }\r\n    }\r\n  ]\r\n}"},{"id":"6f919e9d-f8c2-4a95-b75c-541dd1c98015","name":"Enrich Contact by phoneNumber and firstName Advanced Entitlement","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"firstName\" : \"Stjepan\",\r\n    \"phoneNumber\": \"+385981234567\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.cognism.com/api/search/contact/enrich"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"matchScore\": 32,\r\n  \"results\": [\r\n    {\r\n        \"id\": \"7351d07c-9118-403b-a7c1-d6510cc0c378\",\r\n        \"fullName\": \"Stjepan Buljat\",\r\n        \"firstName\": \"Stjepan\",\r\n        \"lastName\": \"Buljat\",\r\n        \"jobTitle\": \"CTO\",\r\n        \"hasManagementLevel\": true,\r\n        \"hasSeniority\": true,\r\n        \"hasJobFunction\": true,\r\n        \"hasPositionStartDate\": true,\r\n        \"hasEmail\": true,\r\n        \"hasMobilePhoneNumbers\": false,\r\n        \"hasDirectPhoneNumbers\": false,\r\n        \"hasJobJoinEvent\": false,\r\n        \"hasJobLeaveEvent\": false,\r\n        \"hasLocationMoveEvent\": false,\r\n        \"hasCountry\": true,\r\n        \"hasState\": false,\r\n        \"hasCity\": true,\r\n        \"hasZip\": false,\r\n        \"hasStreet\": true,\r\n        \"hasLinkedinUrl\": true,\r\n        \"hasEducation\": true,\r\n        \"hasPreviousAccounts\": true,\r\n        \"hasSkills\": true,\r\n        \"hasLastConfirmed\": true,\r\n        \"redeemId\": \"MzRkNjMzYjctNDFlYS0zYWM3LWEyODAtNDMxZDcxZmQ3N2ViOzhkMDlhZGJhLTczMDYtMzhlMS1iODRiLWU4NmU2OWU3MGU3YjtlZmM2ZDk3NS04NTk5LTM4YWItOGNmZS1lMWM0MmFjMTZkYzY\",\r\n        \"account\": {\r\n            \"id\": \"efc6d975-8599-38ab-8cfe-e1c42ac16dc6\",\r\n            \"name\": \"Cognism\",\r\n            \"hasDomain\": true,\r\n            \"hasIndustries\": true,\r\n            \"hasDescription\": true,\r\n            \"hasShortDescription\": true,\r\n            \"hasFounded\": true,\r\n            \"hasWebsite\": true,\r\n            \"hasLinkedinUrl\": true,\r\n            \"hasRevenue\": true,\r\n            \"hasSic\": true,\r\n            \"hasIsic\": false,\r\n            \"hasNaics\": true,\r\n            \"hasHeadcount\": true,\r\n            \"hasSize\": true,\r\n            \"hasTechnologies\": true,\r\n            \"hasType\": true,\r\n            \"hasLocation\": true,\r\n            \"hasOfficePhoneNumbers\": false,\r\n            \"hasHqPhoneNumbers\": true,\r\n            \"hasHiringEvent\": true\r\n        }\r\n    }\r\n  ]\r\n}"},{"id":"5e841e1d-3a69-49be-ac92-73986bd6ef20","name":"Enrich Contact by phoneNumber and firstName Standard Entitlement","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"firstName\" : \"Stjepan\",\r\n    \"phoneNumber\": \"+385981234567\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.cognism.com/api/search/contact/enrich"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"matchScore\": 32,\r\n  \"results\": [\r\n    {\r\n        \"id\": \"7351d07c-9118-403b-a7c1-d6510cc0c378\",\r\n        \"fullName\": \"Stjepan Buljat\",\r\n        \"firstName\": \"Stjepan\",\r\n        \"lastName\": \"Buljat\",\r\n        \"jobTitle\": \"CTO\",\r\n        \"hasManagementLevel\": true,\r\n        \"hasSeniority\": true,\r\n        \"hasJobFunction\": true,\r\n        \"hasPositionStartDate\": true,\r\n        \"hasEmail\": true,\r\n        \"hasCountry\": true,\r\n        \"hasState\": false,\r\n        \"hasCity\": true,\r\n        \"hasZip\": false,\r\n        \"hasStreet\": true,\r\n        \"hasLinkedinUrl\": true,\r\n        \"hasEducation\": true,\r\n        \"hasPreviousAccounts\": true,\r\n        \"hasSkills\": true,\r\n        \"hasLastConfirmed\": true,\r\n        \"redeemId\": \"MzRkNjMzYjctNDFlYS0zYWM3LWEyODAtNDMxZDcxZmQ3N2ViOzhkMDlhZGJhLTczMDYtMzhlMS1iODRiLWU4NmU2OWU3MGU3YjtlZmM2ZDk3NS04NTk5LTM4YWItOGNmZS1lMWM0MmFjMTZkYzY\",\r\n        \"account\": {\r\n            \"id\": \"efc6d975-8599-38ab-8cfe-e1c42ac16dc6\",\r\n            \"name\": \"Cognism\",\r\n            \"hasDomain\": true,\r\n            \"hasIndustries\": true,\r\n            \"hasDescription\": true,\r\n            \"hasShortDescription\": true,\r\n            \"hasFounded\": true,\r\n            \"hasWebsite\": true,\r\n            \"hasLinkedinUrl\": true,\r\n            \"hasRevenue\": true,\r\n            \"hasSic\": true,\r\n            \"hasIsic\": false,\r\n            \"hasNaics\": true,\r\n            \"hasHeadcount\": true,\r\n            \"hasSize\": true,\r\n            \"hasTechnologies\": true,\r\n            \"hasType\": true,\r\n            \"hasLocation\": true\r\n        }\r\n    }\r\n  ]\r\n}"},{"id":"8c595d0e-39e5-4d7d-93fe-00243dfb733d","name":"Enrich Contact by various Advanced Entitlement","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"firstName\": \"Stjepan\",\r\n    \"lastName\": \"Buljat\",\r\n    \"jobTitle\": \"CTO\",\r\n    \"email\": \"stjepan.buljat@cognism.com\",\r\n    \"phoneNumber\": \"+385981234567\",\r\n    \"linkedinUrl\": \"https://www.linkedin.com/in/sbuljat\",\r\n    \"accountWebsite\": \"cognism.com\",\r\n    \"accountName\": \"Cognism\"\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"https://app.cognism.com/api/search/contact/enrich"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"matchScore\": 151,\r\n  \"results\": [\r\n    {\r\n        \"id\": \"7351d07c-9118-403b-a7c1-d6510cc0c378\",\r\n        \"fullName\": \"Stjepan Buljat\",\r\n        \"firstName\": \"Stjepan\",\r\n        \"lastName\": \"Buljat\",\r\n        \"jobTitle\": \"CTO\",\r\n        \"hasManagementLevel\": true,\r\n        \"hasSeniority\": true,\r\n        \"hasJobFunction\": true,\r\n        \"hasPositionStartDate\": true,\r\n        \"hasEmail\": true,\r\n        \"hasMobilePhoneNumbers\": false,\r\n        \"hasDirectPhoneNumbers\": false,\r\n        \"hasJobJoinEvent\": false,\r\n        \"hasJobLeaveEvent\": false,\r\n        \"hasLocationMoveEvent\": false,\r\n        \"hasCountry\": true,\r\n        \"hasState\": false,\r\n        \"hasCity\": true,\r\n        \"hasZip\": false,\r\n        \"hasStreet\": true,\r\n        \"hasLinkedinUrl\": true,\r\n        \"hasEducation\": true,\r\n        \"hasPreviousAccounts\": true,\r\n        \"hasSkills\": true,\r\n        \"hasLastConfirmed\": true,\r\n        \"redeemId\": \"MzRkNjMzYjctNDFlYS0zYWM3LWEyODAtNDMxZDcxZmQ3N2ViOzhkMDlhZGJhLTczMDYtMzhlMS1iODRiLWU4NmU2OWU3MGU3YjtlZmM2ZDk3NS04NTk5LTM4YWItOGNmZS1lMWM0MmFjMTZkYzY\",\r\n        \"account\": {\r\n            \"id\": \"efc6d975-8599-38ab-8cfe-e1c42ac16dc6\",\r\n            \"name\": \"Cognism\",\r\n            \"hasDomain\": true,\r\n            \"hasIndustries\": true,\r\n            \"hasDescription\": true,\r\n            \"hasShortDescription\": true,\r\n            \"hasFounded\": true,\r\n            \"hasWebsite\": true,\r\n            \"hasLinkedinUrl\": true,\r\n            \"hasRevenue\": true,\r\n            \"hasSic\": true,\r\n            \"hasIsic\": false,\r\n            \"hasNaics\": true,\r\n            \"hasHeadcount\": true,\r\n            \"hasSize\": true,\r\n            \"hasTechnologies\": true,\r\n            \"hasType\": true,\r\n            \"hasLocation\": true,\r\n            \"hasOfficePhoneNumbers\": false,\r\n            \"hasHqPhoneNumbers\": true,\r\n            \"hasHiringEvent\": true\r\n        }\r\n    }\r\n  ]\r\n}"},{"id":"26a6541f-0aed-43eb-8b54-530d1c4a08ec","name":"Enrich Contact by various Standard Entitlement","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"firstName\": \"Stjepan\",\r\n    \"lastName\": \"Buljat\",\r\n    \"jobTitle\": \"CTO\",\r\n    \"email\": \"stjepan.buljat@cognism.com\",\r\n    \"phoneNumber\": \"+385981234567\",\r\n    \"linkedinUrl\": \"https://www.linkedin.com/in/sbuljat\",\r\n    \"accountWebsite\": \"cognism.com\",\r\n    \"accountName\": \"Cognism\"\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"https://app.cognism.com/api/search/contact/enrich"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"matchScore\": 151,\r\n  \"results\": [\r\n    {\r\n        \"id\": \"7351d07c-9118-403b-a7c1-d6510cc0c378\",\r\n        \"fullName\": \"Stjepan Buljat\",\r\n        \"firstName\": \"Stjepan\",\r\n        \"lastName\": \"Buljat\",\r\n        \"jobTitle\": \"CTO\",\r\n        \"hasManagementLevel\": true,\r\n        \"hasSeniority\": true,\r\n        \"hasJobFunction\": true,\r\n        \"hasPositionStartDate\": true,\r\n        \"hasEmail\": true,\r\n        \"hasCountry\": true,\r\n        \"hasState\": false,\r\n        \"hasCity\": true,\r\n        \"hasZip\": false,\r\n        \"hasStreet\": true,\r\n        \"hasLinkedinUrl\": true,\r\n        \"hasEducation\": true,\r\n        \"hasPreviousAccounts\": true,\r\n        \"hasSkills\": true,\r\n        \"hasLastConfirmed\": true,\r\n        \"redeemId\": \"MzRkNjMzYjctNDFlYS0zYWM3LWEyODAtNDMxZDcxZmQ3N2ViOzhkMDlhZGJhLTczMDYtMzhlMS1iODRiLWU4NmU2OWU3MGU3YjtlZmM2ZDk3NS04NTk5LTM4YWItOGNmZS1lMWM0MmFjMTZkYzY\",\r\n        \"account\": {\r\n            \"id\": \"efc6d975-8599-38ab-8cfe-e1c42ac16dc6\",\r\n            \"name\": \"Cognism\",\r\n            \"hasDomain\": true,\r\n            \"hasIndustries\": true,\r\n            \"hasDescription\": true,\r\n            \"hasShortDescription\": true,\r\n            \"hasFounded\": true,\r\n            \"hasWebsite\": true,\r\n            \"hasLinkedinUrl\": true,\r\n            \"hasRevenue\": true,\r\n            \"hasSic\": true,\r\n            \"hasIsic\": false,\r\n            \"hasNaics\": true,\r\n            \"hasHeadcount\": true,\r\n            \"hasSize\": true,\r\n            \"hasTechnologies\": true,\r\n            \"hasType\": true,\r\n            \"hasLocation\": true\r\n        }\r\n    }\r\n  ]\r\n}"}],"_postman_id":"157c4853-80fc-4f50-a538-8d92bda2cc57"},{"name":"Enrich Account","id":"fd0486ff-1d47-4e8f-84d7-cb15a8c8a9b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"website\": \"www.cognism.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.cognism.com/api/search/account/enrich","description":"<p>Enrich your accounts by providing input parameters. Response info depends on your Entitlement.<br />In order to match account accurately, use one of search criteria</p>\n<ul>\n<li>Unique identifiers such as <strong>website, domain</strong> or <strong>linkedinUrl</strong>.</li>\n<li>Provide as many input parameters as you can and we will return back best possible match</li>\n</ul>\n<p>Default minMatchScore is <strong>40</strong> and data will not be returned if profile is scored less. In general, everything scored &lt;35 indicates low quality match. However, minMatchScore can be defined as search parameter.</p>\n<h4 id=\"input-fields\">Input fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Input field</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>linkedinUrl</td>\n<td>Account LinkedIn URL</td>\n<td>String</td>\n</tr>\n<tr>\n<td>domain</td>\n<td>Account domain</td>\n<td>String</td>\n</tr>\n<tr>\n<td>website</td>\n<td>Account website</td>\n<td>String</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Account name</td>\n<td>String</td>\n</tr>\n<tr>\n<td>country</td>\n<td>Account country</td>\n<td>String</td>\n</tr>\n<tr>\n<td>city</td>\n<td>Account city</td>\n<td>String</td>\n</tr>\n<tr>\n<td>anchorFields</td>\n<td>Fields that must match</td>\n<td>Array[String]</td>\n</tr>\n<tr>\n<td>minMatchScore</td>\n<td>Minimum Match Score to return matched Account</td>\n<td>Int</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p>Approximate score based on matched parameters (🟢Match 🟡Partial match 🔴No match)</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Input</strong></th>\n<th><strong>Approximate matchScore</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name 🟢</td>\n<td>28-83</td>\n</tr>\n<tr>\n<td>name 🟡</td>\n<td>25-56</td>\n</tr>\n<tr>\n<td>domain 🟢</td>\n<td>48-53</td>\n</tr>\n<tr>\n<td>website 🟢</td>\n<td>48-53</td>\n</tr>\n<tr>\n<td>linkedinUrl 🟢</td>\n<td>50-53</td>\n</tr>\n<tr>\n<td>name 🟢  <br />country (HQ) 🟢</td>\n<td>35-90</td>\n</tr>\n<tr>\n<td>name 🟢  <br />country (Office) 🟢</td>\n<td>31-86</td>\n</tr>\n<tr>\n<td>name 🟢  <br />city (HQ) 🟢</td>\n<td>35-90</td>\n</tr>\n<tr>\n<td>name 🟢  <br />city (Office) 🟢</td>\n<td>31-86</td>\n</tr>\n</tbody>\n</table>\n</div><h5 id=\"anchor-fields\">Anchor Fields</h5>\n<p>Account Enrich supports Anchor Fields, same rules apply as on Contact Enrich.</p>\n","urlObject":{"path":["api","search","account","enrich"],"host":["https://app.cognism.com"],"query":[],"variable":[]}},"response":[{"id":"4326fe20-a145-46fc-9e9f-9112608bc4e6","name":"Enrich Account by website Advanced Entitlement","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"website\": \"www.cognism.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.cognism.com/api/search/account/enrich"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n  \"matchScore\": 46,\n  \"results\": [\n    {\n        \"id\": \"efc6d975-8599-38ab-8cfe-e1c42ac16dc6\",\n        \"name\": \"Cognism\",\n        \"hasDomain\": true,\n        \"hasIndustries\": true,\n        \"hasDescription\": true,\n        \"hasShortDescription\": true,\n        \"hasFounded\": true,\n        \"hasWebsite\": true,\n        \"hasLinkedinUrl\": true,\n        \"hasRevenue\": true,\n        \"hasSic\": true,\n        \"hasIsic\": false,\n        \"hasNaics\": true,\n        \"hasHeadcount\": true,\n        \"hasSize\": true,\n        \"hasTechnologies\": true,\n        \"hasType\": true,\n        \"hasLocation\": true,\n        \"hasOfficePhoneNumbers\": false,\n        \"hasHqPhoneNumbers\": true,\n        \"hasHiringEvent\": false\n    }\n  ]\n}"},{"id":"a93b83f5-77a2-4e97-a36a-67614365feae","name":"Enrich Account by website Standard Entitlement","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"website\": \"www.cognism.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.cognism.com/api/search/account/enrich"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n  \"matchScore\": 46,\n  \"results\": [\n    {\n        \"id\": \"efc6d975-8599-38ab-8cfe-e1c42ac16dc6\",\n        \"name\": \"Cognism\",\n        \"hasDomain\": true,\n        \"hasIndustries\": true,\n        \"hasDescription\": true,\n        \"hasShortDescription\": true,\n        \"hasFounded\": true,\n        \"hasWebsite\": true,\n        \"hasLinkedinUrl\": true,\n        \"hasRevenue\": true,\n        \"hasSic\": true,\n        \"hasIsic\": false,\n        \"hasNaics\": true,\n        \"hasHeadcount\": true,\n        \"hasSize\": true,\n        \"hasTechnologies\": true,\n        \"hasType\": true,\n        \"hasLocation\": true\n    }\n  ]\n}"},{"id":"2495a133-f14e-442b-a15f-09a291555c9c","name":"Enrich Account by domain Advanced Entitlement","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"domain\": \"cognism.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.cognism.com/api/search/account/enrich"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n  \"matchScore\": 45,\n  \"results\": [\n    {\n        \"id\": \"efc6d975-8599-38ab-8cfe-e1c42ac16dc6\",\n        \"name\": \"Cognism\",\n        \"hasDomain\": true,\n        \"hasIndustries\": true,\n        \"hasDescription\": true,\n        \"hasShortDescription\": true,\n        \"hasFounded\": true,\n        \"hasWebsite\": true,\n        \"hasLinkedinUrl\": true,\n        \"hasRevenue\": true,\n        \"hasSic\": true,\n        \"hasIsic\": false,\n        \"hasNaics\": true,\n        \"hasHeadcount\": true,\n        \"hasSize\": true,\n        \"hasTechnologies\": true,\n        \"hasType\": true,\n        \"hasLocation\": true,\n        \"hasOfficePhoneNumbers\": false,\n        \"hasHqPhoneNumbers\": true,\n        \"hasHiringEvent\": false\n    }\n  ]\n}"},{"id":"ae99c73b-6938-442c-8d15-4e812562a57b","name":"Enrich Account by domain Standard Entitlement","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"domain\": \"cognism.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.cognism.com/api/search/account/enrich"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n  \"matchScore\": 45,\n  \"results\": [\n    {\n        \"id\": \"efc6d975-8599-38ab-8cfe-e1c42ac16dc6\",\n        \"name\": \"Cognism\",\n        \"hasDomain\": true,\n        \"hasIndustries\": true,\n        \"hasDescription\": true,\n        \"hasShortDescription\": true,\n        \"hasFounded\": true,\n        \"hasWebsite\": true,\n        \"hasLinkedinUrl\": true,\n        \"hasRevenue\": true,\n        \"hasSic\": true,\n        \"hasIsic\": false,\n        \"hasNaics\": true,\n        \"hasHeadcount\": true,\n        \"hasSize\": true,\n        \"hasTechnologies\": true,\n        \"hasType\": true,\n        \"hasLocation\": true\n    }\n  ]\n}"},{"id":"c130d757-8826-48e4-8fef-1dc60f69418c","name":"Enrich Account by linkedinUrl Advanced Entitlement","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"linkedinUrl\": \"https://www.linkedin.com/company/cognism/\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.cognism.com/api/search/account/enrich"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"matchScore\": 46,\r\n  \"results\": [\r\n    {\r\n        \"id\": \"efc6d975-8599-38ab-8cfe-e1c42ac16dc6\",\r\n        \"name\": \"Cognism\",\r\n        \"hasDomain\": true,\r\n        \"hasIndustries\": true,\r\n        \"hasDescription\": true,\r\n        \"hasShortDescription\": true,\r\n        \"hasFounded\": true,\r\n        \"hasWebsite\": true,\r\n        \"hasLinkedinUrl\": true,\r\n        \"hasRevenue\": true,\r\n        \"hasSic\": true,\r\n        \"hasIsic\": false,\r\n        \"hasNaics\": true,\r\n        \"hasHeadcount\": true,\r\n        \"hasSize\": true,\r\n        \"hasTechnologies\": true,\r\n        \"hasType\": true,\r\n        \"hasLocation\": true,\r\n        \"hasOfficePhoneNumbers\": false,\r\n        \"hasHqPhoneNumbers\": true,\r\n        \"hasHiringEvent\": false\r\n    }\r\n  ]\r\n}"},{"id":"836089d7-0ccf-41ff-8062-24a34cb4afcf","name":"Enrich Account by linkedinUrl Standard Entitlement","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"linkedinUrl\": \"https://www.linkedin.com/company/cognism/\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.cognism.com/api/search/account/enrich"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"matchScore\": 46,\r\n  \"results\": [\r\n    {\r\n        \"id\": \"efc6d975-8599-38ab-8cfe-e1c42ac16dc6\",\r\n        \"name\": \"Cognism\",\r\n        \"hasDomain\": true,\r\n        \"hasIndustries\": true,\r\n        \"hasDescription\": true,\r\n        \"hasShortDescription\": true,\r\n        \"hasFounded\": true,\r\n        \"hasWebsite\": true,\r\n        \"hasLinkedinUrl\": true,\r\n        \"hasRevenue\": true,\r\n        \"hasSic\": true,\r\n        \"hasIsic\": false,\r\n        \"hasNaics\": true,\r\n        \"hasHeadcount\": true,\r\n        \"hasSize\": true,\r\n        \"hasTechnologies\": true,\r\n        \"hasType\": true,\r\n        \"hasLocation\": true\r\n    }\r\n  ]\r\n}"},{"id":"f6960b21-4cf6-4767-b64f-96ef90c1b592","name":"Enrich Accountby various Advanced Entitlement","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Cognism\",\r\n    \"country\": \"United Kingdom\",\r\n    \"city\": \"London\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.cognism.com/api/search/account/enrich"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"matchScore\": 48,\r\n  \"results\": [\r\n    {\r\n        \"id\": \"efc6d975-8599-38ab-8cfe-e1c42ac16dc6\",\r\n        \"name\": \"Cognism\",\r\n        \"hasDomain\": true,\r\n        \"hasIndustries\": true,\r\n        \"hasDescription\": true,\r\n        \"hasShortDescription\": true,\r\n        \"hasFounded\": true,\r\n        \"hasWebsite\": true,\r\n        \"hasLinkedinUrl\": true,\r\n        \"hasRevenue\": true,\r\n        \"hasSic\": true,\r\n        \"hasIsic\": false,\r\n        \"hasNaics\": true,\r\n        \"hasHeadcount\": true,\r\n        \"hasSize\": true,\r\n        \"hasTechnologies\": true,\r\n        \"hasType\": true,\r\n        \"hasLocation\": true,\r\n        \"hasOfficePhoneNumbers\": false,\r\n        \"hasHqPhoneNumbers\": true,\r\n        \"hasHiringEvent\": false\r\n    }\r\n  ]\r\n}"},{"id":"7d3aff48-8f51-4ad7-9cf6-4e277bb563ca","name":"Enrich Account by various Standard Entitlement","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Cognism\",\r\n    \"country\": \"United Kingdom\",\r\n    \"city\": \"London\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.cognism.com/api/search/account/enrich"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"matchScore\": 48,\r\n  \"results\": [\r\n    {\r\n        \"id\": \"efc6d975-8599-38ab-8cfe-e1c42ac16dc6\",\r\n        \"name\": \"Cognism\",\r\n        \"hasDomain\": true,\r\n        \"hasIndustries\": true,\r\n        \"hasDescription\": true,\r\n        \"hasShortDescription\": true,\r\n        \"hasFounded\": true,\r\n        \"hasWebsite\": true,\r\n        \"hasLinkedinUrl\": true,\r\n        \"hasRevenue\": true,\r\n        \"hasSic\": true,\r\n        \"hasIsic\": false,\r\n        \"hasNaics\": true,\r\n        \"hasHeadcount\": true,\r\n        \"hasSize\": true,\r\n        \"hasTechnologies\": true,\r\n        \"hasType\": true,\r\n        \"hasLocation\": true\r\n    }\r\n  ]\r\n}"}],"_postman_id":"fd0486ff-1d47-4e8f-84d7-cb15a8c8a9b4"}],"id":"2a33be06-e764-4ce9-9093-4be52d2c8e70","description":"<p>Use Enrich API to enrich and update you data. Enrich supports finding single best match according to provided parameters.</p>\n<blockquote>\n<p>MatchScore value depends on how well and how many input parameters have matched returned contact/account profile.</p>\n</blockquote>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"e9b68f1b-8c8f-4a52-9dc4-78b3303ca9cd","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"1165bdd3-9533-4f87-9035-c093535c2a06","type":"text/javascript","exec":[""]}}],"_postman_id":"2a33be06-e764-4ce9-9093-4be52d2c8e70"},{"name":"Entitlement API","item":[{"name":"Get Contact Entitlement Details","id":"0c23e257-7198-4fd1-83f7-46632d3120a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"url":"https://app.cognism.com/api/search/entitlement/contactEntitlementSubscription","description":"<p>Get details of subscribed Contact Entitlement</p>\n","urlObject":{"path":["api","search","entitlement","contactEntitlementSubscription"],"host":["https://app.cognism.com"],"query":[],"variable":[]}},"response":[{"id":"8fe85ed3-731e-4b0f-8978-ea0638b161d3","name":"Contact Advanced Entitlement","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <My-Api-Key>","description":"Added as a part of security scheme: apikey"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://app.cognism.com/api/search/entitlement/contactEntitlementSubscription"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"contact Entitlement\": {\n    \"city\": false,\n    \"lastConfirmed\": true,\n    \"zip\": true,\n    \"directPhoneNumbers\": false,\n    \"mobilePhoneNumbers\": false,\n    \"privacyNotificationSent\": false,\n    \"locationMoveEvent\": false,\n    \"lastName\": true,\n    \"education\": true,\n    \"jobLeaveEvent\": false,\n    \"region\": true,\n    \"managementLevel\": true,\n    \"jobTitle\": true,\n    \"email\": true,\n    \"positionStartDate\": true,\n    \"state\": true,\n    \"officePhoneNumbers\": true,\n    \"fullName\": true,\n    \"searchOptions\": true,\n    \"country\": true,\n    \"firstName\": true,\n    \"id\": true,\n    \"jobFunction\": true,\n    \"previousAccount\": true,\n    \"hqPhoneNumbers\": false,\n    \"jobJoinEvent\": false,\n    \"linkedinUrl\": true,\n    \"skills\": true,\n    \"seniority\": true,\n    \"street\": true,\n    \"account\": true\n  }\n}"}],"_postman_id":"0c23e257-7198-4fd1-83f7-46632d3120a3"},{"name":"Get Account Entitlement Details","id":"2dc967bf-c544-4896-889a-ff4583781450","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"url":"https://app.cognism.com/api/search/entitlement/accountEntitlementSubscription","description":"<p>Get details of subscribed Account Entitlement</p>\n","urlObject":{"path":["api","search","entitlement","accountEntitlementSubscription"],"host":["https://app.cognism.com"],"query":[],"variable":[]}},"response":[{"id":"6ded61a4-c3c0-40e5-8d68-c9213ae6775e","name":"Account Advanced Entitlement","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <My-Api-Key>","description":"Added as a part of security scheme: apikey"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://app.cognism.com/api/search/entitlement/accountEntitlementSubscription"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"account Entitlement\": {\n    \"website\": true,\n    \"name\": true,\n    \"location\": true,\n    \"founded\": true,\n    \"shortDescription\": true,\n    \"industry\": true,\n    \"acquisitionEvent\": false,\n    \"id\": true,\n    \"appearanceEvent\": false,\n    \"hiringEvent\": false,\n    \"linkedinUrl\": true,\n    \"type\": true,\n    \"sic\": true,\n    \"accountSearchOptions\": true,\n    \"headcount\": true,\n    \"size\": true,\n    \"fundingEvent\": false,\n    \"description\": true,\n    \"naics\": true,\n    \"officePhoneNumbers\": false,\n    \"domain\": true,\n    \"ipoEvent\": false,\n    \"technology\": true,\n    \"revenue\": true,\n    \"isic\": true,\n    \"hqPhoneNumbers\": false\n  }\n}"}],"_postman_id":"2dc967bf-c544-4896-889a-ff4583781450"}],"id":"82187ce8-1814-4eee-9585-566b4fb3ca62","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"a3f49b14-0dee-46d1-91ed-a614652001eb","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"cbcf0252-a5de-4ae0-b83c-43358fc76a2b","type":"text/javascript","exec":[""]}}],"_postman_id":"82187ce8-1814-4eee-9585-566b4fb3ca62","description":""},{"name":"Filter API","item":[{"name":"Technologies","id":"95532229-02b1-479e-9ad9-547a1d84fd5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"url":"https://app.cognism.com/api/search/filter/technologiesSearch?lastReturnedKey=&search=&indexSize=20","description":"<p>List supported technologies. Use optional search parameter to retreive list of matching technologies</p>\n","urlObject":{"path":["api","search","filter","technologiesSearch"],"host":["https://app.cognism.com"],"query":[{"description":{"content":"<p>Name of the last fetched technology</p>\n","type":"text/plain"},"key":"lastReturnedKey","value":""},{"description":{"content":"<p>Search filter. Leave it empty if you want to fetch all technologies</p>\n","type":"text/plain"},"key":"search","value":""},{"description":{"content":"<p>Index Size. Default size is 20. Maximum size is 10 000</p>\n","type":"text/plain"},"key":"indexSize","value":"20"}],"variable":[]}},"response":[],"_postman_id":"95532229-02b1-479e-9ad9-547a1d84fd5e"},{"name":"Management Levels","id":"6a348ac4-907d-4159-acae-35fcaa91a9ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"url":"https://app.cognism.com/api/search/filter/managementLevels","urlObject":{"path":["api","search","filter","managementLevels"],"host":["https://app.cognism.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"6a348ac4-907d-4159-acae-35fcaa91a9ab"},{"name":"Company Sizes","id":"2e989e58-6140-4c72-ac42-8640a1374863","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"url":"https://app.cognism.com/api/search/filter/companySizes","urlObject":{"path":["api","search","filter","companySizes"],"host":["https://app.cognism.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2e989e58-6140-4c72-ac42-8640a1374863"},{"name":"Industries","id":"2d569729-32f0-4fb3-81ca-98587c8962b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"url":"https://app.cognism.com/api/search/filter/industries","urlObject":{"path":["api","search","filter","industries"],"host":["https://app.cognism.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2d569729-32f0-4fb3-81ca-98587c8962b5"},{"name":"Job Functions","id":"b6e01d41-c1a6-4b5f-9e63-2adbaf8127a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"url":"https://app.cognism.com/api/search/filter/jobFunctions","urlObject":{"path":["api","search","filter","jobFunctions"],"host":["https://app.cognism.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b6e01d41-c1a6-4b5f-9e63-2adbaf8127a6"},{"name":"World Regions","id":"427e6faa-e156-4897-896a-63dc8741f90f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"url":"https://app.cognism.com/api/search/filter/regions","urlObject":{"path":["api","search","filter","regions"],"host":["https://app.cognism.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"427e6faa-e156-4897-896a-63dc8741f90f"},{"name":"Countries","id":"f04b5581-a45f-4da4-af0c-78c1b20a0e16","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"url":"https://app.cognism.com/api/search/filter/countries","urlObject":{"path":["api","search","filter","countries"],"host":["https://app.cognism.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f04b5581-a45f-4da4-af0c-78c1b20a0e16"},{"name":"States","id":"d5de3902-c542-43c6-bede-7b09aa140a09","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"url":"https://app.cognism.com/api/search/filter/states","urlObject":{"path":["api","search","filter","states"],"host":["https://app.cognism.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"d5de3902-c542-43c6-bede-7b09aa140a09"},{"name":"SIC Codes","id":"2bee7a4e-ae0d-4276-842c-d6af7c555518","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"url":"https://app.cognism.com/api/search/filter/sic","urlObject":{"path":["api","search","filter","sic"],"host":["https://app.cognism.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2bee7a4e-ae0d-4276-842c-d6af7c555518"},{"name":"ISIC Codes","id":"2efda4c7-7928-4722-9636-ed5ccf8ad75c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"url":"https://app.cognism.com/api/search/filter/isic","urlObject":{"path":["api","search","filter","isic"],"host":["https://app.cognism.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2efda4c7-7928-4722-9636-ed5ccf8ad75c"},{"name":"NAICS Codes","id":"0b46ced6-73d4-4798-b1c5-15163621c287","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"url":"https://app.cognism.com/api/search/filter/naics","urlObject":{"path":["api","search","filter","naics"],"host":["https://app.cognism.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"0b46ced6-73d4-4798-b1c5-15163621c287"},{"name":"Skills","id":"c6d4da9a-7e91-429d-bca8-5a7813643aa5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"url":"https://app.cognism.com/api/search/filter/skills","urlObject":{"path":["api","search","filter","skills"],"host":["https://app.cognism.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c6d4da9a-7e91-429d-bca8-5a7813643aa5"},{"name":"Company Types","id":"71cf5065-cbbb-48d6-92f9-61d011088828","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"url":"https://app.cognism.com/api/search/filter/companyTypes","urlObject":{"path":["api","search","filter","companyTypes"],"host":["https://app.cognism.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"71cf5065-cbbb-48d6-92f9-61d011088828"},{"name":"Seniority","id":"fea2e18a-6488-488d-ad00-1918fec5314a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"url":"https://app.cognism.com/api/search/filter/seniority","urlObject":{"path":["api","search","filter","seniority"],"host":["https://app.cognism.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"fea2e18a-6488-488d-ad00-1918fec5314a"}],"id":"b3d3e858-cb3e-4440-b586-f01d0c06dfec","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"753e4c18-479e-4f42-8569-12bfd38ce2f2","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"13aa35cc-fc30-4451-9b43-bc4227235dbf","type":"text/javascript","exec":[""]}}],"_postman_id":"b3d3e858-cb3e-4440-b586-f01d0c06dfec","description":""},{"name":"Compliance API","item":[{"name":"Opt-Out List","id":"be459a87-3a33-478a-89e1-54be764a4e7b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"url":"https://app.cognism.com/api/search/contact/optOut?pageSize=100","description":"<p>Include pageKey in the parameters to request next page.</p>\n<p>PageKey is used for pagination and is returned with every response</p>\n","urlObject":{"path":["api","search","contact","optOut"],"host":["https://app.cognism.com"],"query":[{"key":"pageSize","value":"100"},{"disabled":true,"key":"pageKey","value":null}],"variable":[]}},"response":[],"_postman_id":"be459a87-3a33-478a-89e1-54be764a4e7b"},{"name":"Search Opt-Out by Email","id":"f66bb3cf-aa90-4a97-bce8-27f7fdfd25f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"url":"https://app.cognism.com/api/search/contact/optOut/email/:email","urlObject":{"path":["api","search","contact","optOut","email",":email"],"host":["https://app.cognism.com"],"query":[],"variable":[{"type":"any","value":"","key":"email"}]}},"response":[],"_postman_id":"f66bb3cf-aa90-4a97-bce8-27f7fdfd25f2"},{"name":"Search Opt-Out by Id","id":"277194db-84c7-4ad7-94ff-77c068ddebef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer <My-Api-Key>","type":"text"}],"url":"https://app.cognism.com/api/search/contact/optOut/id/MzRkNjMzYjctNDFlYS0zYWM3LWEyODAtNDMxZDcxZmQ3N2ViO2IxMjBjOTdhLTlhNTItM2E3Zi1iNzNiLTg3MGUzYjQ0M2MxOTtlZmM2ZDk3NS04NTk5LTM4YWItOGNmZS1lMWM0MmFjMTZkYzY=","urlObject":{"path":["api","search","contact","optOut","id","MzRkNjMzYjctNDFlYS0zYWM3LWEyODAtNDMxZDcxZmQ3N2ViO2IxMjBjOTdhLTlhNTItM2E3Zi1iNzNiLTg3MGUzYjQ0M2MxOTtlZmM2ZDk3NS04NTk5LTM4YWItOGNmZS1lMWM0MmFjMTZkYzY="],"host":["https://app.cognism.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"277194db-84c7-4ad7-94ff-77c068ddebef"}],"id":"5f2f007c-bbe1-4fe8-b788-bb4b4e144fe1","description":"<p>Compliance API exposes three endpoints for checking contact Opt-out status.</p>\n<p>Opt-Out List returns all contacts that have Opt-out.</p>\n<p>Search Opt-out by Email and by Id endpoints can be called with the contact's Email or Cognism Id.</p>\n<p>HTTP status code 200 indicates Contact has chose to Opt-out.</p>\n<p>HTTP status code 404 indicates Contact has not chose to Opt-out</p>\n","_postman_id":"5f2f007c-bbe1-4fe8-b788-bb4b4e144fe1"}],"event":[{"listen":"prerequest","script":{"id":"aec2741d-79e8-448e-a852-f21731eacd2a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"2b65eb9e-647c-482d-9905-51217cd05349","type":"text/javascript","exec":[""]}}]}