{"info":{"_postman_id":"aaaa3592-c0a9-4acc-bdda-0d80086420ef","name":"Waterfall","description":"<html><head></head><body><p>Waterfall API offers a suite of features, available through seven calls in V1. Most endpoints are asynchronous, so you’ll need to launch a job (POST) and then fetch (GET) the results. Webhooks are supported to streamline this process. Here’s an overview of our endpoints:</p>\n<h4 id=\"1-prospector\">1. Prospector</h4>\n<p>Find contacts at target accounts using filters like job titles and location. Get contact details such as titles, real-time verified emails, social profiles, and phone numbers.</p>\n<ul>\n<li><p><strong>Prospector Launcher:</strong> Start a contact search using a domain name, LinkedIn profile, or company name. Returns a <code>job_id</code>.</p>\n</li>\n<li><p><strong>Prospector Finder:</strong> Retrieve results using the <code>job_id</code> from the Prospector Launcher.</p>\n</li>\n</ul>\n<h4 id=\"2-contact-enrichment\">2. Contact Enrichment</h4>\n<p>Enrich contact information by inputting professional/personal emails, LinkedIn URL/slug, or name + domain. Get enriched data like verified emails, job titles, and locations.</p>\n<ul>\n<li><p><strong>Contact Enrichment Launcher</strong>: Start a contact enrichment process. Returns a <code>job_id</code>.</p>\n</li>\n<li><p><strong>Contact Enrichment Finder</strong>: Retrieve results using the <code>job_id</code> from the Contact Enrichment Launcher.</p>\n</li>\n</ul>\n<h4 id=\"3-company-enrichment\">3. Company Enrichment</h4>\n<p>Enrich company data by inputting a domain, LinkedIn URL/slug, or company name. Receive details like headcount, industry, and headquarters.</p>\n<ul>\n<li><p><strong>Company Enrichment Launcher</strong>: Start a company search using a domain name, LinkedIn URL/slug, or company name. Returns a <code>job_id</code>.</p>\n</li>\n<li><p><strong>Company Enrichment Finder</strong>: Retrieve results using the <code>job_id</code> from the Company Enrichment Launcher.</p>\n</li>\n</ul>\n<h4 id=\"4-phone-number-enrichment\">4. Phone Number Enrichment</h4>\n<p>Get mobile numbers by inputting an email, LinkedIn URL/slug, or name + domain.</p>\n<ul>\n<li><p><strong>Phone Enrichment Launcher</strong>: Start a phone number enrichment process. Returns a <code>job_id</code>.</p>\n</li>\n<li><p><strong>Phone Enrichment Finder</strong>: Retrieve results using the <code>job_id</code> from the Phone Enrichment Launcher.</p>\n</li>\n</ul>\n<h4 id=\"5-email-verification\">5. Email Verification</h4>\n<p>Verify emails with high accuracy, reducing bounce rates. This endpoint works asynchronously, providing results in a single API call. You can start an email verification process and get the verification status of a given email.</p>\n<h4 id=\"6-account-reporter\">6. Account Reporter</h4>\n<p>Provides information about your account's usage.</p>\n<h4 id=\"7-api-keys-management\">7. API Keys Management</h4>\n<p>Use a single master key to manage all your API keys: create new keys, activate/deactivate them, and view all your keys in one place.<a href=\"https://docs.waterfall.io/waterfall-v1-1\"></a></p>\n<hr>\n<h1 id=\"authentication\">Authentication</h1>\n<p>To access the API, you need the API key provided in your contract. You can ask for multiple API keys for different teams' usage.</p>\n<p>All API request URLs start with <a href=\"https://api.waterfall.io/v1/\">https://api.waterfall.io/v1/</a>. The API key needs to be provided in the header of the request as <code>x-waterfall-api-key</code>.</p>\n<hr>\n<h1 id=\"rate-limit\">Rate limit</h1>\n<p>The Prospector, Enrichment and Verify Email APIs allow a maximum of 50 requests per minute (60 seconds). Should you encounter rate limit errors or anticipate a need for increased capacity, please reach out to your account manager for assistance. There are no rate limits for the Account Reporter API.</p>\n<h5 id=\"x-ratelimit-limit\">X-RateLimit-Limit</h5>\n<p>The maximum number of requests you can make per interval. Only sent when the rate limit is reached.</p>\n<h5 id=\"x-ratelimit-interval\">X-RateLimit-Interval</h5>\n<p>The length of the interval in seconds. Only sent when the rate limit is reached.</p>\n<h5 id=\"retry-after\">Retry-After</h5>\n<p>The number of seconds to wait until the rate limit window resets. Only sent when the rate limit is reached.</p>\n<hr>\n<h1 id=\"filters\">Filters</h1>\n<p>Waterfall offers three filtering options for prospect requests:</p>\n<h2 id=\"1-title-filter\">1. Title Filter</h2>\n<p>The <code>title_filter</code> parameter allows to request specific titles with each request. How it works:</p>\n<ul>\n<li><p>If it is present it must not be empty.</p>\n</li>\n<li><p>If it is present and not empty, like <code>\"title_filter\": \"((accountant) OR (accounting)) AND NOT(intern)\"</code>, Waterfall will filter employees using that title filter</p>\n</li>\n<li><p>If it is not present, Waterfall will try to use <a href=\"https://docs.waterfall.io/waterfall-v1-1/prospector/prospector-launcher/multiple-title-filters\"><code>title_filters</code></a>. One of <code>\"title_filter\"</code> or <code>\"title_filters\"</code> must be present.</p>\n</li>\n<li><p>If neither <code>title_filters</code> is present Waterfall will use your existing configured filters. To change your configured filters, contact your account manager.</p>\n</li>\n</ul>\n<p>The filter can be any Boolean expression. Accepted operators are: AND, OR NOT. Operators must be written with capital letters and separated by spaces.</p>\n<p>There is no need to enclose multi-word titles in parenthesis.</p>\n<p>Matching for each title is inclusive. For example:</p>\n<ul>\n<li><p><code>manager</code> will match <code>program mamanger</code>, <code>senior manager</code> and <code>account manager sales</code></p>\n</li>\n<li><p><code>vp data</code> will match <code>vp innovation, data science, co-founder</code>, <code>vp information and data</code> and <code>vp data science</code></p>\n</li>\n<li><p><code>head product</code> will match <code>global head of product</code> and <code>head of product management office</code></p>\n</li>\n<li><p><code>data lead</code> will match <code>lead data scientist</code>, <code>data lead engineer</code>, <code>data lead</code> and <code>data engineering lead</code></p>\n</li>\n</ul>\n<p>Few examples of valid filters:</p>\n<ul>\n<li><p>manager</p>\n</li>\n<li><p>manager AND NOT project manager</p>\n</li>\n<li><p>manager AND NOT (project manager OR sales manager)</p>\n</li>\n<li><p>( (manager OR director) AND (sales OR marketing) ) AND NOT ( project manager OR sales manager)</p>\n</li>\n<li><p>(accountant OR accounting) AND NOT intern</p>\n</li>\n<li><p>( (ceo) OR (c.e.o) OR (co-ceo) OR (coceo) OR (chief executive officer) OR (founder) OR (co-founder) OR (cofounder) OR (owner) OR (co-owner) OR (coowner) OR (cmo) OR (c.m.o) OR (chief marketing officer) OR (cco) OR (c.c.o) OR (chief commercial officer) OR (chief e-commerce officer) OR (chief ecommerce officer) ) OR ( ( (chief) OR (cheffe) OR (director) OR (vp) OR (svp) OR (vice) OR (president) OR (vicepresident) OR (executive) OR (head) ) AND ( (marketing) OR (growth) OR (e-commerce) OR (ecommerce) ) AND NOT ( (assistant) OR (analyst) OR (intern) OR (apprenticeship) OR (sales) OR (finance) OR (recruitment) OR (project manager) OR (hr) OR (human resources) OR (talent) OR (design) OR (logistic) OR (warehouse) OR (engineer) OR (developer) OR (student) OR (merchandising) OR (digital) OR (brand) OR (trade) OR (influencer) OR (export) OR (wholesale) OR (whole sale) OR (information) OR (specialist) ) )</p>\n</li>\n</ul>\n<p>Few examples of invalid filters:</p>\n<ul>\n<li><p><code>mangerANDdirector</code>: spaces must be used around operators</p>\n</li>\n<li><p><code>manager NOT (project manager)</code>: invalid boolean expression</p>\n</li>\n<li><p><code>(accountant OR accounting AND NOT intern</code>: missing closing parenthesis before AND</p>\n</li>\n</ul>\n<p>We recommend using parenthesis to make sure the order of evaluation is what you intend and to make the expression more easy to read.</p>\n<p>For example filter <code>(CFO) OR (Cofounder) AND NOT ((Vice) OR (Assistant) OR (Executive Assistant))</code> will match title <code>Assistant CFO.</code> The Boolean expression is <code>True OR False AND NOT True</code> and is evaluated as <code>True OR False AND NOT True = True OR False AND False = True OR False = True</code></p>\n<p>In this case, the intended filter is <code>((CFO) OR (Cofounder)) AND NOT ((Vice) OR (Assistant) OR (Executive Assistant))</code>. Note the extra parenthesis around the first part.</p>\n<p>If you need help with writing title filters, contact your account manager to schedule a call with the support team.</p>\n<hr>\n<h2 id=\"2-multiple-title-filters\">2. Multiple title filters</h2>\n<p>The <code>title_filters</code> parameter allows requesting multiple title_filters in a specific order. It is used if <a href=\"https://docs.waterfall.io/waterfall-v1-1/prospector/prospector-launcher/title-filter\"><code>title_filter</code></a> is not present.</p>\n<p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">\"title_filters\": [\n        {\n            \"name\": \"ceo level\",\n            \"filter\": \"ceo OR founder OR owner\"\n        },\n        {\n            \"name\": \"sales\",\n            \"filter\": \"revenue or growth OR sales\"\n        },\n        {\n            \"name\": \"marketing or operations\",\n            \"filter\": \"marketing OR operations\"\n        }\n    ]\n\n</code></pre>\n<p>Waterfall will try each filter in the order provided up to the requested <code>limit</code>.</p>\n<hr>\n<h2 id=\"3-location-filter\">3. Location filter</h2>\n<p>The location-based search is performed using two parameters: <code>location_country</code> and <code>location_name</code>.</p>\n<h4 id=\"location_country\">Location_country</h4>\n<p>The location_country parameter represents the country of the contact's current address. The country must be exact, like <code>United States</code> or <code>France</code>. Partial matches like <code>United</code> or <code>Saudi</code> will not work. The canonical list of countries is <a href=\"https://waterfall-io-public.s3.amazonaws.com/waterfall_location_country.txt\">here</a>.</p>\n<p>An empty parameter is ignored.</p>\n<p><strong>Location_countries</strong></p>\n<p>The location_countries parameter is a list of countries where the contact's current address can be. If it is present and not empty it will be used instead of <code>location_country</code> Examples:</p>\n<ul>\n<li><p>[\"France\"]</p>\n</li>\n<li><p>[\"France\", \"Germany\"]</p>\n</li>\n</ul>\n<p>Full list of coutries can be found <a href=\"https://waterfall-io-public.s3.us-east-1.amazonaws.com/waterfall_location_country.txt\">here</a>.</p>\n<h4 id=\"location_name\">Location_name</h4>\n<p>The <code>location_name</code> the parameter represents the location of the contact's current address. Typical locations are:</p>\n<ul>\n<li><p><code>San Francisco, California, United States</code></p>\n</li>\n<li><p><code>Paris, Ile-De-France, France</code></p>\n</li>\n</ul>\n<p>A location comprises a city, region/state, and country. Partial matches are possible. Acceptable partial locations are:</p>\n<ul>\n<li><p>city, region: <code>San Francisco, California</code>, <code>Paris, Ile-De-France</code></p>\n</li>\n<li><p>region, country: <code>California, United States</code>, <code>Ile-De-France, France</code></p>\n</li>\n<li><p>city: <code>San Francisco</code>, <code>Paris</code></p>\n</li>\n<li><p>region: <code>California</code>, <code>Ile-De-France</code></p>\n</li>\n<li><p>country:<code>United States</code>, <code>France</code></p>\n</li>\n</ul>\n<p>In many cases, the best results are obtained using only the region. Region filter tends to match most results.</p>\n<p>An empty parameter is ignored.</p>\n<hr>\n<h1 id=\"errors\">Errors</h1>\n<p>The waterfall API uses conventional HTTP response codes to indicate the success or failure of a request, with detailed information in case of error.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200 OK</td>\n<td>The request was successful.</td>\n</tr>\n<tr>\n<td>400 Bad Request</td>\n<td>Your request was not valid.</td>\n</tr>\n<tr>\n<td>401 Unauthorized</td>\n<td>Missing API key.</td>\n</tr>\n<tr>\n<td>403 Forbidden</td>\n<td>Bad API key.</td>\n</tr>\n<tr>\n<td>404 Not Found</td>\n<td>The requested endpoint does not exist.</td>\n</tr>\n<tr>\n<td>500 Internal Server Error</td>\n<td>Something went wrong on our end.</td>\n</tr>\n</tbody>\n</table>\n</div><hr>\n<h1 id=\"contact-support\">Contact Support</h1>\n<p>Contact Support:<br>Email: <a href=\"https://mailto:felix@waterfall.io\">felix@waterfall.io</a></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Authentication","slug":"authentication"},{"content":"Rate limit","slug":"rate-limit"},{"content":"Filters","slug":"filters"},{"content":"Errors","slug":"errors"},{"content":"Contact Support","slug":"contact-support"}],"owner":"41982888","collectionId":"aaaa3592-c0a9-4acc-bdda-0d80086420ef","publishedId":"2sAYXBGzrT","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2025-02-14T05:29:24.000Z"},"item":[{"name":"v1","item":[{"name":"prospector","item":[{"name":"Prospector Launcher","id":"2ff4dde7-3768-496d-87bc-063cd4b2440b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-waterfall-api-key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"domain\": {},\n  \"title_filter\": {},\n  \"company_name\": {},\n  \"linkedin\": {},\n  \"location_name\": {},\n  \"location_country\": {},\n  \"excluded_names\": [\n    \"cupidatat nostrud ex\",\n    \"Duis in sunt voluptate minim\",\n    \"irure\",\n    \"veniam\",\n    \"magna commodo\",\n    \"sint tempor\",\n    \"e\",\n    \"pariatur voluptate enim\",\n    \"ullamco pariatur deserunt\",\n    \"veniam cupidatat deserunt\",\n    \"dolore sint tempor in\",\n    \"pariatur\",\n    \"ut ad Ut\",\n    \"Lorem culpa minim labore veniam\",\n    \"sit est\",\n    \"officia cupidatat reprehenderit ut dolore\",\n    \"aute\",\n    \"do esse\",\n    \"mi\",\n    \"in exercitation adipisicing\"\n  ],\n  \"limit\": {},\n  \"include_phones\": false,\n  \"verified_only\": true,\n  \"webhook_url\": {},\n  \"custom_fields\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.waterfall.io/v1/prospector","description":"<p>This endpoint allows you to launch a contact search, using a given domain, LinkedIn URL/ID or a company name. The <code>domain</code> input and <code>title_filter</code> or <code>title_filters</code> are required.</p>\n","urlObject":{"path":["v1","prospector"],"host":["https://api.waterfall.io"],"query":[],"variable":[]}},"response":[{"id":"1570c145-5185-47c2-aa8f-bd1bfbe102eb","name":"Prospector successfully launched.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-waterfall-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": {},\n  \"title_filter\": {},\n  \"company_name\": {},\n  \"linkedin\": {},\n  \"location_name\": {},\n  \"location_country\": {},\n  \"excluded_names\": [\n    \"cupidatat nostrud ex\",\n    \"Duis in sunt voluptate minim\",\n    \"irure\",\n    \"veniam\",\n    \"magna commodo\",\n    \"sint tempor\",\n    \"e\",\n    \"pariatur voluptate enim\",\n    \"ullamco pariatur deserunt\",\n    \"veniam cupidatat deserunt\",\n    \"dolore sint tempor in\",\n    \"pariatur\",\n    \"ut ad Ut\",\n    \"Lorem culpa minim labore veniam\",\n    \"sit est\",\n    \"officia cupidatat reprehenderit ut dolore\",\n    \"aute\",\n    \"do esse\",\n    \"mi\",\n    \"in exercitation adipisicing\"\n  ],\n  \"limit\": {},\n  \"include_phones\": false,\n  \"verified_only\": true,\n  \"webhook_url\": {},\n  \"custom_fields\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.waterfall.io/v1/prospector"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"job_id\": \"<uuid>\",\n  \"start_date\": \"<dateTime>\"\n}"},{"id":"14eb26c0-cbe4-431a-be1b-3d06f4c2daab","name":"API key not provided within the headers.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-waterfall-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": {},\n  \"title_filter\": {},\n  \"company_name\": {},\n  \"linkedin\": {},\n  \"location_name\": {},\n  \"location_country\": {},\n  \"excluded_names\": [\n    \"cupidatat nostrud ex\",\n    \"Duis in sunt voluptate minim\",\n    \"irure\",\n    \"veniam\",\n    \"magna commodo\",\n    \"sint tempor\",\n    \"e\",\n    \"pariatur voluptate enim\",\n    \"ullamco pariatur deserunt\",\n    \"veniam cupidatat deserunt\",\n    \"dolore sint tempor in\",\n    \"pariatur\",\n    \"ut ad Ut\",\n    \"Lorem culpa minim labore veniam\",\n    \"sit est\",\n    \"officia cupidatat reprehenderit ut dolore\",\n    \"aute\",\n    \"do esse\",\n    \"mi\",\n    \"in exercitation adipisicing\"\n  ],\n  \"limit\": {},\n  \"include_phones\": false,\n  \"verified_only\": true,\n  \"webhook_url\": {},\n  \"custom_fields\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.waterfall.io/v1/prospector"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\",\n  \"error\": \"<array>\"\n}"},{"id":"498dc6fd-6470-4651-97a3-35b87b5d14fb","name":"Wrong API key provided within the headers.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-waterfall-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": {},\n  \"title_filter\": {},\n  \"company_name\": {},\n  \"linkedin\": {},\n  \"location_name\": {},\n  \"location_country\": {},\n  \"excluded_names\": [\n    \"cupidatat nostrud ex\",\n    \"Duis in sunt voluptate minim\",\n    \"irure\",\n    \"veniam\",\n    \"magna commodo\",\n    \"sint tempor\",\n    \"e\",\n    \"pariatur voluptate enim\",\n    \"ullamco pariatur deserunt\",\n    \"veniam cupidatat deserunt\",\n    \"dolore sint tempor in\",\n    \"pariatur\",\n    \"ut ad Ut\",\n    \"Lorem culpa minim labore veniam\",\n    \"sit est\",\n    \"officia cupidatat reprehenderit ut dolore\",\n    \"aute\",\n    \"do esse\",\n    \"mi\",\n    \"in exercitation adipisicing\"\n  ],\n  \"limit\": {},\n  \"include_phones\": false,\n  \"verified_only\": true,\n  \"webhook_url\": {},\n  \"custom_fields\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.waterfall.io/v1/prospector"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\",\n  \"error\": \"<array>\"\n}"}],"_postman_id":"2ff4dde7-3768-496d-87bc-063cd4b2440b"},{"name":"Prospector Finder","id":"3e7a0c05-7085-4402-8c0a-9c0e26c3c433","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-waterfall-api-key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.waterfall.io/v1/prospector?job_id=<uuid>","description":"<p>This endpoint allows you to get the result of a launch on the Prospector Launcher endpoint, using the provided job_id returned as the output of the Prospector Launcher API call.</p>\n","urlObject":{"path":["v1","prospector"],"host":["https://api.waterfall.io"],"query":[{"description":{"content":"<p>(Required) The unique job_id you want to query. Has previously been returned in the output of the Prospector Launcher API call.</p>\n","type":"text/plain"},"key":"job_id","value":"<uuid>"}],"variable":[]}},"response":[{"id":"e6cfdcc0-df54-4a65-9a9d-6071d5c762d4","name":"View results from the job.\n","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-waterfall-api-key","value":"<API Key>"}],"url":{"raw":"https://api.waterfall.io/v1/prospector?job_id=<uuid>","host":["https://api.waterfall.io"],"path":["v1","prospector"],"query":[{"description":"(Required) The unique job_id you want to query. Has previously been returned in the output of the Prospector Launcher API call.\n","key":"job_id","value":"<uuid>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"SUCCEEDED\",\n  \"start_date\": \"<dateTime>\",\n  \"input\": {\n    \"task\": {\n      \"domain\": \"<string>\",\n      \"company_name\": \"<string>\",\n      \"webhook_url\": \"<uri>\",\n      \"limit\": 10,\n      \"custom_fields\": {\n        \"veniam_0\": \"ea adipisicing magna dolore\"\n      },\n      \"job_id\": \"<uuid>\",\n      \"context_id\": \"<uuid>\"\n    }\n  },\n  \"stop_date\": \"<dateTime>\",\n  \"output\": {\n    \"company\": {\n      \"id\": \"<uuid>\",\n      \"domain\": \"<string>\",\n      \"company_name\": \"<string>\",\n      \"website\": \"<string>\",\n      \"linkedin_id\": \"<string>\",\n      \"linkedin_url\": \"<uri>\",\n      \"linkedin_description\": \"<string>\",\n      \"linkedin_logo_url\": \"<uri>\",\n      \"size\": \"<string>\",\n      \"linkedin_size\": \"<string>\",\n      \"linkedin_industry\": \"<string>\",\n      \"linkedin_type\": \"<string>\",\n      \"linkedin_followers\": \"<integer>\",\n      \"linkedin_founded\": \"<integer>\",\n      \"linkedin_employees_count\": \"<integer>\",\n      \"linkedin_address\": \"<string>\",\n      \"country\": \"<string>\"\n    },\n    \"persons\": [\n      {\n        \"id\": \"<uuid>\",\n        \"first_name\": \"<string>\",\n        \"last_name\": \"<string>\",\n        \"linkedin_id\": \"<string>\",\n        \"linkedin_url\": \"<uri>\",\n        \"about\": \"<string>\",\n        \"personal_email\": \"<email>\",\n        \"location\": \"<string>\",\n        \"country\": \"<string>\",\n        \"company_id\": \"<uuid>\",\n        \"company_linkedin_id\": \"<string>\",\n        \"company_name\": \"<string>\",\n        \"company_domain\": \"<string>\",\n        \"professional_email\": \"<email>\",\n        \"mobile_phone\": \"<string>\",\n        \"phone_numbers\": [\n          \"<string>\",\n          \"<string>\"\n        ],\n        \"title\": \"<string>\",\n        \"seniority\": \"<string>\",\n        \"department\": \"<string>\",\n        \"experiences\": [\n          {\n            \"title\": \"<string>\",\n            \"location\": \"<string>\",\n            \"company_name\": \"<string>\",\n            \"company_linkedin_id\": \"<string>\",\n            \"company_linkedin_url\": \"<uri>\",\n            \"company_domain\": \"<string>\",\n            \"start_year\": \"<integer>\",\n            \"start_month\": \"<integer>\",\n            \"start_date\": \"<date>\",\n            \"end_year\": \"<integer>\",\n            \"end_month\": \"<integer>\",\n            \"end_date\": \"<date>\",\n            \"is_current\": \"<boolean>\",\n            \"description\": \"<string>\"\n          },\n          {\n            \"title\": \"<string>\",\n            \"location\": \"<string>\",\n            \"company_name\": \"<string>\",\n            \"company_linkedin_id\": \"<string>\",\n            \"company_linkedin_url\": \"<uri>\",\n            \"company_domain\": \"<string>\",\n            \"start_year\": \"<integer>\",\n            \"start_month\": \"<integer>\",\n            \"start_date\": \"<date>\",\n            \"end_year\": \"<integer>\",\n            \"end_month\": \"<integer>\",\n            \"end_date\": \"<date>\",\n            \"is_current\": \"<boolean>\",\n            \"description\": \"<string>\"\n          }\n        ],\n        \"email_verified\": \"<boolean>\",\n        \"email_confidence\": \"low\",\n        \"email_verified_status\": \"provider_error\",\n        \"domain_age_days\": \"<integer>\",\n        \"smtp_provider\": \"<string>\",\n        \"mx_record\": \"<string>\"\n      },\n      {\n        \"id\": \"<uuid>\",\n        \"first_name\": \"<string>\",\n        \"last_name\": \"<string>\",\n        \"linkedin_id\": \"<string>\",\n        \"linkedin_url\": \"<uri>\",\n        \"about\": \"<string>\",\n        \"personal_email\": \"<email>\",\n        \"location\": \"<string>\",\n        \"country\": \"<string>\",\n        \"company_id\": \"<uuid>\",\n        \"company_linkedin_id\": \"<string>\",\n        \"company_name\": \"<string>\",\n        \"company_domain\": \"<string>\",\n        \"professional_email\": \"<email>\",\n        \"mobile_phone\": \"<string>\",\n        \"phone_numbers\": [\n          \"<string>\",\n          \"<string>\"\n        ],\n        \"title\": \"<string>\",\n        \"seniority\": \"<string>\",\n        \"department\": \"<string>\",\n        \"experiences\": [\n          {\n            \"title\": \"<string>\",\n            \"location\": \"<string>\",\n            \"company_name\": \"<string>\",\n            \"company_linkedin_id\": \"<string>\",\n            \"company_linkedin_url\": \"<uri>\",\n            \"company_domain\": \"<string>\",\n            \"start_year\": \"<integer>\",\n            \"start_month\": \"<integer>\",\n            \"start_date\": \"<date>\",\n            \"end_year\": \"<integer>\",\n            \"end_month\": \"<integer>\",\n            \"end_date\": \"<date>\",\n            \"is_current\": \"<boolean>\",\n            \"description\": \"<string>\"\n          },\n          {\n            \"title\": \"<string>\",\n            \"location\": \"<string>\",\n            \"company_name\": \"<string>\",\n            \"company_linkedin_id\": \"<string>\",\n            \"company_linkedin_url\": \"<uri>\",\n            \"company_domain\": \"<string>\",\n            \"start_year\": \"<integer>\",\n            \"start_month\": \"<integer>\",\n            \"start_date\": \"<date>\",\n            \"end_year\": \"<integer>\",\n            \"end_month\": \"<integer>\",\n            \"end_date\": \"<date>\",\n            \"is_current\": \"<boolean>\",\n            \"description\": \"<string>\"\n          }\n        ],\n        \"email_verified\": \"<boolean>\",\n        \"email_confidence\": \"high\",\n        \"email_verified_status\": \"unknown\",\n        \"domain_age_days\": \"<integer>\",\n        \"smtp_provider\": \"<string>\",\n        \"mx_record\": \"<string>\"\n      }\n    ]\n  }\n}"},{"id":"21a96d20-23ce-4925-bd2b-29e47e7ab8a0","name":"API key not provided within the headers.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-waterfall-api-key","value":"<API Key>"}],"url":{"raw":"https://api.waterfall.io/v1/prospector?job_id=<uuid>","host":["https://api.waterfall.io"],"path":["v1","prospector"],"query":[{"description":"(Required) The unique job_id you want to query. Has previously been returned in the output of the Prospector Launcher API call.\n","key":"job_id","value":"<uuid>"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\",\n  \"error\": \"<array>\"\n}"},{"id":"d9f5593b-c03a-4e62-9fcb-4ff397600f7b","name":"Wrong API key provided within the headers.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-waterfall-api-key","value":"<API Key>"}],"url":{"raw":"https://api.waterfall.io/v1/prospector?job_id=<uuid>","host":["https://api.waterfall.io"],"path":["v1","prospector"],"query":[{"description":"(Required) The unique job_id you want to query. Has previously been returned in the output of the Prospector Launcher API call.\n","key":"job_id","value":"<uuid>"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\",\n  \"error\": \"<array>\"\n}"},{"id":"044ef8a1-3800-4758-ad25-b1832aa3f093","name":"The job_id does not exist.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-waterfall-api-key","value":"<API Key>"}],"url":{"raw":"https://api.waterfall.io/v1/prospector?job_id=<uuid>","host":["https://api.waterfall.io"],"path":["v1","prospector"],"query":[{"description":"(Required) The unique job_id you want to query. Has previously been returned in the output of the Prospector Launcher API call.\n","key":"job_id","value":"<uuid>"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\",\n  \"error\": \"<array>\"\n}"}],"_postman_id":"3e7a0c05-7085-4402-8c0a-9c0e26c3c433"}],"id":"42cfbbb1-e0e7-49d0-b4d1-522043ad73b4","description":"<blockquote>\n<p><strong>Prospector Workflow (Launcher &amp; Finder) Overview</strong><br /><strong>You input:</strong> Target account domains/LinkedIn URLs/IDs and persona (job titles)<br /><strong>You get:</strong> Contacts with job titles, location, social media profiles, phone numbers, verified emails, and more</p>\n</blockquote>\n","_postman_id":"42cfbbb1-e0e7-49d0-b4d1-522043ad73b4"},{"name":"enrichment","item":[{"name":"contact","item":[{"name":"Contact Enrichment Launcher","id":"d9f883bd-90e9-4639-b9d5-b9d7337718d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-waterfall-api-key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"linkedin\": \"officia aliqua Lorem\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.waterfall.io/v1/enrichment/contact","description":"<p>This endpoint allows you to launch a contact enrichment.</p>\n<p>This will accept three categories of payloads: a LinkedIn URL/ID, an email, or a full name plus an email domain.</p>\n<p>If the email is present, Waterfall will perform email-based enrichment.</p>\n<p>If the email is absent but the LinkedIn URL/ID is present, Waterfall will perform linkedin-based enrichment.</p>\n<p>If both the LinkedIn URL/ID and email are absent, Waterfall will perform name+domain to email enrichment.</p>\n<p>Note that using a professional email provides significantly better results for email to business profile enrichment.</p>\n","urlObject":{"path":["v1","enrichment","contact"],"host":["https://api.waterfall.io"],"query":[],"variable":[]}},"response":[{"id":"2e32201d-f9d5-446f-93e9-6c61f53c0989","name":"Enrichment successfully launched.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-waterfall-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"linkedin\": \"officia aliqua Lorem\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.waterfall.io/v1/enrichment/contact"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"job_id\": \"<uuid>\",\n  \"start_date\": \"<dateTime>\"\n}"},{"id":"732edfb5-8976-47c2-9791-dec0166364fd","name":"API key not provided within the headers.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-waterfall-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"linkedin\": \"officia aliqua Lorem\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.waterfall.io/v1/enrichment/contact"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\",\n  \"error\": \"<array>\"\n}"},{"id":"5fc67a5e-826b-4a56-9778-f9cee96db0bd","name":"Wrong API key provided within the headers.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-waterfall-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"linkedin\": \"officia aliqua Lorem\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.waterfall.io/v1/enrichment/contact"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\",\n  \"error\": \"<array>\"\n}"}],"_postman_id":"d9f883bd-90e9-4639-b9d5-b9d7337718d9"},{"name":"Enrichment Contact Finder","id":"69aadac7-8d52-4932-9046-2fe1460f307f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-waterfall-api-key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.waterfall.io/v1/enrichment/contact?job_id=<uuid>","description":"<p>This endpoint allows you to get the result of a launch on the Contact Enrichment Launcher endpoint, using the provided job_id returned as the output of the Contact Enrichment Launcher API call.</p>\n","urlObject":{"path":["v1","enrichment","contact"],"host":["https://api.waterfall.io"],"query":[{"description":{"content":"<p>(Required) The unique job_id you want to query. Has previously been returned in the output of the Enrichment Contact Launcher API call. </p>\n","type":"text/plain"},"key":"job_id","value":"<uuid>"}],"variable":[]}},"response":[{"id":"f83e2c51-3ec8-44f5-8a61-d1d9ec896a6c","name":"View results from the job.\n","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-waterfall-api-key","value":"<API Key>"}],"url":{"raw":"https://api.waterfall.io/v1/enrichment/contact?job_id=<uuid>","host":["https://api.waterfall.io"],"path":["v1","enrichment","contact"],"query":[{"description":"(Required) The unique job_id you want to query. Has previously been returned in the output of the Enrichment Contact Launcher API call. \n","key":"job_id","value":"<uuid>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"ABORTED\",\n  \"start_date\": \"<dateTime>\",\n  \"input\": {\n    \"task\": {\n      \"linkedin\": \"<string>\",\n      \"full_name\": \"<string>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"domain\": \"<string>\",\n      \"email\": \"<email>\",\n      \"webhook_url\": \"<uri>\",\n      \"custom_fields\": {\n        \"laboris72b\": \"Duis\",\n        \"occaecat_e\": 23710135.029145673\n      },\n      \"job_id\": \"<uuid>\",\n      \"context_id\": \"<uuid>\"\n    }\n  },\n  \"stop_date\": \"<dateTime>\",\n  \"output\": {\n    \"person\": {\n      \"id\": \"<uuid>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"linkedin_id\": \"<string>\",\n      \"linkedin_url\": \"<uri>\",\n      \"about\": \"<string>\",\n      \"personal_email\": \"<email>\",\n      \"location\": \"<string>\",\n      \"country\": \"<string>\",\n      \"company_id\": \"<uuid>\",\n      \"company_linkedin_id\": \"<string>\",\n      \"company_name\": \"<string>\",\n      \"company_domain\": \"<string>\",\n      \"professional_email\": \"<email>\",\n      \"mobile_phone\": \"<string>\",\n      \"phone_numbers\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"title\": \"<string>\",\n      \"seniority\": \"<string>\",\n      \"department\": \"<string>\",\n      \"experiences\": [\n        {\n          \"title\": \"<string>\",\n          \"location\": \"<string>\",\n          \"company_name\": \"<string>\",\n          \"company_linkedin_id\": \"<string>\",\n          \"company_linkedin_url\": \"<uri>\",\n          \"company_domain\": \"<string>\",\n          \"start_year\": \"<integer>\",\n          \"start_month\": \"<integer>\",\n          \"start_date\": \"<date>\",\n          \"end_year\": \"<integer>\",\n          \"end_month\": \"<integer>\",\n          \"end_date\": \"<date>\",\n          \"is_current\": \"<boolean>\",\n          \"description\": \"<string>\"\n        },\n        {\n          \"title\": \"<string>\",\n          \"location\": \"<string>\",\n          \"company_name\": \"<string>\",\n          \"company_linkedin_id\": \"<string>\",\n          \"company_linkedin_url\": \"<uri>\",\n          \"company_domain\": \"<string>\",\n          \"start_year\": \"<integer>\",\n          \"start_month\": \"<integer>\",\n          \"start_date\": \"<date>\",\n          \"end_year\": \"<integer>\",\n          \"end_month\": \"<integer>\",\n          \"end_date\": \"<date>\",\n          \"is_current\": \"<boolean>\",\n          \"description\": \"<string>\"\n        }\n      ],\n      \"email_verified\": \"<boolean>\",\n      \"email_confidence\": \"low\",\n      \"email_verified_status\": \"invalid\",\n      \"domain_age_days\": \"<integer>\",\n      \"smtp_provider\": \"<string>\",\n      \"mx_record\": \"<string>\"\n    }\n  }\n}"},{"id":"784eeebb-b722-43ed-bd72-3c2b30561aed","name":"API key not provided within the headers.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-waterfall-api-key","value":"<API Key>"}],"url":{"raw":"https://api.waterfall.io/v1/enrichment/contact?job_id=<uuid>","host":["https://api.waterfall.io"],"path":["v1","enrichment","contact"],"query":[{"description":"(Required) The unique job_id you want to query. Has previously been returned in the output of the Enrichment Contact Launcher API call. \n","key":"job_id","value":"<uuid>"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\",\n  \"error\": \"<array>\"\n}"},{"id":"bb956079-3f9b-45df-805c-3fef0b0559f1","name":"Wrong API key provided within the headers.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-waterfall-api-key","value":"<API Key>"}],"url":{"raw":"https://api.waterfall.io/v1/enrichment/contact?job_id=<uuid>","host":["https://api.waterfall.io"],"path":["v1","enrichment","contact"],"query":[{"description":"(Required) The unique job_id you want to query. Has previously been returned in the output of the Enrichment Contact Launcher API call. \n","key":"job_id","value":"<uuid>"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\",\n  \"error\": \"<array>\"\n}"},{"id":"d7995db5-1085-453f-8a39-878e5d90695a","name":"The job_id does not exist.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-waterfall-api-key","value":"<API Key>"}],"url":{"raw":"https://api.waterfall.io/v1/enrichment/contact?job_id=<uuid>","host":["https://api.waterfall.io"],"path":["v1","enrichment","contact"],"query":[{"description":"(Required) The unique job_id you want to query. Has previously been returned in the output of the Enrichment Contact Launcher API call. \n","key":"job_id","value":"<uuid>"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\",\n  \"error\": \"<array>\"\n}"}],"_postman_id":"69aadac7-8d52-4932-9046-2fe1460f307f"}],"id":"71555987-035f-4b63-bd17-6ceb18011c26","description":"<blockquote>\n<p><strong>Contact Enrichment Workflow (Launcher &amp; Finder) Overview</strong><br /><strong>You input:</strong> Professional/personal email, social profile, or name + domain<br /><strong>You get:</strong> Verified emails, professional profiles including name, current job title, location and more</p>\n</blockquote>\n","_postman_id":"71555987-035f-4b63-bd17-6ceb18011c26"},{"name":"phone","item":[{"name":"Phone Enrichment Launcher","id":"c21b68cd-b115-4e27-8307-2347cac2a59b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-waterfall-api-key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"linkedin\": \"officia aliqua Lorem\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.waterfall.io/v1/enrichment/phone","description":"<p>This endpoint allows you to launch a phone enrichment.</p>\n<p>It will accept three categories of payloads: a LinkedIn ID, an email, or a full name plus an email domain.</p>\n<p>If the LinkedIn URL/ID is present, Waterfall will do LinkedIn to phone enrichment.</p>\n<p>If the LinkedIn URL/ID is not present and the email is present, Waterfall will do email-based enrichment.</p>\n<p>If the LinkedIn URL/ID and email are absent, Waterfall will do name+domain to phone enrichment.</p>\n<p>Note that using LinkedIn URL/ID provides significantly better results. But it is advisable to attempt enriching the contacts again with a professional email if previous attempts with the LinkedIn URL/ID were unsuccessful. You will only be charged when a number is returned.</p>\n","urlObject":{"path":["v1","enrichment","phone"],"host":["https://api.waterfall.io"],"query":[],"variable":[]}},"response":[{"id":"a7e666f7-267e-4a8b-9860-1aaf9201a6fa","name":"Enrichment successfully launched.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"x-waterfall-api-key","value":"<API Key>","description":"Added as a part of security scheme: apikey"}],"body":{"mode":"raw","raw":"{\n  \"linkedin\": \"officia aliqua Lorem\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.waterfall.io/v1/enrichment/phone"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"job_id\": \"<uuid>\",\n  \"start_date\": \"<dateTime>\"\n}"},{"id":"1a425019-a4c9-452e-b825-6ec5d654467c","name":"API key not provided within the headers.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"x-waterfall-api-key","value":"<API Key>","description":"Added as a part of security scheme: apikey"}],"body":{"mode":"raw","raw":"{\n  \"linkedin\": \"officia aliqua Lorem\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.waterfall.io/v1/enrichment/phone"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\",\n  \"error\": \"<array>\"\n}"},{"id":"c24bf5a6-f66c-48c4-81ef-ea24e15d6458","name":"Wrong API key provided within the headers.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"x-waterfall-api-key","value":"<API Key>","description":"Added as a part of security scheme: apikey"}],"body":{"mode":"raw","raw":"{\n  \"linkedin\": \"officia aliqua Lorem\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.waterfall.io/v1/enrichment/phone"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\",\n  \"error\": \"<array>\"\n}"}],"_postman_id":"c21b68cd-b115-4e27-8307-2347cac2a59b"},{"name":"Enrichment Phone Finder","id":"de82de78-edf9-40ee-a0cf-569b224c21e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-waterfall-api-key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.waterfall.io/v1/enrichment/phone?job_id=<uuid>","description":"<p>This endpoint allows you to get the result of a launch on the Phone Enrichment Launcher endpoint, using the provided job_id returned as the output of the Phone Enrichment Launcher API call.</p>\n<p>The phone numbers will always be in E.164 format.</p>\n<p>The enrichment phone will return the result in the same format as the enrich contact but with fewer fields populated.</p>\n","urlObject":{"path":["v1","enrichment","phone"],"host":["https://api.waterfall.io"],"query":[{"description":{"content":"<p>(Required) The unique job_id you want to query. Has previously been returned in the output of the Enrichment Phone Launcher API call. </p>\n","type":"text/plain"},"key":"job_id","value":"<uuid>"}],"variable":[]}},"response":[{"id":"00e8db82-a51f-48be-8f6b-2fafa76bdb07","name":"View results from the job.\n","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-waterfall-api-key","value":"<API Key>","description":"Added as a part of security scheme: apikey"}],"url":{"raw":"https://api.waterfall.io/v1/enrichment/phone?job_id=<uuid>","protocol":"https","host":["api","waterfall","io"],"path":["v1","enrichment","phone"],"query":[{"key":"job_id","value":"<uuid>","description":"(Required) The unique job_id you want to query. Has previously been returned in the output of the Enrichment Phone Launcher API call. \n"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"ABORTED\",\n  \"start_date\": \"<dateTime>\",\n  \"input\": {\n    \"task\": {\n      \"linkedin\": \"<string>\",\n      \"full_name\": \"<string>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"domain\": \"<string>\",\n      \"email\": \"<email>\",\n      \"webhook_url\": \"<uri>\",\n      \"custom_fields\": {\n        \"laboris72b\": \"Duis\",\n        \"occaecat_e\": 23710135.029145673\n      },\n      \"job_id\": \"<uuid>\",\n      \"context_id\": \"<uuid>\"\n    }\n  },\n  \"stop_date\": \"<dateTime>\",\n  \"output\": {\n    \"person\": {\n      \"id\": \"<uuid>\",\n      \"first_name\": \"<string>\",\n      \"last_name\": \"<string>\",\n      \"linkedin_id\": \"<string>\",\n      \"linkedin_url\": \"<uri>\",\n      \"about\": \"<string>\",\n      \"personal_email\": \"<email>\",\n      \"location\": \"<string>\",\n      \"country\": \"<string>\",\n      \"company_id\": \"<uuid>\",\n      \"company_linkedin_id\": \"<string>\",\n      \"company_name\": \"<string>\",\n      \"company_domain\": \"<string>\",\n      \"professional_email\": \"<email>\",\n      \"mobile_phone\": \"<string>\",\n      \"phone_numbers\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"title\": \"<string>\",\n      \"seniority\": \"<string>\",\n      \"department\": \"<string>\",\n      \"experiences\": [\n        {\n          \"title\": \"<string>\",\n          \"location\": \"<string>\",\n          \"company_name\": \"<string>\",\n          \"company_linkedin_id\": \"<string>\",\n          \"company_linkedin_url\": \"<uri>\",\n          \"company_domain\": \"<string>\",\n          \"start_year\": \"<integer>\",\n          \"start_month\": \"<integer>\",\n          \"start_date\": \"<date>\",\n          \"end_year\": \"<integer>\",\n          \"end_month\": \"<integer>\",\n          \"end_date\": \"<date>\",\n          \"is_current\": \"<boolean>\",\n          \"description\": \"<string>\"\n        },\n        {\n          \"title\": \"<string>\",\n          \"location\": \"<string>\",\n          \"company_name\": \"<string>\",\n          \"company_linkedin_id\": \"<string>\",\n          \"company_linkedin_url\": \"<uri>\",\n          \"company_domain\": \"<string>\",\n          \"start_year\": \"<integer>\",\n          \"start_month\": \"<integer>\",\n          \"start_date\": \"<date>\",\n          \"end_year\": \"<integer>\",\n          \"end_month\": \"<integer>\",\n          \"end_date\": \"<date>\",\n          \"is_current\": \"<boolean>\",\n          \"description\": \"<string>\"\n        }\n      ],\n      \"email_verified\": \"<boolean>\",\n      \"email_confidence\": \"low\",\n      \"email_verified_status\": \"invalid\",\n      \"domain_age_days\": \"<integer>\",\n      \"smtp_provider\": \"<string>\",\n      \"mx_record\": \"<string>\"\n    }\n  }\n}"},{"id":"513b3aeb-b304-45e3-b788-57c8cbaa53bf","name":"API key not provided within the headers.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-waterfall-api-key","value":"<API Key>","description":"Added as a part of security scheme: apikey"}],"url":{"raw":"https://api.waterfall.io/v1/enrichment/phone?job_id=<uuid>","host":["https://api.waterfall.io"],"path":["v1","enrichment","phone"],"query":[{"key":"job_id","value":"<uuid>","description":"(Required) The unique job_id you want to query. Has previously been returned in the output of the Enrichment Phone Launcher API call. \n"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\",\n  \"error\": \"<array>\"\n}"},{"id":"77240b51-e041-45f4-a158-06b2487397c7","name":"Wrong API key provided within the headers.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-waterfall-api-key","value":"<API Key>","description":"Added as a part of security scheme: apikey"}],"url":{"raw":"https://api.waterfall.io/v1/enrichment/phone?job_id=<uuid>","host":["https://api.waterfall.io"],"path":["v1","enrichment","phone"],"query":[{"key":"job_id","value":"<uuid>","description":"(Required) The unique job_id you want to query. Has previously been returned in the output of the Enrichment Phone Launcher API call. \n"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\",\n  \"error\": \"<array>\"\n}"},{"id":"fa602364-3e71-434d-acb6-7c6a1fbcf590","name":"The job_id does not exist.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"x-waterfall-api-key","value":"<API Key>","description":"Added as a part of security scheme: apikey"}],"url":{"raw":"https://api.waterfall.io/v1/enrichment/phone?job_id=<uuid>","host":["https://api.waterfall.io"],"path":["v1","enrichment","phone"],"query":[{"key":"job_id","value":"<uuid>","description":"(Required) The unique job_id you want to query. Has previously been returned in the output of the Enrichment Phone Launcher API call. \n"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\",\n  \"error\": \"<array>\"\n}"}],"_postman_id":"de82de78-edf9-40ee-a0cf-569b224c21e0"}],"id":"0d0bc0eb-1f6f-4380-bd35-087a6a1b4851","description":"<blockquote>\n<p><strong>Phone Enrichment Workflow (Launcher &amp; Finder) Overview</strong><br /><strong>You input:</strong> Email, Social Profile, or name + domain<br /><strong>You get:</strong> Mobile and direct line phone numbers</p>\n</blockquote>\n","_postman_id":"0d0bc0eb-1f6f-4380-bd35-087a6a1b4851"},{"name":"company","item":[{"name":"Company Enrichment Launcher","event":[{"listen":"test","script":{"id":"33efcf51-57b0-4885-9944-5c3512fcb212","exec":[""],"type":"text/javascript","packages":{}}}],"id":"eeca8a44-71a3-4acf-8981-b27a29cd0145","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-waterfall-api-key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"domain\": -26313009\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.waterfall.io/v1/enrichment/company","description":"<p>This endpoint allows you to launch a company enrichment.</p>\n<p>This will accept three categories of payloads: a LinkedIn ID, a domain, or a company name.</p>\n<p>Please note that name enrichment has the lowest quality and the highest chance of false positives. If possible, use LinkedIn ID/URL or domain for enrichment.</p>\n","urlObject":{"path":["v1","enrichment","company"],"host":["https://api.waterfall.io"],"query":[],"variable":[]}},"response":[{"id":"42fda219-6756-4492-84ef-7efb4d960db8","name":"Enrichment successfully launched.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-waterfall-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": -26313009\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.waterfall.io/v1/enrichment/company"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"job_id\": \"<uuid>\",\n  \"start_date\": \"<dateTime>\"\n}"},{"id":"9476c97d-3790-4adb-bf68-1402af62fc2b","name":"API key not provided within the headers.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-waterfall-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": -26313009\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.waterfall.io/v1/enrichment/company"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\",\n  \"error\": \"<array>\"\n}"},{"id":"bac4975c-223c-45e1-90f4-a124078d819d","name":"Wrong API key provided within the headers.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-waterfall-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": -26313009\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.waterfall.io/v1/enrichment/company"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\",\n  \"error\": \"<array>\"\n}"}],"_postman_id":"eeca8a44-71a3-4acf-8981-b27a29cd0145"},{"name":"Enrichment Company Finder","id":"12b1fa7e-ae87-4e83-ad43-aae1ecaf2cd0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-waterfall-api-key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.waterfall.io/v1/enrichment/company?job_id=<uuid>","description":"<p>This endpoint allows you to get the result of a launch on the Company Enrichment Launcher endpoint, using the provided job_id returned as the output of the Company Enrichment Launcher API call.</p>\n","urlObject":{"path":["v1","enrichment","company"],"host":["https://api.waterfall.io"],"query":[{"description":{"content":"<p>(Required) The unique job_id you want to query. Has previously been returned in the output of the Enrichment Company Launcher API call. </p>\n","type":"text/plain"},"key":"job_id","value":"<uuid>"}],"variable":[]}},"response":[{"id":"0b18379a-34ae-4b2b-9f5b-7e398eb5e082","name":"View results from the job.\n","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-waterfall-api-key","value":"<API Key>"}],"url":{"raw":"https://api.waterfall.io/v1/enrichment/company?job_id=<uuid>","host":["https://api.waterfall.io"],"path":["v1","enrichment","company"],"query":[{"description":"(Required) The unique job_id you want to query. Has previously been returned in the output of the Enrichment Company Launcher API call. \n","key":"job_id","value":"<uuid>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"ABORTED\",\n  \"start_date\": \"<dateTime>\",\n  \"input\": {\n    \"task\": {\n      \"linkedin\": \"<string>\",\n      \"domain\": \"<string>\",\n      \"name\": \"<string>\",\n      \"webhook_url\": \"<uri>\",\n      \"custom_fields\": {\n        \"laborumc\": 47749031,\n        \"non7\": \"et magna do\"\n      },\n      \"job_id\": \"<uuid>\",\n      \"context_id\": \"<uuid>\"\n    }\n  },\n  \"stop_date\": \"<dateTime>\",\n  \"output\": {\n    \"company\": {\n      \"id\": \"<uuid>\",\n      \"domain\": \"<string>\",\n      \"name\": \"<string>\",\n      \"website\": \"<string>\",\n      \"linkedin_id\": \"<string>\",\n      \"description\": \"<string>\",\n      \"logo_url\": \"<uri>\",\n      \"size\": \"<string>\",\n      \"employees_count\": \"<integer>\",\n      \"industry\": \"<string>\",\n      \"type\": \"<string>\",\n      \"founded\": \"<integer>\",\n      \"address\": \"<string>\",\n      \"country\": \"<string>\",\n      \"linkedin_url\": \"<uri>\",\n      \"linkedin_followers\": \"<integer>\",\n      \"crunchbase_url\": \"<uri>\",\n      \"funding_details\": {\n        \"total_funding_rounds\": \"<integer>\",\n        \"total_funding_usd\": \"<integer>\",\n        \"funding_rounds\": [\n          {\n            \"round_name\": \"<string>\",\n            \"round_date\": \"<date>\",\n            \"investor_count\": \"<integer>\",\n            \"amount_raised_usd\": \"<integer>\",\n            \"investor_names\": [\n              \"<string>\",\n              \"<string>\"\n            ]\n          },\n          {\n            \"round_name\": \"<string>\",\n            \"round_date\": \"<date>\",\n            \"investor_count\": \"<integer>\",\n            \"amount_raised_usd\": \"<integer>\",\n            \"investor_names\": [\n              \"<string>\",\n              \"<string>\"\n            ]\n          }\n        ]\n      }\n    }\n  }\n}"},{"id":"00ee3041-af54-460b-9d26-3da46b23e1ab","name":"API key not provided within the headers.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-waterfall-api-key","value":"<API Key>"}],"url":{"raw":"https://api.waterfall.io/v1/enrichment/company?job_id=<uuid>","host":["https://api.waterfall.io"],"path":["v1","enrichment","company"],"query":[{"description":"(Required) The unique job_id you want to query. Has previously been returned in the output of the Enrichment Company Launcher API call. \n","key":"job_id","value":"<uuid>"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\",\n  \"error\": \"<array>\"\n}"},{"id":"4341b716-0d16-4491-b04c-ecdc6b0bc361","name":"Wrong API key provided within the headers.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-waterfall-api-key","value":"<API Key>"}],"url":{"raw":"https://api.waterfall.io/v1/enrichment/company?job_id=<uuid>","host":["https://api.waterfall.io"],"path":["v1","enrichment","company"],"query":[{"description":"(Required) The unique job_id you want to query. Has previously been returned in the output of the Enrichment Company Launcher API call. \n","key":"job_id","value":"<uuid>"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\",\n  \"error\": \"<array>\"\n}"},{"id":"0d265e87-1311-4ace-b4e5-cd008bff4fe1","name":"The job_id does not exist.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-waterfall-api-key","value":"<API Key>"}],"url":{"raw":"https://api.waterfall.io/v1/enrichment/company?job_id=<uuid>","host":["https://api.waterfall.io"],"path":["v1","enrichment","company"],"query":[{"description":"(Required) The unique job_id you want to query. Has previously been returned in the output of the Enrichment Company Launcher API call. \n","key":"job_id","value":"<uuid>"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\",\n  \"error\": \"<array>\"\n}"}],"_postman_id":"12b1fa7e-ae87-4e83-ad43-aae1ecaf2cd0"}],"id":"7e9e5c93-1f7c-4bae-b6fe-29a968ecdac6","description":"<blockquote>\n<p><strong>Company Enrichment Workflow (Launcher &amp; Finder) Overview</strong><br /><strong>You input:</strong> Domain, LinkedIn URL/ID, or company name<br /><strong>You get:</strong> Headcount, industry, HQ location, type, description, founded date and more</p>\n</blockquote>\n","_postman_id":"7e9e5c93-1f7c-4bae-b6fe-29a968ecdac6"}],"id":"89361809-953d-45f5-974b-ac286b0320ac","description":"<p>Waterfall provides three types of enrichment services:</p>\n<ul>\n<li><p><strong>Contact Enrichment</strong></p>\n</li>\n<li><p><strong>Phone Enrichment</strong></p>\n</li>\n<li><p><strong>Company Enrichment</strong></p>\n</li>\n</ul>\n","_postman_id":"89361809-953d-45f5-974b-ac286b0320ac"},{"name":"verify","item":[{"name":"email","item":[{"name":"Email Verifier","id":"f4ebc0a2-80e9-43c8-9ed7-1b0b4ecd3a0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-waterfall-api-key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"<email>\",\n  \"custom_fields\": {\n    \"in_e1\": \"in ullamco e\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.waterfall.io/v1/verify/email","description":"<p>This endpoint allows you to verify an email.   Unlike other endpoints, this endpoint will return a direct response, not a job_id.  It will accept an email and it will return the verification status of that email.</p>\n","urlObject":{"path":["v1","verify","email"],"host":["https://api.waterfall.io"],"query":[],"variable":[]}},"response":[{"id":"e27998d3-cd43-49f3-b4ca-c672048f3291","name":"Enrichment successfully launched.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-waterfall-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"<email>\",\n  \"custom_fields\": {\n    \"in_e1\": \"in ullamco e\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.waterfall.io/v1/verify/email"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"ABORTED\",\n  \"start_date\": \"<dateTime>\",\n  \"input\": {\n    \"task\": {\n      \"email\": \"<email>\",\n      \"custom_fields\": {\n        \"consecteturefa\": 1186731.1885009855\n      },\n      \"job_id\": \"<uuid>\",\n      \"context_id\": \"<uuid>\"\n    }\n  },\n  \"stop_date\": \"<dateTime>\",\n  \"output\": {\n    \"email\": {\n      \"email\": \"<email>\",\n      \"domain\": \"<string>\",\n      \"email_status\": \"invalid\",\n      \"smtp_provider\": \"<string>\",\n      \"mx_records\": [\n        \"<string>\",\n        \"<string>\"\n      ]\n    }\n  }\n}"},{"id":"a5ec92fa-5b0c-4fe2-bab9-80204c889f6b","name":"API key not provided within the headers.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-waterfall-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"<email>\",\n  \"custom_fields\": {\n    \"in_e1\": \"in ullamco e\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.waterfall.io/v1/verify/email"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\",\n  \"error\": \"<array>\"\n}"},{"id":"65d7a0ea-d511-4c4a-b43f-c9caf53b4a55","name":"Wrong API key provided within the headers.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-waterfall-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"<email>\",\n  \"custom_fields\": {\n    \"in_e1\": \"in ullamco e\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.waterfall.io/v1/verify/email"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\",\n  \"error\": \"<array>\"\n}"}],"_postman_id":"f4ebc0a2-80e9-43c8-9ed7-1b0b4ecd3a0d"}],"id":"e78305be-8513-4334-9c62-7a470f8f6e29","description":"<blockquote>\n<p><strong>Email Verifier Overview</strong><br /><strong>You input:</strong> Business or personal email address<br /><strong>You get:</strong> Real-time verification status of the emails </p>\n</blockquote>\n<p>This endpoint allows you to verify an email. Unlike other endpoints, this endpoint will return a direct response, not a <code>job_id</code>.</p>\n<p>It will accept an email and it will return the verification status of that email.</p>\n<p>We respond with four possible statuses:</p>\n<ol>\n<li><p>Valid - safe emails.</p>\n</li>\n<li><p>Invalid - emails very likely to bounce. Not recommended to use.</p>\n</li>\n<li><p>Risky - emails sent to risky addresses may bounce. We recommend not prospecting these emails unless your blended inbox-level bounce rate is already low (&lt;2%).</p>\n</li>\n<li><p>Unknown - the address looks valid, but the domain isn't responding, so we mark it as unknown. You can retry later; you won't be charged for unknown emails.</p>\n</li>\n</ol>\n","_postman_id":"e78305be-8513-4334-9c62-7a470f8f6e29"}],"id":"b8c819dd-e4a4-40c6-80f7-38950ee07cb6","_postman_id":"b8c819dd-e4a4-40c6-80f7-38950ee07cb6","description":""},{"name":"api-keys","item":[{"name":"Get API keys","id":"93e3744c-b335-4806-8bd1-2b33cab269b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.waterfall.io/v1/api-keys","description":"<p>Get a list of API keys for the account. This endpoint requires a master API key authentication.</p>\n","urlObject":{"path":["v1","api-keys"],"host":["https://api.waterfall.io"],"query":[],"variable":[]}},"response":[{"id":"56109c0c-93c2-4c1a-b823-8c9d58ad7788","name":"API keys list returned","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.waterfall.io/v1/api-keys"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"api_keys\": [\n    {\n      \"api_key\": \"<uuid>\",\n      \"active\": \"<boolean>\",\n      \"notes\": \"<string>\",\n      \"master\": \"<boolean>\",\n      \"per_interval\": \"<integer>\",\n      \"interval_seconds\": \"<integer>\"\n    },\n    {\n      \"api_key\": \"<uuid>\",\n      \"active\": \"<boolean>\",\n      \"notes\": \"<string>\",\n      \"master\": \"<boolean>\",\n      \"per_interval\": \"<integer>\",\n      \"interval_seconds\": \"<integer>\"\n    }\n  ]\n}"},{"id":"1920f60c-751d-4063-adb5-cd6349a6357b","name":"API key not provided within the headers.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.waterfall.io/v1/api-keys"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\",\n  \"error\": \"<array>\"\n}"},{"id":"f071ba72-62ce-4a4f-b963-0f847434b3f4","name":"Wrong API key provided within the headers.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.waterfall.io/v1/api-keys"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\",\n  \"error\": \"<array>\"\n}"}],"_postman_id":"93e3744c-b335-4806-8bd1-2b33cab269b5"},{"name":"Create a new API key","id":"f3315635-9607-4af3-aa37-0f9687fa16a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-waterfall-api-key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"api_key\": \"<uuid>\",\n  \"active\": \"<boolean>\",\n  \"notes\": \"<string>\",\n  \"master\": \"<boolean>\",\n  \"per_interval\": \"<integer>\",\n  \"interval_seconds\": \"<integer>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.waterfall.io/v1/api-keys","description":"<p>Creates a new API key for the account. This endpoint requires a master API key authentication.</p>\n","urlObject":{"path":["v1","api-keys"],"host":["https://api.waterfall.io"],"query":[],"variable":[]}},"response":[{"id":"1ba77df4-7173-4b92-ad0f-9ff26885f8db","name":"API key succesfully created.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-waterfall-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"api_key\": \"<uuid>\",\n  \"active\": \"<boolean>\",\n  \"notes\": \"<string>\",\n  \"master\": \"<boolean>\",\n  \"per_interval\": \"<integer>\",\n  \"interval_seconds\": \"<integer>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.waterfall.io/v1/api-keys"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"api_key\": \"<uuid>\",\n  \"active\": \"<boolean>\",\n  \"notes\": \"<string>\",\n  \"master\": \"<boolean>\",\n  \"per_interval\": \"<integer>\",\n  \"interval_seconds\": \"<integer>\"\n}"},{"id":"233cc64a-364d-4b61-b653-73bac1ca1110","name":"Bad request body provided.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-waterfall-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"api_key\": \"<uuid>\",\n  \"active\": \"<boolean>\",\n  \"notes\": \"<string>\",\n  \"master\": \"<boolean>\",\n  \"per_interval\": \"<integer>\",\n  \"interval_seconds\": \"<integer>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.waterfall.io/v1/api-keys"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\",\n  \"error\": \"<array>\"\n}"},{"id":"071c767b-4918-4da4-ab2f-bf923bf6b3a3","name":"API key not provided within the headers.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-waterfall-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"api_key\": \"<uuid>\",\n  \"active\": \"<boolean>\",\n  \"notes\": \"<string>\",\n  \"master\": \"<boolean>\",\n  \"per_interval\": \"<integer>\",\n  \"interval_seconds\": \"<integer>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.waterfall.io/v1/api-keys"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\",\n  \"error\": \"<array>\"\n}"},{"id":"8d9ddd8b-a994-4de5-a383-9af2d1b54a45","name":"Wrong API key provided within the headers.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-waterfall-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"api_key\": \"<uuid>\",\n  \"active\": \"<boolean>\",\n  \"notes\": \"<string>\",\n  \"master\": \"<boolean>\",\n  \"per_interval\": \"<integer>\",\n  \"interval_seconds\": \"<integer>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.waterfall.io/v1/api-keys"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\",\n  \"error\": \"<array>\"\n}"}],"_postman_id":"f3315635-9607-4af3-aa37-0f9687fa16a3"},{"name":"Modify an API key","id":"d8dd0640-7f5d-4edc-97a1-8749de7e4e09","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-waterfall-api-key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"api_key\": \"<uuid>\",\n  \"notes\": \"<string>\",\n  \"active\": true,\n  \"per_interval\": \"<integer>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.waterfall.io/v1/api-keys","description":"<p>Modify an API key. This endpoint requires a master API key authentication. <br /> Only <strong>notes</strong> and <strong>active</strong> flag can be edited for an existing key.  <br /><br /> The master key can not be edited.</p>\n","urlObject":{"path":["v1","api-keys"],"host":["https://api.waterfall.io"],"query":[],"variable":[]}},"response":[{"id":"a9a7d090-f4fe-4a9b-8ae7-3c51df8b80b6","name":"API key succesfully updated.","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-waterfall-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"api_key\": \"<uuid>\",\n  \"notes\": \"<string>\",\n  \"active\": true,\n  \"per_interval\": \"<integer>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.waterfall.io/v1/api-keys"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"api_key\": \"<uuid>\",\n  \"active\": \"<boolean>\",\n  \"notes\": \"<string>\",\n  \"master\": \"<boolean>\",\n  \"per_interval\": \"<integer>\",\n  \"interval_seconds\": \"<integer>\"\n}"},{"id":"87bf686b-a5b2-42f7-9374-eca039d49b4d","name":"Bad request body provided.","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-waterfall-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"api_key\": \"<uuid>\",\n  \"notes\": \"<string>\",\n  \"active\": true,\n  \"per_interval\": \"<integer>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.waterfall.io/v1/api-keys"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\",\n  \"error\": \"<array>\"\n}"},{"id":"c4b17e80-0bdb-4c1c-ad04-f45273daf30a","name":"API key not provided within the headers.","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-waterfall-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"api_key\": \"<uuid>\",\n  \"notes\": \"<string>\",\n  \"active\": true,\n  \"per_interval\": \"<integer>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.waterfall.io/v1/api-keys"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\",\n  \"error\": \"<array>\"\n}"},{"id":"b3bd48df-911f-4460-838a-c283f47e8156","name":"Wrong API key provided within the headers.","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-waterfall-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"api_key\": \"<uuid>\",\n  \"notes\": \"<string>\",\n  \"active\": true,\n  \"per_interval\": \"<integer>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://api.waterfall.io/v1/api-keys"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\",\n  \"error\": \"<array>\"\n}"}],"_postman_id":"d8dd0640-7f5d-4edc-97a1-8749de7e4e09"}],"id":"657a5ab8-1ec9-47ec-99c6-2bb0bfb85429","description":"<p>This is an enterprise feature. Please contact your account manager to gain access. Once enabled, you will receive a master API key capable of performing operations on all other API keys.</p>\n<p>Each API key has the following attributes:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>api_key</td>\n<td>string</td>\n<td>UUID identificator</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>string</td>\n<td>String used to store any additional information</td>\n</tr>\n<tr>\n<td>master</td>\n<td>boolean</td>\n<td><code>true</code> for the master key, <code>false</code> for all the others</td>\n</tr>\n<tr>\n<td>active</td>\n<td>boolean</td>\n<td><code>true</code> if key is active, <code>false</code> otherwise</td>\n</tr>\n<tr>\n<td>per_interval</td>\n<td>integer</td>\n<td>Request allowed per interval</td>\n</tr>\n<tr>\n<td>interval_seconds</td>\n<td>integer</td>\n<td>Interval duration in seconds. It is always 60 seconds.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"657a5ab8-1ec9-47ec-99c6-2bb0bfb85429"}],"id":"9b846841-0747-4f50-bc43-76dc28d0cc99","description":"<p>Waterfall API v1</p>\n","_postman_id":"9b846841-0747-4f50-bc43-76dc28d0cc99"},{"name":"v2","item":[{"name":"account","item":[{"name":"Account Reporter V2","id":"a034cc67-b577-4e92-b7d3-27549ac5555a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.waterfall.io/v2/account","description":"<p>This API endpoint enables you to get information regarding your Waterfall usage, both on a <strong>specific key</strong> and on your <strong>account as a whole</strong>. The results on your account and a key are different if you have multiple API keys under the same account.  <br /> <br /> This call is free.</p>\n","urlObject":{"path":["v2","account"],"host":["https://api.waterfall.io"],"query":[],"variable":[]}},"response":[{"id":"6845824e-9cae-4918-8e16-6ebc1e42c9c5","name":"Success. You can check usage.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.waterfall.io/v2/account"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"key_usage\": {\n    \"start_date\": \"<date>\",\n    \"end_date\": \"<date>\",\n    \"prospector_requests\": \"<integer>\",\n    \"prospector_persons\": \"<integer>\",\n    \"prospector_persons_phones\": \"<integer>\",\n    \"enrichment_contact_requests\": \"<integer>\",\n    \"enrichment_contact_persons\": \"<integer>\",\n    \"enrichment_contact_persons_phones\": \"<integer>\",\n    \"enrichment_phone_requests\": \"<integer>\",\n    \"enrichment_phone_phones\": \"<integer>\",\n    \"enrichment_company_requests\": \"<integer>\",\n    \"enrichment_company_companies\": \"<integer>\",\n    \"search_contact_requests\": \"<integer>\",\n    \"search_contact_found\": \"<integer>\",\n    \"verify_email_requests\": \"<integer>\",\n    \"verify_email_verified\": \"<integer>\"\n  },\n  \"account_usage\": {\n    \"start_date\": \"<date>\",\n    \"end_date\": \"<date>\",\n    \"prospector_requests\": \"<integer>\",\n    \"prospector_persons\": \"<integer>\",\n    \"prospector_persons_phones\": \"<integer>\",\n    \"enrichment_contact_requests\": \"<integer>\",\n    \"enrichment_contact_persons\": \"<integer>\",\n    \"enrichment_contact_persons_phones\": \"<integer>\",\n    \"enrichment_phone_requests\": \"<integer>\",\n    \"enrichment_phone_phones\": \"<integer>\",\n    \"enrichment_company_requests\": \"<integer>\",\n    \"enrichment_company_companies\": \"<integer>\",\n    \"search_contact_requests\": \"<integer>\",\n    \"search_contact_found\": \"<integer>\",\n    \"verify_email_requests\": \"<integer>\",\n    \"verify_email_verified\": \"<integer>\"\n  },\n  \"balance_remaining_usd\": \"<float>\"\n}"},{"id":"0d341831-712f-4056-b701-f1cfa2471271","name":"API key not provided within the headers.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.waterfall.io/v2/account"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\",\n  \"error\": \"<array>\"\n}"},{"id":"e8ec1394-0ee1-454a-b74b-9637eabd3858","name":"Wrong API key provided within the headers.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://api.waterfall.io/v2/account"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<string>\",\n  \"message\": \"<string>\",\n  \"error\": \"<array>\"\n}"}],"_postman_id":"a034cc67-b577-4e92-b7d3-27549ac5555a"}],"id":"472b135d-e4e4-405e-af48-da15655967db","_postman_id":"472b135d-e4e4-405e-af48-da15655967db","description":""}],"id":"feddf199-6afa-4322-b4d5-cb611c4135d0","description":"<p>Waterfall Api v2</p>\n","_postman_id":"feddf199-6afa-4322-b4d5-cb611c4135d0"}],"variable":[{"key":"baseUrl","value":"https://api.waterfall.io"}]}