### GET /job Source: https://documenter.getpostman.com/view/479833/2s93m62NHf Retrieves job results using a specific job ID. ```APIDOC ## GET /job ### Description Retrieves data for a specific job ID. This endpoint supports real-time results or background processing. ### Method GET ### Endpoint https://api.trykitt.ai/job?id={id} ### Parameters #### Query Parameters - **id** (string) - Required - The unique identifier for the job. ### Request Example curl --location 'https://api.trykitt.ai/job?id=XXX' \ --header 'x-api-key: YOUR_TOKEN_HERE' ``` -------------------------------- ### Retrieve Job Data via cURL Source: https://documenter.getpostman.com/view/479833/2s93m62NHf Use this request to fetch job results by ID. Requires an x-api-key header for authentication. ```bash curl --location 'https://api.trykitt.ai/job?id=XXX' \ --header 'x-api-key: YOUR_TOKEN_HERE' ``` -------------------------------- ### POST /job/verify_email Source: https://documenter.getpostman.com/view/479833/2s93m62NHf Verifies the validity of a given email address. ```APIDOC ## POST /job/verify_email ### Description Verifies if an email address is valid. ### Method POST ### Endpoint https://api.trykitt.ai/job/verify_email ### Parameters #### Request Body - **email** (string) - Required - The email address to verify. - **customData** (string) - Optional - Internal identifier. - **callbackURL** (string) - Optional - URL for webhook results. - **realtime** (boolean) - Optional - Whether to return results in real-time. - **treatAliasesAsValid** (boolean) - Optional - Whether to treat aliases as valid. ### Request Example { "email": "erol@trykitt.ai", "customData": "myInternalId", "callbackURL" : "only_used_if_realtime_param_is_false", "realtime" : true, "treatAliasesAsValid" : true } ``` -------------------------------- ### Verify Email Request Payload and cURL Source: https://documenter.getpostman.com/view/479833/2s93m62NHf Submit an email address for verification. Supports real-time processing and custom callback URLs. ```json { "email": "erol@trykitt.ai" , "customData": "myInternalId" , "callbackURL" : "only_used_if_realtime_param_is_false" , "realtime" : true , "treatAliasesAsValid" : true } ``` ```bash curl --location 'https://api.trykitt.ai/job/verify_email' \ --header 'x-api-key: YOUR_TOKEN_HERE' \ --data-raw '{ "email": "erol@trykitt.ai" , "customData": "myInternalId" , "callbackURL" : "only_used_if_realtime_param_is_false" , "realtime" : true , "treatAliasesAsValid" : true }' ``` -------------------------------- ### POST /job/find_email Source: https://documenter.getpostman.com/view/479833/2s93m62NHf Finds a professional email address based on provided contact details. ```APIDOC ## POST /job/find_email ### Description Finds an email address for a person using their full name and company domain or website. ### Method POST ### Endpoint https://api.trykitt.ai/job/find_email ### Parameters #### Request Body - **fullName** (string) - Required - The full name of the person. - **domain** (string) - Required - The company domain or website. - **linkedinStandardProfileURL** (string) - Optional - The LinkedIn profile URL. - **realtime** (boolean) - Optional - Whether to return results in real-time. - **customData** (string) - Optional - Internal identifier. - **callbackURL** (string) - Optional - URL for webhook results. - **strictNameMatches** (boolean) - Optional - Whether to enforce strict name matching. ### Request Example { "fullName": "erol Toker", "domain": "trykitt.ai", "linkedinStandardProfileURL": "https://linkedin.com/in/someprofile", "realtime" : true, "customData": "myInternalId", "callbackURL" : "only_used_if_realtime_param_is_false", "strictNameMatches" : false } ``` -------------------------------- ### Find Email Request Payload and cURL Source: https://documenter.getpostman.com/view/479833/2s93m62NHf Submit a request to find an email address using full name and domain or website. Includes options for real-time processing and custom tracking data. ```json { "fullName": "erol Toker", "domain": "trykitt.ai", "linkedinStandardProfileURL": "https://linkedin.com/in/someprofile", "realtime" : true, "customData": "myInternalId", "callbackURL" : "only_used_if_realtime_param_is_false", "strictNameMatches" : false } ``` ```bash curl --location 'https://api.trykitt.ai/job/find_email' \ --header 'x-api-key: YOUR_TOKEN_HERE' \ --data '{ "fullName": "erol Toker", "domain": "trykitt.ai", "linkedinStandardProfileURL": "https://linkedin.com/in/someprofile", "realtime" : true, "customData": "myInternalId", "callbackURL" : "only_used_if_realtime_param_is_false", "strictNameMatches" : false }' ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.